Interface HotelTextAssetOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
HotelTextAsset,HotelTextAsset.Builder
public interface HotelTextAssetOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssetFieldTypeEnum.AssetFieldTypegetAssetFieldType()The text asset type.intgetAssetFieldTypeValue()The text asset type.java.lang.StringgetText()Asset text in requested language.com.google.protobuf.ByteStringgetTextBytes()Asset text in requested language.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getText
java.lang.String getText()
Asset text in requested language.
string text = 1;- Returns:
- The text.
-
getTextBytes
com.google.protobuf.ByteString getTextBytes()
Asset text in requested language.
string text = 1;- Returns:
- The bytes for text.
-
getAssetFieldTypeValue
int getAssetFieldTypeValue()
The text asset type. For example, HEADLINE, DESCRIPTION, etc.
.google.ads.googleads.v14.enums.AssetFieldTypeEnum.AssetFieldType asset_field_type = 2;- Returns:
- The enum numeric value on the wire for assetFieldType.
-
getAssetFieldType
AssetFieldTypeEnum.AssetFieldType getAssetFieldType()
The text asset type. For example, HEADLINE, DESCRIPTION, etc.
.google.ads.googleads.v14.enums.AssetFieldTypeEnum.AssetFieldType asset_field_type = 2;- Returns:
- The assetFieldType.
-
-