com.google.ads.googleads.v17.resources.CustomerManagerLinkOrBuilder 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/resources/customer_manager_link.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.resources;
public interface CustomerManagerLinkOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.resources.CustomerManagerLink)
com.google.protobuf.MessageOrBuilder {
/**
*
* Immutable. Name of the resource.
* CustomerManagerLink resource names have the form:
* `customers/{customer_id}/customerManagerLinks/{manager_customer_id}~{manager_link_id}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The resourceName.
*/
java.lang.String getResourceName();
/**
*
* Immutable. Name of the resource.
* CustomerManagerLink resource names have the form:
* `customers/{customer_id}/customerManagerLinks/{manager_customer_id}~{manager_link_id}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The bytes for resourceName.
*/
com.google.protobuf.ByteString
getResourceNameBytes();
/**
*
* Output only. The manager customer linked to the customer.
*
*
* optional string manager_customer = 6 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
* @return Whether the managerCustomer field is set.
*/
boolean hasManagerCustomer();
/**
*
* Output only. The manager customer linked to the customer.
*
*
* optional string manager_customer = 6 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
* @return The managerCustomer.
*/
java.lang.String getManagerCustomer();
/**
*
* Output only. The manager customer linked to the customer.
*
*
* optional string manager_customer = 6 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
* @return The bytes for managerCustomer.
*/
com.google.protobuf.ByteString
getManagerCustomerBytes();
/**
*
* Output only. ID of the customer-manager link. This field is read only.
*
*
* optional int64 manager_link_id = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the managerLinkId field is set.
*/
boolean hasManagerLinkId();
/**
*
* Output only. ID of the customer-manager link. This field is read only.
*
*
* optional int64 manager_link_id = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The managerLinkId.
*/
long getManagerLinkId();
/**
*
* Status of the link between the customer and the manager.
*
*
* .google.ads.googleads.v17.enums.ManagerLinkStatusEnum.ManagerLinkStatus status = 5;
* @return The enum numeric value on the wire for status.
*/
int getStatusValue();
/**
*
* Status of the link between the customer and the manager.
*
*
* .google.ads.googleads.v17.enums.ManagerLinkStatusEnum.ManagerLinkStatus status = 5;
* @return The status.
*/
com.google.ads.googleads.v17.enums.ManagerLinkStatusEnum.ManagerLinkStatus getStatus();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy