internal void Set(UserScoresQueryStatInfoInternal?other)
 {
     if (other != null)
     {
         StatName    = other.Value.StatName;
         Aggregation = other.Value.Aggregation;
     }
 }
 public void Set(UserScoresQueryStatInfo other)
 {
     if (other != null)
     {
         m_ApiVersion = LeaderboardsInterface.UserscoresquerystatinfoApiLatest;
         StatName     = other.StatName;
         Aggregation  = other.Aggregation;
     }
 }