Package com.google.cloud.channel.v1
Interface ListPurchasableSkusResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListPurchasableSkusResponse
,ListPurchasableSkusResponse.Builder
public interface ListPurchasableSkusResponseOrBuilder 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.PurchasableSku
getPurchasableSkus(int index)
The list of SKUs requested.int
getPurchasableSkusCount()
The list of SKUs requested.List<PurchasableSku>
getPurchasableSkusList()
The list of SKUs requested.PurchasableSkuOrBuilder
getPurchasableSkusOrBuilder(int index)
The list of SKUs requested.List<? extends PurchasableSkuOrBuilder>
getPurchasableSkusOrBuilderList()
The list of SKUs requested.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPurchasableSkusList
List<PurchasableSku> getPurchasableSkusList()
The list of SKUs requested.
repeated .google.cloud.channel.v1.PurchasableSku purchasable_skus = 1;
-
getPurchasableSkus
PurchasableSku getPurchasableSkus(int index)
The list of SKUs requested.
repeated .google.cloud.channel.v1.PurchasableSku purchasable_skus = 1;
-
getPurchasableSkusCount
int getPurchasableSkusCount()
The list of SKUs requested.
repeated .google.cloud.channel.v1.PurchasableSku purchasable_skus = 1;
-
getPurchasableSkusOrBuilderList
List<? extends PurchasableSkuOrBuilder> getPurchasableSkusOrBuilderList()
The list of SKUs requested.
repeated .google.cloud.channel.v1.PurchasableSku purchasable_skus = 1;
-
getPurchasableSkusOrBuilder
PurchasableSkuOrBuilder getPurchasableSkusOrBuilder(int index)
The list of SKUs requested.
repeated .google.cloud.channel.v1.PurchasableSku purchasable_skus = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve the next page of results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-