Пример #1
0
 internal void Set(LinkAccountCallbackInfoInternal?other)
 {
     if (other != null)
     {
         ResultCode   = other.Value.ResultCode;
         ClientData   = other.Value.ClientData;
         LocalUserId  = other.Value.LocalUserId;
         PinGrantInfo = other.Value.PinGrantInfo;
     }
 }
Пример #2
0
 public void Set(PinGrantInfo other)
 {
     if (other != null)
     {
         m_ApiVersion            = AuthInterface.PingrantinfoApiLatest;
         UserCode                = other.UserCode;
         VerificationURI         = other.VerificationURI;
         ExpiresIn               = other.ExpiresIn;
         VerificationURIComplete = other.VerificationURIComplete;
     }
 }