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: {
                    long?value = _single_avgMonthlySearches_codec.Read(input);
                    if (avgMonthlySearches_ == null || value != 0L)
                    {
                        AvgMonthlySearches = value;
                    }
                    break;
                }

                case 16: {
                    competition_ = (global::Google.Ads.GoogleAds.V1.Enums.KeywordPlanCompetitionLevelEnum.Types.KeywordPlanCompetitionLevel)input.ReadEnum();
                    break;
                }
                }
            }
        }
 public void MergeFrom(KeywordPlanHistoricalMetrics other)
 {
     if (other == null)
     {
         return;
     }
     if (other.avgMonthlySearches_ != null)
     {
         if (avgMonthlySearches_ == null || other.AvgMonthlySearches != 0L)
         {
             AvgMonthlySearches = other.AvgMonthlySearches;
         }
     }
     if (other.Competition != 0)
     {
         Competition = other.Competition;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }