public override int GetHashCode()
        {
            int hash = 1;

            if (fortressStatistics_ != null)
            {
                hash ^= FortressStatistics.GetHashCode();
            }
            if (TempNextAddPtsTimestampMs != 0L)
            {
                hash ^= TempNextAddPtsTimestampMs.GetHashCode();
            }
            if (_unknownFields != null)
            {
                hash ^= _unknownFields.GetHashCode();
            }
            return(hash);
        }
 public void MergeFrom(GetFortressFlooNetworkStatisticsResponse other)
 {
     if (other == null)
     {
         return;
     }
     if (other.fortressStatistics_ != null)
     {
         if (fortressStatistics_ == null)
         {
             FortressStatistics = new global::WUProtos.Data.FlooNetworkFortressStatistics();
         }
         FortressStatistics.MergeFrom(other.FortressStatistics);
     }
     if (other.TempNextAddPtsTimestampMs != 0L)
     {
         TempNextAddPtsTimestampMs = other.TempNextAddPtsTimestampMs;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }