Interface BrandSuggestionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BrandSuggestion,BrandSuggestion.Builder
public interface BrandSuggestionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetId()Id for the brand.com.google.protobuf.ByteStringgetIdBytes()Id for the brand.java.lang.StringgetName()Name of the brand.com.google.protobuf.ByteStringgetNameBytes()Name of the brand.BrandStateEnum.BrandStategetState()Current state of the brand.intgetStateValue()Current state of the brand.java.lang.StringgetUrls(int index)Urls which uniquely identify the brand.com.google.protobuf.ByteStringgetUrlsBytes(int index)Urls which uniquely identify the brand.intgetUrlsCount()Urls which uniquely identify the brand.java.util.List<java.lang.String>getUrlsList()Urls which uniquely identify the brand.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getId
java.lang.String getId()
Id for the brand. It would be CKG MID for verified/global scoped brands.
string id = 1;- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
Id for the brand. It would be CKG MID for verified/global scoped brands.
string id = 1;- Returns:
- The bytes for id.
-
getName
java.lang.String getName()
Name of the brand.
string name = 2;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the brand.
string name = 2;- Returns:
- The bytes for name.
-
getUrlsList
java.util.List<java.lang.String> getUrlsList()
Urls which uniquely identify the brand.
repeated string urls = 3;- Returns:
- A list containing the urls.
-
getUrlsCount
int getUrlsCount()
Urls which uniquely identify the brand.
repeated string urls = 3;- Returns:
- The count of urls.
-
getUrls
java.lang.String getUrls(int index)
Urls which uniquely identify the brand.
repeated string urls = 3;- Parameters:
index- The index of the element to return.- Returns:
- The urls at the given index.
-
getUrlsBytes
com.google.protobuf.ByteString getUrlsBytes(int index)
Urls which uniquely identify the brand.
repeated string urls = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the urls at the given index.
-
getStateValue
int getStateValue()
Current state of the brand.
.google.ads.googleads.v15.enums.BrandStateEnum.BrandState state = 4;- Returns:
- The enum numeric value on the wire for state.
-
getState
BrandStateEnum.BrandState getState()
Current state of the brand.
.google.ads.googleads.v15.enums.BrandStateEnum.BrandState state = 4;- Returns:
- The state.
-
-