Package com.google.cloud.channel.v1
Interface ListTransferableSkusResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTransferableSkusResponse
,ListTransferableSkusResponse.Builder
public interface ListTransferableSkusResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.TransferableSku
getTransferableSkus(int index)
Information about existing SKUs for a customer that needs a transfer.int
getTransferableSkusCount()
Information about existing SKUs for a customer that needs a transfer.List<TransferableSku>
getTransferableSkusList()
Information about existing SKUs for a customer that needs a transfer.TransferableSkuOrBuilder
getTransferableSkusOrBuilder(int index)
Information about existing SKUs for a customer that needs a transfer.List<? extends TransferableSkuOrBuilder>
getTransferableSkusOrBuilderList()
Information about existing SKUs for a customer that needs a transfer.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTransferableSkusList
List<TransferableSku> getTransferableSkusList()
Information about existing SKUs for a customer that needs a transfer.
repeated .google.cloud.channel.v1.TransferableSku transferable_skus = 1;
-
getTransferableSkus
TransferableSku getTransferableSkus(int index)
Information about existing SKUs for a customer that needs a transfer.
repeated .google.cloud.channel.v1.TransferableSku transferable_skus = 1;
-
getTransferableSkusCount
int getTransferableSkusCount()
Information about existing SKUs for a customer that needs a transfer.
repeated .google.cloud.channel.v1.TransferableSku transferable_skus = 1;
-
getTransferableSkusOrBuilderList
List<? extends TransferableSkuOrBuilder> getTransferableSkusOrBuilderList()
Information about existing SKUs for a customer that needs a transfer.
repeated .google.cloud.channel.v1.TransferableSku transferable_skus = 1;
-
getTransferableSkusOrBuilder
TransferableSkuOrBuilder getTransferableSkusOrBuilder(int index)
Information about existing SKUs for a customer that needs a transfer.
repeated .google.cloud.channel.v1.TransferableSku transferable_skus = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. Pass to [ListTransferableSkusRequest.page_token][google.cloud.channel.v1.ListTransferableSkusRequest.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 [ListTransferableSkusRequest.page_token][google.cloud.channel.v1.ListTransferableSkusRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-