Interface GenerateAdGroupThemesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GenerateAdGroupThemesRequest,GenerateAdGroupThemesRequest.Builder
public interface GenerateAdGroupThemesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAdGroups(int index)Required.com.google.protobuf.ByteStringgetAdGroupsBytes(int index)Required.intgetAdGroupsCount()Required.java.util.List<java.lang.String>getAdGroupsList()Required.java.lang.StringgetCustomerId()Required.com.google.protobuf.ByteStringgetCustomerIdBytes()Required.java.lang.StringgetKeywords(int index)Required.com.google.protobuf.ByteStringgetKeywordsBytes(int index)Required.intgetKeywordsCount()Required.java.util.List<java.lang.String>getKeywordsList()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCustomerId
java.lang.String getCustomerId()
Required. The ID of the customer.
string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The customerId.
-
getCustomerIdBytes
com.google.protobuf.ByteString getCustomerIdBytes()
Required. The ID of the customer.
string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for customerId.
-
getKeywordsList
java.util.List<java.lang.String> getKeywordsList()
Required. A list of keywords to group into the provided AdGroups.
repeated string keywords = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- A list containing the keywords.
-
getKeywordsCount
int getKeywordsCount()
Required. A list of keywords to group into the provided AdGroups.
repeated string keywords = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The count of keywords.
-
getKeywords
java.lang.String getKeywords(int index)
Required. A list of keywords to group into the provided AdGroups.
repeated string keywords = 2 [(.google.api.field_behavior) = REQUIRED];- Parameters:
index- The index of the element to return.- Returns:
- The keywords at the given index.
-
getKeywordsBytes
com.google.protobuf.ByteString getKeywordsBytes(int index)
Required. A list of keywords to group into the provided AdGroups.
repeated string keywords = 2 [(.google.api.field_behavior) = REQUIRED];- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the keywords at the given index.
-
getAdGroupsList
java.util.List<java.lang.String> getAdGroupsList()
Required. A list of resource names of AdGroups to group keywords into. Resource name format: `customers/{customer_id}/adGroups/{ad_group_id}`repeated string ad_groups = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- A list containing the adGroups.
-
getAdGroupsCount
int getAdGroupsCount()
Required. A list of resource names of AdGroups to group keywords into. Resource name format: `customers/{customer_id}/adGroups/{ad_group_id}`repeated string ad_groups = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The count of adGroups.
-
getAdGroups
java.lang.String getAdGroups(int index)
Required. A list of resource names of AdGroups to group keywords into. Resource name format: `customers/{customer_id}/adGroups/{ad_group_id}`repeated string ad_groups = 3 [(.google.api.field_behavior) = REQUIRED];- Parameters:
index- The index of the element to return.- Returns:
- The adGroups at the given index.
-
getAdGroupsBytes
com.google.protobuf.ByteString getAdGroupsBytes(int index)
Required. A list of resource names of AdGroups to group keywords into. Resource name format: `customers/{customer_id}/adGroups/{ad_group_id}`repeated string ad_groups = 3 [(.google.api.field_behavior) = REQUIRED];- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the adGroups at the given index.
-
-