Package com.google.cloud.channel.v1
Interface CustomerEventOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CustomerEvent
,CustomerEvent.Builder
public interface CustomerEventOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCustomer()
Resource name of the customer.com.google.protobuf.ByteString
getCustomerBytes()
Resource name of the customer.CustomerEvent.Type
getEventType()
Type of event which happened on the customer.int
getEventTypeValue()
Type of event which happened on the customer.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCustomer
String getCustomer()
Resource name of the customer. Format: accounts/{account_id}/customers/{customer_id}
string customer = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- The customer.
-
getCustomerBytes
com.google.protobuf.ByteString getCustomerBytes()
Resource name of the customer. Format: accounts/{account_id}/customers/{customer_id}
string customer = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- The bytes for customer.
-
getEventTypeValue
int getEventTypeValue()
Type of event which happened on the customer.
.google.cloud.channel.v1.CustomerEvent.Type event_type = 2;
- Returns:
- The enum numeric value on the wire for eventType.
-
getEventType
CustomerEvent.Type getEventType()
Type of event which happened on the customer.
.google.cloud.channel.v1.CustomerEvent.Type event_type = 2;
- Returns:
- The eventType.
-
-