Package com.google.cloud.billing.v1
Interface ListBillingAccountsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListBillingAccountsResponse
,ListBillingAccountsResponse.Builder
public interface ListBillingAccountsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BillingAccount
getBillingAccounts(int index)
A list of billing accounts.int
getBillingAccountsCount()
A list of billing accounts.List<BillingAccount>
getBillingAccountsList()
A list of billing accounts.BillingAccountOrBuilder
getBillingAccountsOrBuilder(int index)
A list of billing accounts.List<? extends BillingAccountOrBuilder>
getBillingAccountsOrBuilderList()
A list of billing accounts.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
-
getBillingAccountsList
List<BillingAccount> getBillingAccountsList()
A list of billing accounts.
repeated .google.cloud.billing.v1.BillingAccount billing_accounts = 1;
-
getBillingAccounts
BillingAccount getBillingAccounts(int index)
A list of billing accounts.
repeated .google.cloud.billing.v1.BillingAccount billing_accounts = 1;
-
getBillingAccountsCount
int getBillingAccountsCount()
A list of billing accounts.
repeated .google.cloud.billing.v1.BillingAccount billing_accounts = 1;
-
getBillingAccountsOrBuilderList
List<? extends BillingAccountOrBuilder> getBillingAccountsOrBuilderList()
A list of billing accounts.
repeated .google.cloud.billing.v1.BillingAccount billing_accounts = 1;
-
getBillingAccountsOrBuilder
BillingAccountOrBuilder getBillingAccountsOrBuilder(int index)
A list of billing accounts.
repeated .google.cloud.billing.v1.BillingAccount billing_accounts = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. To retrieve the next page, call `ListBillingAccounts` again with the `page_token` field set to this value. This field is empty if there are no more results to retrieve.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve the next page of results. To retrieve the next page, call `ListBillingAccounts` again with the `page_token` field set to this value. This field is empty if there are no more results to retrieve.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-