Interface CustomizerValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CustomizerValue,CustomizerValue.Builder
public interface CustomizerValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetStringValue()Required.com.google.protobuf.ByteStringgetStringValueBytes()Required.CustomizerAttributeTypeEnum.CustomizerAttributeTypegetType()Required.intgetTypeValue()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
Required. The data type for the customizer value. It must match the attribute type. The string_value content must match the constraints associated with the type.
.google.ads.googleads.v10.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType type = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The enum numeric value on the wire for type.
-
getType
CustomizerAttributeTypeEnum.CustomizerAttributeType getType()
Required. The data type for the customizer value. It must match the attribute type. The string_value content must match the constraints associated with the type.
.google.ads.googleads.v10.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType type = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The type.
-
getStringValue
java.lang.String getStringValue()
Required. Value to insert in creative text. Customizer values of all types are stored as string to make formatting unambiguous.
string string_value = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The stringValue.
-
getStringValueBytes
com.google.protobuf.ByteString getStringValueBytes()
Required. Value to insert in creative text. Customizer values of all types are stored as string to make formatting unambiguous.
string string_value = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for stringValue.
-
-