internal void Set(SessionDetailsInfoInternal?other)
 {
     if (other != null)
     {
         SessionId   = other.Value.SessionId;
         HostAddress = other.Value.HostAddress;
         NumOpenPublicConnections = other.Value.NumOpenPublicConnections;
         Settings = other.Value.Settings;
     }
 }
 public void Set(SessionDetailsInfo other)
 {
     if (other != null)
     {
         m_ApiVersion             = SessionDetails.SessiondetailsInfoApiLatest;
         SessionId                = other.SessionId;
         HostAddress              = other.HostAddress;
         NumOpenPublicConnections = other.NumOpenPublicConnections;
         Settings = other.Settings;
     }
 }
 public void Set(SessionDetailsSettings other)
 {
     if (other != null)
     {
         m_ApiVersion         = SessionDetails.SessiondetailsSettingsApiLatest;
         BucketId             = other.BucketId;
         NumPublicConnections = other.NumPublicConnections;
         AllowJoinInProgress  = other.AllowJoinInProgress;
         PermissionLevel      = other.PermissionLevel;
         InvitesAllowed       = other.InvitesAllowed;
     }
 }