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: {
                    CustomerId = input.ReadString();
                    break;
                }

                case 18: {
                    if (operation_ == null)
                    {
                        operation_ = new global::Google.Ads.GoogleAds.V1.Services.BillingSetupOperation();
                    }
                    input.ReadMessage(operation_);
                    break;
                }
                }
            }
        }
 public void MergeFrom(MutateBillingSetupRequest other)
 {
     if (other == null)
     {
         return;
     }
     if (other.CustomerId.Length != 0)
     {
         CustomerId = other.CustomerId;
     }
     if (other.operation_ != null)
     {
         if (operation_ == null)
         {
             operation_ = new global::Google.Ads.GoogleAds.V1.Services.BillingSetupOperation();
         }
         Operation.MergeFrom(other.Operation);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }