コード例 #1
0
 public LinkIDLTQRClientSession(String ltqrReference, LinkIDQRInfo qrCodeInfo, String clientSessionId,
                                String userId, DateTime created, String paymentOrderReference, LinkIDPaymentState paymentState)
 {
     this.ltqrReference         = ltqrReference;
     this.qrCodeInfo            = qrCodeInfo;
     this.clientSessionId       = clientSessionId;
     this.userId                = userId;
     this.created               = created;
     this.paymentOrderReference = paymentOrderReference;
     this.paymentState          = paymentState;
 }
コード例 #2
0
 public LinkIDLTQRInfo(String ltqrReference, String sessionId, DateTime created,
                       LinkIDQRInfo qrCodeInfo, LinkIDLTQRContent content, LinkIDLTQRLockType lockType, bool locked,
                       bool waitForUnblock, bool blocked)
 {
     this.ltqrReference  = ltqrReference;
     this.sessionId      = sessionId;
     this.created        = created;
     this.qrCodeInfo     = qrCodeInfo;
     this.content        = content;
     this.lockType       = lockType;
     this.locked         = locked;
     this.waitForUnblock = waitForUnblock;
     this.blocked        = blocked;
 }
コード例 #3
0
 public LinkIDAuthSession(String sessionId, LinkIDQRInfo qrCodeInfo)
 {
     this.sessionId  = sessionId;
     this.qrCodeInfo = qrCodeInfo;
 }
コード例 #4
0
 public LinkIDLTQRSession(String ltqrReference, LinkIDQRInfo qrCodeInfo, String paymentOrderReference)
 {
     this.ltqrReference         = ltqrReference;
     this.qrCodeInfo            = qrCodeInfo;
     this.paymentOrderReference = paymentOrderReference;
 }