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

                case 18: {
                    string value = _single_keywordPlanAdGroup_codec.Read(input);
                    if (keywordPlanAdGroup_ == null || value != "")
                    {
                        KeywordPlanAdGroup = value;
                    }
                    break;
                }

                case 26: {
                    long?value = _single_id_codec.Read(input);
                    if (id_ == null || value != 0L)
                    {
                        Id = value;
                    }
                    break;
                }

                case 34: {
                    string value = _single_text_codec.Read(input);
                    if (text_ == null || value != "")
                    {
                        Text = value;
                    }
                    break;
                }

                case 40: {
                    matchType_ = (global::Google.Ads.GoogleAds.V1.Enums.KeywordMatchTypeEnum.Types.KeywordMatchType)input.ReadEnum();
                    break;
                }

                case 50: {
                    long?value = _single_cpcBidMicros_codec.Read(input);
                    if (cpcBidMicros_ == null || value != 0L)
                    {
                        CpcBidMicros = value;
                    }
                    break;
                }
                }
            }
        }
 public void MergeFrom(KeywordPlanNegativeKeyword other)
 {
     if (other == null)
     {
         return;
     }
     if (other.ResourceName.Length != 0)
     {
         ResourceName = other.ResourceName;
     }
     if (other.keywordPlanCampaign_ != null)
     {
         if (keywordPlanCampaign_ == null || other.KeywordPlanCampaign != "")
         {
             KeywordPlanCampaign = other.KeywordPlanCampaign;
         }
     }
     if (other.id_ != null)
     {
         if (id_ == null || other.Id != 0L)
         {
             Id = other.Id;
         }
     }
     if (other.text_ != null)
     {
         if (text_ == null || other.Text != "")
         {
             Text = other.Text;
         }
     }
     if (other.MatchType != 0)
     {
         MatchType = other.MatchType;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }