com.google.ads.googleads.v17.services.CreateCustomerClientRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v17 Show documentation
Show all versions of google-ads-stubs-v17 Show documentation
Stubs for GAAPI version google-ads-stubs-v17
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v17/services/customer_service.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.services;
public interface CreateCustomerClientRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.services.CreateCustomerClientRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Required. The ID of the Manager under whom client customer is being
* created.
*
*
* string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];
* @return The customerId.
*/
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];
* @return The bytes for customerId.
*/
com.google.protobuf.ByteString
getCustomerIdBytes();
/**
*
* Required. The new client customer to create. The resource name on this
* customer will be ignored.
*
*
* .google.ads.googleads.v17.resources.Customer customer_client = 2 [(.google.api.field_behavior) = REQUIRED];
* @return Whether the customerClient field is set.
*/
boolean hasCustomerClient();
/**
*
* Required. The new client customer to create. The resource name on this
* customer will be ignored.
*
*
* .google.ads.googleads.v17.resources.Customer customer_client = 2 [(.google.api.field_behavior) = REQUIRED];
* @return The customerClient.
*/
com.google.ads.googleads.v17.resources.Customer getCustomerClient();
/**
*
* Required. The new client customer to create. The resource name on this
* customer will be ignored.
*
*
* .google.ads.googleads.v17.resources.Customer customer_client = 2 [(.google.api.field_behavior) = REQUIRED];
*/
com.google.ads.googleads.v17.resources.CustomerOrBuilder getCustomerClientOrBuilder();
/**
*
* 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;
* @return Whether the emailAddress field is set.
*/
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;
* @return The emailAddress.
*/
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;
* @return The bytes for emailAddress.
*/
com.google.protobuf.ByteString
getEmailAddressBytes();
/**
*
* The proposed role of user on the created client customer.
* Accessible only to customers on the allow-list.
*
*
* .google.ads.googleads.v17.enums.AccessRoleEnum.AccessRole access_role = 4;
* @return The enum numeric value on the wire for accessRole.
*/
int getAccessRoleValue();
/**
*
* The proposed role of user on the created client customer.
* Accessible only to customers on the allow-list.
*
*
* .google.ads.googleads.v17.enums.AccessRoleEnum.AccessRole access_role = 4;
* @return The accessRole.
*/
com.google.ads.googleads.v17.enums.AccessRoleEnum.AccessRole getAccessRole();
/**
*
* If true, the request is validated but not executed. Only errors are
* returned, not results.
*
*
* bool validate_only = 6;
* @return The validateOnly.
*/
boolean getValidateOnly();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy