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: {
                    AssetGroup = input.ReadString();
                    break;
                }

                case 26: {
                    Asset = input.ReadString();
                    break;
                }

                case 32: {
                    FieldType = (global::Google.Ads.GoogleAds.V9.Enums.AssetFieldTypeEnum.Types.AssetFieldType)input.ReadEnum();
                    break;
                }

                case 40: {
                    Status = (global::Google.Ads.GoogleAds.V9.Enums.AssetLinkStatusEnum.Types.AssetLinkStatus)input.ReadEnum();
                    break;
                }

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

                case 58: {
                    if (policySummary_ == null)
                    {
                        PolicySummary = new global::Google.Ads.GoogleAds.V9.Common.PolicySummary();
                    }
                    input.ReadMessage(PolicySummary);
                    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 18: {
                    AssetGroup = input.ReadString();
                    break;
                }

                case 26: {
                    Asset = input.ReadString();
                    break;
                }

                case 32: {
                    FieldType = (global::Google.Ads.GoogleAds.V9.Enums.AssetFieldTypeEnum.Types.AssetFieldType)input.ReadEnum();
                    break;
                }

                case 40: {
                    Status = (global::Google.Ads.GoogleAds.V9.Enums.AssetLinkStatusEnum.Types.AssetLinkStatus)input.ReadEnum();
                    break;
                }

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

                case 58: {
                    if (policySummary_ == null)
                    {
                        PolicySummary = new global::Google.Ads.GoogleAds.V9.Common.PolicySummary();
                    }
                    input.ReadMessage(PolicySummary);
                    break;
                }
                }
            }
        }
 public void MergeFrom(AssetGroupAsset other)
 {
     if (other == null)
     {
         return;
     }
     if (other.ResourceName.Length != 0)
     {
         ResourceName = other.ResourceName;
     }
     if (other.AssetGroup.Length != 0)
     {
         AssetGroup = other.AssetGroup;
     }
     if (other.Asset.Length != 0)
     {
         Asset = other.Asset;
     }
     if (other.FieldType != global::Google.Ads.GoogleAds.V9.Enums.AssetFieldTypeEnum.Types.AssetFieldType.Unspecified)
     {
         FieldType = other.FieldType;
     }
     if (other.Status != global::Google.Ads.GoogleAds.V9.Enums.AssetLinkStatusEnum.Types.AssetLinkStatus.Unspecified)
     {
         Status = other.Status;
     }
     if (other.PerformanceLabel != global::Google.Ads.GoogleAds.V9.Enums.AssetPerformanceLabelEnum.Types.AssetPerformanceLabel.Unspecified)
     {
         PerformanceLabel = other.PerformanceLabel;
     }
     if (other.policySummary_ != null)
     {
         if (policySummary_ == null)
         {
             PolicySummary = new global::Google.Ads.GoogleAds.V9.Common.PolicySummary();
         }
         PolicySummary.MergeFrom(other.PolicySummary);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }