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

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    input.SkipLastField();
                    break;

                case 10: {
                    if (resIndicator_ == null)
                    {
                        resIndicator_ = new global::HOLMS.Types.Booking.Indicators.ReservationIndicator();
                    }
                    input.ReadMessage(resIndicator_);
                    break;
                }

                case 16: {
                    result_ = (global::HOLMS.Types.Booking.Reservations.FRPAmendmentResponse.Types.AmendmentResult)input.ReadEnum();
                    break;
                }

                case 26: {
                    ResponseResult = input.ReadString();
                    break;
                }
                }
            }
        }
 public void MergeFrom(FRPAmendmentResponse other)
 {
     if (other == null)
     {
         return;
     }
     if (other.resIndicator_ != null)
     {
         if (resIndicator_ == null)
         {
             resIndicator_ = new global::HOLMS.Types.Booking.Indicators.ReservationIndicator();
         }
         ResIndicator.MergeFrom(other.ResIndicator);
     }
     if (other.Result != 0)
     {
         Result = other.Result;
     }
 }