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

                case 18: {
                    string value = _single_keywordPlanCampaign_codec.Read(input);
                    if (keywordPlanCampaign_ == null || value != "")
                    {
                        KeywordPlanCampaign = 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.V3.Enums.KeywordMatchTypeEnum.Types.KeywordMatchType)input.ReadEnum();
                    break;
                }
                }
            }
    #endif
        }
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: {
                    ResourceName = input.ReadString();
                    break;
                }

                case 18: {
                    string value = _single_keywordPlanCampaign_codec.Read(ref input);
                    if (keywordPlanCampaign_ == null || value != "")
                    {
                        KeywordPlanCampaign = value;
                    }
                    break;
                }

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

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

                case 40: {
                    MatchType = (global::Google.Ads.GoogleAds.V3.Enums.KeywordMatchTypeEnum.Types.KeywordMatchType)input.ReadEnum();
                    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);
 }