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

            if (EventId.Length != 0)
            {
                hash ^= EventId.GetHashCode();
            }
            if (Name.Length != 0)
            {
                hash ^= Name.GetHashCode();
            }
            if (guild_ != null)
            {
                hash ^= Guild.GetHashCode();
            }
            if (infoChannel_ != null)
            {
                hash ^= InfoChannel.GetHashCode();
            }
            hash ^= qualifierMaps_.GetHashCode();
            if (SendScoresToInfoChannel != false)
            {
                hash ^= SendScoresToInfoChannel.GetHashCode();
            }
            if (Flags != 0)
            {
                hash ^= Flags.GetHashCode();
            }
            if (_unknownFields != null)
            {
                hash ^= _unknownFields.GetHashCode();
            }
            return(hash);
        }
 public void MergeFrom(QualifierEvent other)
 {
     if (other == null)
     {
         return;
     }
     if (other.EventId.Length != 0)
     {
         EventId = other.EventId;
     }
     if (other.Name.Length != 0)
     {
         Name = other.Name;
     }
     if (other.guild_ != null)
     {
         if (guild_ == null)
         {
             Guild = new global::TournamentAssistantShared.Models.Discord.Guild();
         }
         Guild.MergeFrom(other.Guild);
     }
     if (other.infoChannel_ != null)
     {
         if (infoChannel_ == null)
         {
             InfoChannel = new global::TournamentAssistantShared.Models.Discord.Channel();
         }
         InfoChannel.MergeFrom(other.InfoChannel);
     }
     qualifierMaps_.Add(other.qualifierMaps_);
     if (other.SendScoresToInfoChannel != false)
     {
         SendScoresToInfoChannel = other.SendScoresToInfoChannel;
     }
     if (other.Flags != 0)
     {
         Flags = other.Flags;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }