Interface CustomerManagerLinkOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CustomerManagerLink
,CustomerManagerLink.Builder
public interface CustomerManagerLinkOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getManagerCustomer()
Output only.com.google.protobuf.ByteString
getManagerCustomerBytes()
Output only.long
getManagerLinkId()
Output only.java.lang.String
getResourceName()
Immutable.com.google.protobuf.ByteString
getResourceNameBytes()
Immutable.ManagerLinkStatusEnum.ManagerLinkStatus
getStatus()
Status of the link between the customer and the manager.int
getStatusValue()
Status of the link between the customer and the manager.boolean
hasManagerCustomer()
Output only.boolean
hasManagerLinkId()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResourceName
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) = { ... }
- Returns:
- The resourceName.
-
getResourceNameBytes
com.google.protobuf.ByteString getResourceNameBytes()
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) = { ... }
- Returns:
- The bytes for resourceName.
-
hasManagerCustomer
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) = { ... }
- Returns:
- Whether the managerCustomer field is set.
-
getManagerCustomer
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) = { ... }
- Returns:
- The managerCustomer.
-
getManagerCustomerBytes
com.google.protobuf.ByteString getManagerCustomerBytes()
Output only. The manager customer linked to the customer.
optional string manager_customer = 6 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for managerCustomer.
-
hasManagerLinkId
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];
- Returns:
- Whether the managerLinkId field is set.
-
getManagerLinkId
long getManagerLinkId()
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];
- Returns:
- The managerLinkId.
-
getStatusValue
int getStatusValue()
Status of the link between the customer and the manager.
.google.ads.googleads.v9.enums.ManagerLinkStatusEnum.ManagerLinkStatus status = 5;
- Returns:
- The enum numeric value on the wire for status.
-
getStatus
ManagerLinkStatusEnum.ManagerLinkStatus getStatus()
Status of the link between the customer and the manager.
.google.ads.googleads.v9.enums.ManagerLinkStatusEnum.ManagerLinkStatus status = 5;
- Returns:
- The status.
-
-