-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
251 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
linkid-sdk-dotnet/linkid-sdk-dotnet/src/main/cs/api/LinkIDLTQRPushContent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
|
||
namespace safe_online_sdk_dotnet | ||
{ | ||
public class LinkIDLTQRPushContent | ||
{ | ||
public LinkIDLTQRContent content { get; set; } | ||
public String userAgent { get; set; } | ||
public LinkIDLTQRLockType lockType { get; set; } | ||
|
||
public LinkIDLTQRPushContent(LinkIDLTQRContent content, String userAgent, LinkIDLTQRLockType lockType) | ||
{ | ||
this.content = content; | ||
this.userAgent = userAgent; | ||
this.lockType = lockType; | ||
} | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
linkid-sdk-dotnet/linkid-sdk-dotnet/src/main/cs/api/LinkIDLTQRPushResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System; | ||
using LinkIDWSNameSpace; | ||
|
||
namespace safe_online_sdk_dotnet | ||
{ | ||
public class LinkIDLTQRPushResponse | ||
{ | ||
public LinkIDLTQRSession ltqrSession { get; set; } | ||
|
||
public LTQRPushErrorCode errorCode { get; set; } | ||
public String errorMessage { get; set; } | ||
|
||
public LinkIDLTQRPushResponse(LinkIDLTQRSession ltqrSession) | ||
{ | ||
this.ltqrSession = ltqrSession; | ||
} | ||
|
||
public LinkIDLTQRPushResponse(LTQRPushErrorCode errorCode, String errorMessage) | ||
{ | ||
this.errorCode = errorCode; | ||
this.errorMessage = errorMessage; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...id-sdk-dotnet/linkid-sdk-dotnet/src/main/cs/ws/linkid/ltqr/LinkIDLTQRBulkPushException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
using LinkIDWSNameSpace; | ||
|
||
namespace safe_online_sdk_dotnet | ||
{ | ||
public class LinkIDLTQRBulkPushException : System.Exception | ||
{ | ||
public LTQRBulkPushErrorCode errorCode { get; set; } | ||
|
||
public LinkIDLTQRBulkPushException(LTQRBulkPushErrorCode errorCode, String message) | ||
: base(message) | ||
{ | ||
this.errorCode = errorCode; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters