コード例 #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 16: {
                    FieldType = (global::Google.Ads.GoogleAds.V4.Enums.AssetFieldTypeEnum.Types.AssetFieldType)input.ReadEnum();
                    break;
                }

                case 26: {
                    if (policySummary_ == null)
                    {
                        PolicySummary = new global::Google.Ads.GoogleAds.V4.Resources.AdGroupAdAssetPolicySummary();
                    }
                    input.ReadMessage(PolicySummary);
                    break;
                }

                case 32: {
                    PerformanceLabel = (global::Google.Ads.GoogleAds.V4.Enums.AssetPerformanceLabelEnum.Types.AssetPerformanceLabel)input.ReadEnum();
                    break;
                }

                case 42: {
                    string value = _single_adGroupAd_codec.Read(input);
                    if (adGroupAd_ == null || value != "")
                    {
                        AdGroupAd = value;
                    }
                    break;
                }

                case 50: {
                    string value = _single_asset_codec.Read(input);
                    if (asset_ == null || value != "")
                    {
                        Asset = value;
                    }
                    break;
                }
                }
            }
    #endif
        }
コード例 #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 16: {
                    FieldType = (global::Google.Ads.GoogleAds.V4.Enums.AssetFieldTypeEnum.Types.AssetFieldType)input.ReadEnum();
                    break;
                }

                case 26: {
                    if (policySummary_ == null)
                    {
                        PolicySummary = new global::Google.Ads.GoogleAds.V4.Resources.AdGroupAdAssetPolicySummary();
                    }
                    input.ReadMessage(PolicySummary);
                    break;
                }

                case 32: {
                    PerformanceLabel = (global::Google.Ads.GoogleAds.V4.Enums.AssetPerformanceLabelEnum.Types.AssetPerformanceLabel)input.ReadEnum();
                    break;
                }

                case 42: {
                    string value = _single_adGroupAd_codec.Read(ref input);
                    if (adGroupAd_ == null || value != "")
                    {
                        AdGroupAd = value;
                    }
                    break;
                }

                case 50: {
                    string value = _single_asset_codec.Read(ref input);
                    if (asset_ == null || value != "")
                    {
                        Asset = value;
                    }
                    break;
                }
                }
            }
        }
コード例 #3
0
 public void MergeFrom(AdGroupAdAssetView other)
 {
     if (other == null)
     {
         return;
     }
     if (other.ResourceName.Length != 0)
     {
         ResourceName = other.ResourceName;
     }
     if (other.adGroupAd_ != null)
     {
         if (adGroupAd_ == null || other.AdGroupAd != "")
         {
             AdGroupAd = other.AdGroupAd;
         }
     }
     if (other.asset_ != null)
     {
         if (asset_ == null || other.Asset != "")
         {
             Asset = other.Asset;
         }
     }
     if (other.FieldType != global::Google.Ads.GoogleAds.V4.Enums.AssetFieldTypeEnum.Types.AssetFieldType.Unspecified)
     {
         FieldType = other.FieldType;
     }
     if (other.policySummary_ != null)
     {
         if (policySummary_ == null)
         {
             PolicySummary = new global::Google.Ads.GoogleAds.V4.Resources.AdGroupAdAssetPolicySummary();
         }
         PolicySummary.MergeFrom(other.PolicySummary);
     }
     if (other.PerformanceLabel != global::Google.Ads.GoogleAds.V4.Enums.AssetPerformanceLabelEnum.Types.AssetPerformanceLabel.Unspecified)
     {
         PerformanceLabel = other.PerformanceLabel;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }