Package com.google.cloud.channel.v1
Interface ListSkuGroupBillableSkusResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListSkuGroupBillableSkusResponse
,ListSkuGroupBillableSkusResponse.Builder
public interface ListSkuGroupBillableSkusResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BillableSku
getBillableSkus(int index)
The list of billable SKUs in the requested SKU group.int
getBillableSkusCount()
The list of billable SKUs in the requested SKU group.List<BillableSku>
getBillableSkusList()
The list of billable SKUs in the requested SKU group.BillableSkuOrBuilder
getBillableSkusOrBuilder(int index)
The list of billable SKUs in the requested SKU group.List<? extends BillableSkuOrBuilder>
getBillableSkusOrBuilderList()
The list of billable SKUs in the requested SKU group.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
-
getBillableSkusList
List<BillableSku> getBillableSkusList()
The list of billable SKUs in the requested SKU group.
repeated .google.cloud.channel.v1.BillableSku billable_skus = 1;
-
getBillableSkus
BillableSku getBillableSkus(int index)
The list of billable SKUs in the requested SKU group.
repeated .google.cloud.channel.v1.BillableSku billable_skus = 1;
-
getBillableSkusCount
int getBillableSkusCount()
The list of billable SKUs in the requested SKU group.
repeated .google.cloud.channel.v1.BillableSku billable_skus = 1;
-
getBillableSkusOrBuilderList
List<? extends BillableSkuOrBuilder> getBillableSkusOrBuilderList()
The list of billable SKUs in the requested SKU group.
repeated .google.cloud.channel.v1.BillableSku billable_skus = 1;
-
getBillableSkusOrBuilder
BillableSkuOrBuilder getBillableSkusOrBuilder(int index)
The list of billable SKUs in the requested SKU group.
repeated .google.cloud.channel.v1.BillableSku billable_skus = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. Pass to [ListSkuGroupBillableSkus.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 [ListSkuGroupBillableSkus.page_token][] to obtain that page.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-