Ejemplo n.º 1
0
        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.V3.Enums.KeywordPlanCompetitionLevelEnum.Types.KeywordPlanCompetitionLevel)input.ReadEnum();
                    break;
                }
                }
            }
        }
Ejemplo n.º 2
0
        void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input)
        {
            uint tag;

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

                case 10: {
                    long?value = _single_avgMonthlySearches_codec.Read(ref input);
                    if (avgMonthlySearches_ == null || value != 0L)
                    {
                        AvgMonthlySearches = value;
                    }
                    break;
                }

                case 16: {
                    Competition = (global::Google.Ads.GoogleAds.V3.Enums.KeywordPlanCompetitionLevelEnum.Types.KeywordPlanCompetitionLevel)input.ReadEnum();
                    break;
                }
                }
            }
        }
Ejemplo n.º 3
0
        public void MergeFrom(pb::CodedInputStream input)
        {
    #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
            input.ReadRawMessage(this);
    #else
            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.V3.Enums.KeywordPlanCompetitionLevelEnum.Types.KeywordPlanCompetitionLevel)input.ReadEnum();
                    break;
                }
                }
            }
    #endif
        }
Ejemplo n.º 4
0
 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);
 }
Ejemplo n.º 5
0
 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 != global::Google.Ads.GoogleAds.V3.Enums.KeywordPlanCompetitionLevelEnum.Types.KeywordPlanCompetitionLevel.Unspecified)
     {
         Competition = other.Competition;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }