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

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

                case 8: {
                    Success = input.ReadBool();
                    break;
                }

                case 18: {
                    loginDetail_.AddEntriesFrom(input, _repeated_loginDetail_codec);
                    break;
                }

                case 24: {
                    status_ = (global::POGOProtos.Networking.Responses.AddLoginActionResponse.Types.Status)input.ReadEnum();
                    break;
                }
                }
            }
        }
 public void MergeFrom(AddLoginActionResponse other)
 {
     if (other == null)
     {
         return;
     }
     if (other.Success != false)
     {
         Success = other.Success;
     }
     loginDetail_.Add(other.loginDetail_);
     if (other.Status != 0)
     {
         Status = other.Status;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }