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.V7.Enums.AssetFieldTypeEnum.Types.AssetFieldType)input.ReadEnum();
                    break;
                }

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

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

                case 64: {
                    Enabled = input.ReadBool();
                    break;
                }

                case 74: {
                    AdGroupAd = input.ReadString();
                    break;
                }

                case 82: {
                    Asset = input.ReadString();
                    break;
                }
                }
            }
    #endif
        }
        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.V7.Enums.AssetFieldTypeEnum.Types.AssetFieldType)input.ReadEnum();
                    break;
                }

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

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

                case 64: {
                    Enabled = input.ReadBool();
                    break;
                }

                case 74: {
                    AdGroupAd = input.ReadString();
                    break;
                }

                case 82: {
                    Asset = input.ReadString();
                    break;
                }
                }
            }
        }
 public void MergeFrom(AdGroupAdAssetView other)
 {
     if (other == null)
     {
         return;
     }
     if (other.ResourceName.Length != 0)
     {
         ResourceName = other.ResourceName;
     }
     if (other.HasAdGroupAd)
     {
         AdGroupAd = other.AdGroupAd;
     }
     if (other.HasAsset)
     {
         Asset = other.Asset;
     }
     if (other.FieldType != global::Google.Ads.GoogleAds.V7.Enums.AssetFieldTypeEnum.Types.AssetFieldType.Unspecified)
     {
         FieldType = other.FieldType;
     }
     if (other.HasEnabled)
     {
         Enabled = other.Enabled;
     }
     if (other.policySummary_ != null)
     {
         if (policySummary_ == null)
         {
             PolicySummary = new global::Google.Ads.GoogleAds.V7.Resources.AdGroupAdAssetPolicySummary();
         }
         PolicySummary.MergeFrom(other.PolicySummary);
     }
     if (other.PerformanceLabel != global::Google.Ads.GoogleAds.V7.Enums.AssetPerformanceLabelEnum.Types.AssetPerformanceLabel.Unspecified)
     {
         PerformanceLabel = other.PerformanceLabel;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }