All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.ads.googleads.v10.resources.AssetGroupAsset Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/ads/googleads/v10/resources/asset_group_asset.proto

package com.google.ads.googleads.v10.resources;

/**
 * 
 * AssetGroupAsset is the link between an asset and an asset group.
 * Adding an AssetGroupAsset links an asset with an asset group.
 * 
* * Protobuf type {@code google.ads.googleads.v10.resources.AssetGroupAsset} */ public final class AssetGroupAsset extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.ads.googleads.v10.resources.AssetGroupAsset) AssetGroupAssetOrBuilder { private static final long serialVersionUID = 0L; // Use AssetGroupAsset.newBuilder() to construct. private AssetGroupAsset(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private AssetGroupAsset() { resourceName_ = ""; assetGroup_ = ""; asset_ = ""; fieldType_ = 0; status_ = 0; performanceLabel_ = 0; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new AssetGroupAsset(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.ads.googleads.v10.resources.AssetGroupAssetProto.internal_static_google_ads_googleads_v10_resources_AssetGroupAsset_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.ads.googleads.v10.resources.AssetGroupAssetProto.internal_static_google_ads_googleads_v10_resources_AssetGroupAsset_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.ads.googleads.v10.resources.AssetGroupAsset.class, com.google.ads.googleads.v10.resources.AssetGroupAsset.Builder.class); } public static final int RESOURCE_NAME_FIELD_NUMBER = 1; private volatile java.lang.Object resourceName_; /** *
   * Immutable. The resource name of the asset group asset.
   * Asset group asset resource name have the form:
   * `customers/{customer_id}/assetGroupAssets/{asset_group_id}~{asset_id}~{field_type}`
   * 
* * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The resourceName. */ @java.lang.Override public java.lang.String getResourceName() { java.lang.Object ref = resourceName_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); resourceName_ = s; return s; } } /** *
   * Immutable. The resource name of the asset group asset.
   * Asset group asset resource name have the form:
   * `customers/{customer_id}/assetGroupAssets/{asset_group_id}~{asset_id}~{field_type}`
   * 
* * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for resourceName. */ @java.lang.Override public com.google.protobuf.ByteString getResourceNameBytes() { java.lang.Object ref = resourceName_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); resourceName_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ASSET_GROUP_FIELD_NUMBER = 2; private volatile java.lang.Object assetGroup_; /** *
   * Immutable. The asset group which this asset group asset is linking.
   * 
* * string asset_group = 2 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The assetGroup. */ @java.lang.Override public java.lang.String getAssetGroup() { java.lang.Object ref = assetGroup_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); assetGroup_ = s; return s; } } /** *
   * Immutable. The asset group which this asset group asset is linking.
   * 
* * string asset_group = 2 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for assetGroup. */ @java.lang.Override public com.google.protobuf.ByteString getAssetGroupBytes() { java.lang.Object ref = assetGroup_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); assetGroup_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ASSET_FIELD_NUMBER = 3; private volatile java.lang.Object asset_; /** *
   * Immutable. The asset which this asset group asset is linking.
   * 
* * string asset = 3 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The asset. */ @java.lang.Override public java.lang.String getAsset() { java.lang.Object ref = asset_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); asset_ = s; return s; } } /** *
   * Immutable. The asset which this asset group asset is linking.
   * 
* * string asset = 3 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for asset. */ @java.lang.Override public com.google.protobuf.ByteString getAssetBytes() { java.lang.Object ref = asset_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); asset_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int FIELD_TYPE_FIELD_NUMBER = 4; private int fieldType_; /** *
   * The description of the placement of the asset within the asset group. For
   * example: HEADLINE, YOUTUBE_VIDEO etc
   * 
* * .google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; * @return The enum numeric value on the wire for fieldType. */ @java.lang.Override public int getFieldTypeValue() { return fieldType_; } /** *
   * The description of the placement of the asset within the asset group. For
   * example: HEADLINE, YOUTUBE_VIDEO etc
   * 
* * .google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; * @return The fieldType. */ @java.lang.Override public com.google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType getFieldType() { @SuppressWarnings("deprecation") com.google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType result = com.google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType.valueOf(fieldType_); return result == null ? com.google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType.UNRECOGNIZED : result; } public static final int STATUS_FIELD_NUMBER = 5; private int status_; /** *
   * The status of the link between an asset and asset group.
   * 
* * .google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus status = 5; * @return The enum numeric value on the wire for status. */ @java.lang.Override public int getStatusValue() { return status_; } /** *
   * The status of the link between an asset and asset group.
   * 
* * .google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus status = 5; * @return The status. */ @java.lang.Override public com.google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus getStatus() { @SuppressWarnings("deprecation") com.google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus result = com.google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus.valueOf(status_); return result == null ? com.google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus.UNRECOGNIZED : result; } public static final int PERFORMANCE_LABEL_FIELD_NUMBER = 6; private int performanceLabel_; /** *
   * Output only. The performance of this asset group asset.
   * 
* * .google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel performance_label = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @return The enum numeric value on the wire for performanceLabel. */ @java.lang.Override public int getPerformanceLabelValue() { return performanceLabel_; } /** *
   * Output only. The performance of this asset group asset.
   * 
* * .google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel performance_label = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @return The performanceLabel. */ @java.lang.Override public com.google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel getPerformanceLabel() { @SuppressWarnings("deprecation") com.google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel result = com.google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel.valueOf(performanceLabel_); return result == null ? com.google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel.UNRECOGNIZED : result; } public static final int POLICY_SUMMARY_FIELD_NUMBER = 7; private com.google.ads.googleads.v10.common.PolicySummary policySummary_; /** *
   * Output only. The policy information for this asset group asset.
   * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @return Whether the policySummary field is set. */ @java.lang.Override public boolean hasPolicySummary() { return policySummary_ != null; } /** *
   * Output only. The policy information for this asset group asset.
   * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @return The policySummary. */ @java.lang.Override public com.google.ads.googleads.v10.common.PolicySummary getPolicySummary() { return policySummary_ == null ? com.google.ads.googleads.v10.common.PolicySummary.getDefaultInstance() : policySummary_; } /** *
   * Output only. The policy information for this asset group asset.
   * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; */ @java.lang.Override public com.google.ads.googleads.v10.common.PolicySummaryOrBuilder getPolicySummaryOrBuilder() { return getPolicySummary(); } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resourceName_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, resourceName_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(assetGroup_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, assetGroup_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(asset_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, asset_); } if (fieldType_ != com.google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType.UNSPECIFIED.getNumber()) { output.writeEnum(4, fieldType_); } if (status_ != com.google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus.UNSPECIFIED.getNumber()) { output.writeEnum(5, status_); } if (performanceLabel_ != com.google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel.UNSPECIFIED.getNumber()) { output.writeEnum(6, performanceLabel_); } if (policySummary_ != null) { output.writeMessage(7, getPolicySummary()); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resourceName_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, resourceName_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(assetGroup_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, assetGroup_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(asset_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, asset_); } if (fieldType_ != com.google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType.UNSPECIFIED.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(4, fieldType_); } if (status_ != com.google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus.UNSPECIFIED.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(5, status_); } if (performanceLabel_ != com.google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel.UNSPECIFIED.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(6, performanceLabel_); } if (policySummary_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(7, getPolicySummary()); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.ads.googleads.v10.resources.AssetGroupAsset)) { return super.equals(obj); } com.google.ads.googleads.v10.resources.AssetGroupAsset other = (com.google.ads.googleads.v10.resources.AssetGroupAsset) obj; if (!getResourceName() .equals(other.getResourceName())) return false; if (!getAssetGroup() .equals(other.getAssetGroup())) return false; if (!getAsset() .equals(other.getAsset())) return false; if (fieldType_ != other.fieldType_) return false; if (status_ != other.status_) return false; if (performanceLabel_ != other.performanceLabel_) return false; if (hasPolicySummary() != other.hasPolicySummary()) return false; if (hasPolicySummary()) { if (!getPolicySummary() .equals(other.getPolicySummary())) return false; } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + RESOURCE_NAME_FIELD_NUMBER; hash = (53 * hash) + getResourceName().hashCode(); hash = (37 * hash) + ASSET_GROUP_FIELD_NUMBER; hash = (53 * hash) + getAssetGroup().hashCode(); hash = (37 * hash) + ASSET_FIELD_NUMBER; hash = (53 * hash) + getAsset().hashCode(); hash = (37 * hash) + FIELD_TYPE_FIELD_NUMBER; hash = (53 * hash) + fieldType_; hash = (37 * hash) + STATUS_FIELD_NUMBER; hash = (53 * hash) + status_; hash = (37 * hash) + PERFORMANCE_LABEL_FIELD_NUMBER; hash = (53 * hash) + performanceLabel_; if (hasPolicySummary()) { hash = (37 * hash) + POLICY_SUMMARY_FIELD_NUMBER; hash = (53 * hash) + getPolicySummary().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.google.ads.googleads.v10.resources.AssetGroupAsset prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * AssetGroupAsset is the link between an asset and an asset group.
   * Adding an AssetGroupAsset links an asset with an asset group.
   * 
* * Protobuf type {@code google.ads.googleads.v10.resources.AssetGroupAsset} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.ads.googleads.v10.resources.AssetGroupAsset) com.google.ads.googleads.v10.resources.AssetGroupAssetOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.ads.googleads.v10.resources.AssetGroupAssetProto.internal_static_google_ads_googleads_v10_resources_AssetGroupAsset_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.ads.googleads.v10.resources.AssetGroupAssetProto.internal_static_google_ads_googleads_v10_resources_AssetGroupAsset_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.ads.googleads.v10.resources.AssetGroupAsset.class, com.google.ads.googleads.v10.resources.AssetGroupAsset.Builder.class); } // Construct using com.google.ads.googleads.v10.resources.AssetGroupAsset.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); resourceName_ = ""; assetGroup_ = ""; asset_ = ""; fieldType_ = 0; status_ = 0; performanceLabel_ = 0; if (policySummaryBuilder_ == null) { policySummary_ = null; } else { policySummary_ = null; policySummaryBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.ads.googleads.v10.resources.AssetGroupAssetProto.internal_static_google_ads_googleads_v10_resources_AssetGroupAsset_descriptor; } @java.lang.Override public com.google.ads.googleads.v10.resources.AssetGroupAsset getDefaultInstanceForType() { return com.google.ads.googleads.v10.resources.AssetGroupAsset.getDefaultInstance(); } @java.lang.Override public com.google.ads.googleads.v10.resources.AssetGroupAsset build() { com.google.ads.googleads.v10.resources.AssetGroupAsset result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.ads.googleads.v10.resources.AssetGroupAsset buildPartial() { com.google.ads.googleads.v10.resources.AssetGroupAsset result = new com.google.ads.googleads.v10.resources.AssetGroupAsset(this); result.resourceName_ = resourceName_; result.assetGroup_ = assetGroup_; result.asset_ = asset_; result.fieldType_ = fieldType_; result.status_ = status_; result.performanceLabel_ = performanceLabel_; if (policySummaryBuilder_ == null) { result.policySummary_ = policySummary_; } else { result.policySummary_ = policySummaryBuilder_.build(); } onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.ads.googleads.v10.resources.AssetGroupAsset) { return mergeFrom((com.google.ads.googleads.v10.resources.AssetGroupAsset)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.ads.googleads.v10.resources.AssetGroupAsset other) { if (other == com.google.ads.googleads.v10.resources.AssetGroupAsset.getDefaultInstance()) return this; if (!other.getResourceName().isEmpty()) { resourceName_ = other.resourceName_; onChanged(); } if (!other.getAssetGroup().isEmpty()) { assetGroup_ = other.assetGroup_; onChanged(); } if (!other.getAsset().isEmpty()) { asset_ = other.asset_; onChanged(); } if (other.fieldType_ != 0) { setFieldTypeValue(other.getFieldTypeValue()); } if (other.status_ != 0) { setStatusValue(other.getStatusValue()); } if (other.performanceLabel_ != 0) { setPerformanceLabelValue(other.getPerformanceLabelValue()); } if (other.hasPolicySummary()) { mergePolicySummary(other.getPolicySummary()); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { resourceName_ = input.readStringRequireUtf8(); break; } // case 10 case 18: { assetGroup_ = input.readStringRequireUtf8(); break; } // case 18 case 26: { asset_ = input.readStringRequireUtf8(); break; } // case 26 case 32: { fieldType_ = input.readEnum(); break; } // case 32 case 40: { status_ = input.readEnum(); break; } // case 40 case 48: { performanceLabel_ = input.readEnum(); break; } // case 48 case 58: { input.readMessage( getPolicySummaryFieldBuilder().getBuilder(), extensionRegistry); break; } // case 58 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private java.lang.Object resourceName_ = ""; /** *
     * Immutable. The resource name of the asset group asset.
     * Asset group asset resource name have the form:
     * `customers/{customer_id}/assetGroupAssets/{asset_group_id}~{asset_id}~{field_type}`
     * 
* * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The resourceName. */ public java.lang.String getResourceName() { java.lang.Object ref = resourceName_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); resourceName_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Immutable. The resource name of the asset group asset.
     * Asset group asset resource name have the form:
     * `customers/{customer_id}/assetGroupAssets/{asset_group_id}~{asset_id}~{field_type}`
     * 
* * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for resourceName. */ public com.google.protobuf.ByteString getResourceNameBytes() { java.lang.Object ref = resourceName_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); resourceName_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Immutable. The resource name of the asset group asset.
     * Asset group asset resource name have the form:
     * `customers/{customer_id}/assetGroupAssets/{asset_group_id}~{asset_id}~{field_type}`
     * 
* * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The resourceName to set. * @return This builder for chaining. */ public Builder setResourceName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } resourceName_ = value; onChanged(); return this; } /** *
     * Immutable. The resource name of the asset group asset.
     * Asset group asset resource name have the form:
     * `customers/{customer_id}/assetGroupAssets/{asset_group_id}~{asset_id}~{field_type}`
     * 
* * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return This builder for chaining. */ public Builder clearResourceName() { resourceName_ = getDefaultInstance().getResourceName(); onChanged(); return this; } /** *
     * Immutable. The resource name of the asset group asset.
     * Asset group asset resource name have the form:
     * `customers/{customer_id}/assetGroupAssets/{asset_group_id}~{asset_id}~{field_type}`
     * 
* * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The bytes for resourceName to set. * @return This builder for chaining. */ public Builder setResourceNameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); resourceName_ = value; onChanged(); return this; } private java.lang.Object assetGroup_ = ""; /** *
     * Immutable. The asset group which this asset group asset is linking.
     * 
* * string asset_group = 2 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The assetGroup. */ public java.lang.String getAssetGroup() { java.lang.Object ref = assetGroup_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); assetGroup_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Immutable. The asset group which this asset group asset is linking.
     * 
* * string asset_group = 2 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for assetGroup. */ public com.google.protobuf.ByteString getAssetGroupBytes() { java.lang.Object ref = assetGroup_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); assetGroup_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Immutable. The asset group which this asset group asset is linking.
     * 
* * string asset_group = 2 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The assetGroup to set. * @return This builder for chaining. */ public Builder setAssetGroup( java.lang.String value) { if (value == null) { throw new NullPointerException(); } assetGroup_ = value; onChanged(); return this; } /** *
     * Immutable. The asset group which this asset group asset is linking.
     * 
* * string asset_group = 2 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return This builder for chaining. */ public Builder clearAssetGroup() { assetGroup_ = getDefaultInstance().getAssetGroup(); onChanged(); return this; } /** *
     * Immutable. The asset group which this asset group asset is linking.
     * 
* * string asset_group = 2 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The bytes for assetGroup to set. * @return This builder for chaining. */ public Builder setAssetGroupBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); assetGroup_ = value; onChanged(); return this; } private java.lang.Object asset_ = ""; /** *
     * Immutable. The asset which this asset group asset is linking.
     * 
* * string asset = 3 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The asset. */ public java.lang.String getAsset() { java.lang.Object ref = asset_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); asset_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Immutable. The asset which this asset group asset is linking.
     * 
* * string asset = 3 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return The bytes for asset. */ public com.google.protobuf.ByteString getAssetBytes() { java.lang.Object ref = asset_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); asset_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Immutable. The asset which this asset group asset is linking.
     * 
* * string asset = 3 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The asset to set. * @return This builder for chaining. */ public Builder setAsset( java.lang.String value) { if (value == null) { throw new NullPointerException(); } asset_ = value; onChanged(); return this; } /** *
     * Immutable. The asset which this asset group asset is linking.
     * 
* * string asset = 3 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @return This builder for chaining. */ public Builder clearAsset() { asset_ = getDefaultInstance().getAsset(); onChanged(); return this; } /** *
     * Immutable. The asset which this asset group asset is linking.
     * 
* * string asset = 3 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * @param value The bytes for asset to set. * @return This builder for chaining. */ public Builder setAssetBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); asset_ = value; onChanged(); return this; } private int fieldType_ = 0; /** *
     * The description of the placement of the asset within the asset group. For
     * example: HEADLINE, YOUTUBE_VIDEO etc
     * 
* * .google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; * @return The enum numeric value on the wire for fieldType. */ @java.lang.Override public int getFieldTypeValue() { return fieldType_; } /** *
     * The description of the placement of the asset within the asset group. For
     * example: HEADLINE, YOUTUBE_VIDEO etc
     * 
* * .google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; * @param value The enum numeric value on the wire for fieldType to set. * @return This builder for chaining. */ public Builder setFieldTypeValue(int value) { fieldType_ = value; onChanged(); return this; } /** *
     * The description of the placement of the asset within the asset group. For
     * example: HEADLINE, YOUTUBE_VIDEO etc
     * 
* * .google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; * @return The fieldType. */ @java.lang.Override public com.google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType getFieldType() { @SuppressWarnings("deprecation") com.google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType result = com.google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType.valueOf(fieldType_); return result == null ? com.google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType.UNRECOGNIZED : result; } /** *
     * The description of the placement of the asset within the asset group. For
     * example: HEADLINE, YOUTUBE_VIDEO etc
     * 
* * .google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; * @param value The fieldType to set. * @return This builder for chaining. */ public Builder setFieldType(com.google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType value) { if (value == null) { throw new NullPointerException(); } fieldType_ = value.getNumber(); onChanged(); return this; } /** *
     * The description of the placement of the asset within the asset group. For
     * example: HEADLINE, YOUTUBE_VIDEO etc
     * 
* * .google.ads.googleads.v10.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; * @return This builder for chaining. */ public Builder clearFieldType() { fieldType_ = 0; onChanged(); return this; } private int status_ = 0; /** *
     * The status of the link between an asset and asset group.
     * 
* * .google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus status = 5; * @return The enum numeric value on the wire for status. */ @java.lang.Override public int getStatusValue() { return status_; } /** *
     * The status of the link between an asset and asset group.
     * 
* * .google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus status = 5; * @param value The enum numeric value on the wire for status to set. * @return This builder for chaining. */ public Builder setStatusValue(int value) { status_ = value; onChanged(); return this; } /** *
     * The status of the link between an asset and asset group.
     * 
* * .google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus status = 5; * @return The status. */ @java.lang.Override public com.google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus getStatus() { @SuppressWarnings("deprecation") com.google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus result = com.google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus.valueOf(status_); return result == null ? com.google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus.UNRECOGNIZED : result; } /** *
     * The status of the link between an asset and asset group.
     * 
* * .google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus status = 5; * @param value The status to set. * @return This builder for chaining. */ public Builder setStatus(com.google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus value) { if (value == null) { throw new NullPointerException(); } status_ = value.getNumber(); onChanged(); return this; } /** *
     * The status of the link between an asset and asset group.
     * 
* * .google.ads.googleads.v10.enums.AssetLinkStatusEnum.AssetLinkStatus status = 5; * @return This builder for chaining. */ public Builder clearStatus() { status_ = 0; onChanged(); return this; } private int performanceLabel_ = 0; /** *
     * Output only. The performance of this asset group asset.
     * 
* * .google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel performance_label = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @return The enum numeric value on the wire for performanceLabel. */ @java.lang.Override public int getPerformanceLabelValue() { return performanceLabel_; } /** *
     * Output only. The performance of this asset group asset.
     * 
* * .google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel performance_label = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @param value The enum numeric value on the wire for performanceLabel to set. * @return This builder for chaining. */ public Builder setPerformanceLabelValue(int value) { performanceLabel_ = value; onChanged(); return this; } /** *
     * Output only. The performance of this asset group asset.
     * 
* * .google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel performance_label = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @return The performanceLabel. */ @java.lang.Override public com.google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel getPerformanceLabel() { @SuppressWarnings("deprecation") com.google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel result = com.google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel.valueOf(performanceLabel_); return result == null ? com.google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel.UNRECOGNIZED : result; } /** *
     * Output only. The performance of this asset group asset.
     * 
* * .google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel performance_label = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @param value The performanceLabel to set. * @return This builder for chaining. */ public Builder setPerformanceLabel(com.google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel value) { if (value == null) { throw new NullPointerException(); } performanceLabel_ = value.getNumber(); onChanged(); return this; } /** *
     * Output only. The performance of this asset group asset.
     * 
* * .google.ads.googleads.v10.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel performance_label = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @return This builder for chaining. */ public Builder clearPerformanceLabel() { performanceLabel_ = 0; onChanged(); return this; } private com.google.ads.googleads.v10.common.PolicySummary policySummary_; private com.google.protobuf.SingleFieldBuilderV3< com.google.ads.googleads.v10.common.PolicySummary, com.google.ads.googleads.v10.common.PolicySummary.Builder, com.google.ads.googleads.v10.common.PolicySummaryOrBuilder> policySummaryBuilder_; /** *
     * Output only. The policy information for this asset group asset.
     * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @return Whether the policySummary field is set. */ public boolean hasPolicySummary() { return policySummaryBuilder_ != null || policySummary_ != null; } /** *
     * Output only. The policy information for this asset group asset.
     * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; * @return The policySummary. */ public com.google.ads.googleads.v10.common.PolicySummary getPolicySummary() { if (policySummaryBuilder_ == null) { return policySummary_ == null ? com.google.ads.googleads.v10.common.PolicySummary.getDefaultInstance() : policySummary_; } else { return policySummaryBuilder_.getMessage(); } } /** *
     * Output only. The policy information for this asset group asset.
     * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; */ public Builder setPolicySummary(com.google.ads.googleads.v10.common.PolicySummary value) { if (policySummaryBuilder_ == null) { if (value == null) { throw new NullPointerException(); } policySummary_ = value; onChanged(); } else { policySummaryBuilder_.setMessage(value); } return this; } /** *
     * Output only. The policy information for this asset group asset.
     * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; */ public Builder setPolicySummary( com.google.ads.googleads.v10.common.PolicySummary.Builder builderForValue) { if (policySummaryBuilder_ == null) { policySummary_ = builderForValue.build(); onChanged(); } else { policySummaryBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Output only. The policy information for this asset group asset.
     * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; */ public Builder mergePolicySummary(com.google.ads.googleads.v10.common.PolicySummary value) { if (policySummaryBuilder_ == null) { if (policySummary_ != null) { policySummary_ = com.google.ads.googleads.v10.common.PolicySummary.newBuilder(policySummary_).mergeFrom(value).buildPartial(); } else { policySummary_ = value; } onChanged(); } else { policySummaryBuilder_.mergeFrom(value); } return this; } /** *
     * Output only. The policy information for this asset group asset.
     * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; */ public Builder clearPolicySummary() { if (policySummaryBuilder_ == null) { policySummary_ = null; onChanged(); } else { policySummary_ = null; policySummaryBuilder_ = null; } return this; } /** *
     * Output only. The policy information for this asset group asset.
     * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; */ public com.google.ads.googleads.v10.common.PolicySummary.Builder getPolicySummaryBuilder() { onChanged(); return getPolicySummaryFieldBuilder().getBuilder(); } /** *
     * Output only. The policy information for this asset group asset.
     * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; */ public com.google.ads.googleads.v10.common.PolicySummaryOrBuilder getPolicySummaryOrBuilder() { if (policySummaryBuilder_ != null) { return policySummaryBuilder_.getMessageOrBuilder(); } else { return policySummary_ == null ? com.google.ads.googleads.v10.common.PolicySummary.getDefaultInstance() : policySummary_; } } /** *
     * Output only. The policy information for this asset group asset.
     * 
* * .google.ads.googleads.v10.common.PolicySummary policy_summary = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.ads.googleads.v10.common.PolicySummary, com.google.ads.googleads.v10.common.PolicySummary.Builder, com.google.ads.googleads.v10.common.PolicySummaryOrBuilder> getPolicySummaryFieldBuilder() { if (policySummaryBuilder_ == null) { policySummaryBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.ads.googleads.v10.common.PolicySummary, com.google.ads.googleads.v10.common.PolicySummary.Builder, com.google.ads.googleads.v10.common.PolicySummaryOrBuilder>( getPolicySummary(), getParentForChildren(), isClean()); policySummary_ = null; } return policySummaryBuilder_; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.ads.googleads.v10.resources.AssetGroupAsset) } // @@protoc_insertion_point(class_scope:google.ads.googleads.v10.resources.AssetGroupAsset) private static final com.google.ads.googleads.v10.resources.AssetGroupAsset DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.ads.googleads.v10.resources.AssetGroupAsset(); } public static com.google.ads.googleads.v10.resources.AssetGroupAsset getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public AssetGroupAsset parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public com.google.ads.googleads.v10.resources.AssetGroupAsset getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy