Interface CreateCustomerClientRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateCustomerClientRequest,CreateCustomerClientRequest.Builder
public interface CreateCustomerClientRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccessRoleEnum.AccessRolegetAccessRole()The proposed role of user on the created client customer.intgetAccessRoleValue()The proposed role of user on the created client customer.CustomergetCustomerClient()Required.CustomerOrBuildergetCustomerClientOrBuilder()Required.java.lang.StringgetCustomerId()Required.com.google.protobuf.ByteStringgetCustomerIdBytes()Required.java.lang.StringgetEmailAddress()Email address of the user who should be invited on the created client customer.com.google.protobuf.ByteStringgetEmailAddressBytes()Email address of the user who should be invited on the created client customer.booleangetValidateOnly()If true, the request is validated but not executed.booleanhasCustomerClient()Required.booleanhasEmailAddress()Email address of the user who should be invited on the created client customer.-
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 Manager under whom client customer is being created.
string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The customerId.
-
getCustomerIdBytes
com.google.protobuf.ByteString getCustomerIdBytes()
Required. The ID of the Manager under whom client customer is being created.
string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for customerId.
-
hasCustomerClient
boolean hasCustomerClient()
Required. The new client customer to create. The resource name on this customer will be ignored.
.google.ads.googleads.v10.resources.Customer customer_client = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the customerClient field is set.
-
getCustomerClient
Customer getCustomerClient()
Required. The new client customer to create. The resource name on this customer will be ignored.
.google.ads.googleads.v10.resources.Customer customer_client = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The customerClient.
-
getCustomerClientOrBuilder
CustomerOrBuilder getCustomerClientOrBuilder()
Required. The new client customer to create. The resource name on this customer will be ignored.
.google.ads.googleads.v10.resources.Customer customer_client = 2 [(.google.api.field_behavior) = REQUIRED];
-
hasEmailAddress
boolean hasEmailAddress()
Email address of the user who should be invited on the created client customer. Accessible only to customers on the allow-list.
optional string email_address = 5;- Returns:
- Whether the emailAddress field is set.
-
getEmailAddress
java.lang.String getEmailAddress()
Email address of the user who should be invited on the created client customer. Accessible only to customers on the allow-list.
optional string email_address = 5;- Returns:
- The emailAddress.
-
getEmailAddressBytes
com.google.protobuf.ByteString getEmailAddressBytes()
Email address of the user who should be invited on the created client customer. Accessible only to customers on the allow-list.
optional string email_address = 5;- Returns:
- The bytes for emailAddress.
-
getAccessRoleValue
int getAccessRoleValue()
The proposed role of user on the created client customer. Accessible only to customers on the allow-list.
.google.ads.googleads.v10.enums.AccessRoleEnum.AccessRole access_role = 4;- Returns:
- The enum numeric value on the wire for accessRole.
-
getAccessRole
AccessRoleEnum.AccessRole getAccessRole()
The proposed role of user on the created client customer. Accessible only to customers on the allow-list.
.google.ads.googleads.v10.enums.AccessRoleEnum.AccessRole access_role = 4;- Returns:
- The accessRole.
-
getValidateOnly
boolean getValidateOnly()
If true, the request is validated but not executed. Only errors are returned, not results.
bool validate_only = 6;- Returns:
- The validateOnly.
-
-