public void Set(AccountFeatureRestrictedInfo other)
 {
     if (other != null)
     {
         m_ApiVersion    = AuthInterface.AccountfeaturerestrictedinfoApiLatest;
         VerificationURI = other.VerificationURI;
     }
 }
 internal void Set(LoginCallbackInfoInternal?other)
 {
     if (other != null)
     {
         ResultCode                   = other.Value.ResultCode;
         ClientData                   = other.Value.ClientData;
         LocalUserId                  = other.Value.LocalUserId;
         PinGrantInfo                 = other.Value.PinGrantInfo;
         ContinuanceToken             = other.Value.ContinuanceToken;
         AccountFeatureRestrictedInfo = other.Value.AccountFeatureRestrictedInfo;
     }
 }