public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                    break;

                case 10: {
                    notificationIds_.AddEntriesFrom(input, _repeated_notificationIds_codec);
                    break;
                }

                case 18:
                case 16: {
                    createTimestampMs_.AddEntriesFrom(input, _repeated_createTimestampMs_codec);
                    break;
                }

                case 24: {
                    state_ = (global::POGOProtos.Networking.Requests.Messages.UpdateNotificationStatusMessage.Types.NotificationState)input.ReadEnum();
                    break;
                }
                }
            }
        }
 public void MergeFrom(UpdateNotificationStatusMessage other)
 {
     if (other == null)
     {
         return;
     }
     notificationIds_.Add(other.notificationIds_);
     createTimestampMs_.Add(other.createTimestampMs_);
     if (other.State != 0)
     {
         State = other.State;
     }
 }
 public void MergeFrom(UpdateNotificationStatusMessage other)
 {
     if (other == null)
     {
         return;
     }
     notificationIds_.Add(other.notificationIds_);
     createTimestampMs_.Add(other.createTimestampMs_);
     if (other.State != 0)
     {
         State = other.State;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }