Package com.google.cloud.channel.v1
Interface ListCustomersResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListCustomersResponse
,ListCustomersResponse.Builder
public interface ListCustomersResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Customer
getCustomers(int index)
The customers belonging to a reseller or distributor.int
getCustomersCount()
The customers belonging to a reseller or distributor.List<Customer>
getCustomersList()
The customers belonging to a reseller or distributor.CustomerOrBuilder
getCustomersOrBuilder(int index)
The customers belonging to a reseller or distributor.List<? extends CustomerOrBuilder>
getCustomersOrBuilderList()
The customers belonging to a reseller or distributor.String
getNextPageToken()
A token to retrieve the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token to retrieve the next page of results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCustomersList
List<Customer> getCustomersList()
The customers belonging to a reseller or distributor.
repeated .google.cloud.channel.v1.Customer customers = 1;
-
getCustomers
Customer getCustomers(int index)
The customers belonging to a reseller or distributor.
repeated .google.cloud.channel.v1.Customer customers = 1;
-
getCustomersCount
int getCustomersCount()
The customers belonging to a reseller or distributor.
repeated .google.cloud.channel.v1.Customer customers = 1;
-
getCustomersOrBuilderList
List<? extends CustomerOrBuilder> getCustomersOrBuilderList()
The customers belonging to a reseller or distributor.
repeated .google.cloud.channel.v1.Customer customers = 1;
-
getCustomersOrBuilder
CustomerOrBuilder getCustomersOrBuilder(int index)
The customers belonging to a reseller or distributor.
repeated .google.cloud.channel.v1.Customer customers = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. Pass to [ListCustomersRequest.page_token][google.cloud.channel.v1.ListCustomersRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve the next page of results. Pass to [ListCustomersRequest.page_token][google.cloud.channel.v1.ListCustomersRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-