Package com.google.cloud.billing.v1
Interface ListBillingAccountsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListBillingAccountsRequest
,ListBillingAccountsRequest.Builder
public interface ListBillingAccountsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFilter()
Options for how to filter the returned billing accounts.com.google.protobuf.ByteString
getFilterBytes()
Options for how to filter the returned billing accounts.int
getPageSize()
Requested page size.String
getPageToken()
A token identifying a page of results to return.com.google.protobuf.ByteString
getPageTokenBytes()
A token identifying a page of results to return.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPageSize
int getPageSize()
Requested page size. The maximum page size is 100; this is also the default.
int32 page_size = 1;
- Returns:
- The pageSize.
-
getPageToken
String getPageToken()
A token identifying a page of results to return. This should be a `next_page_token` value returned from a previous `ListBillingAccounts` call. If unspecified, the first page of results is returned.
string page_token = 2;
- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
A token identifying a page of results to return. This should be a `next_page_token` value returned from a previous `ListBillingAccounts` call. If unspecified, the first page of results is returned.
string page_token = 2;
- Returns:
- The bytes for pageToken.
-
getFilter
String getFilter()
Options for how to filter the returned billing accounts. Currently this only supports filtering for [subaccounts](https://cloud.google.com/billing/docs/concepts) under a single provided reseller billing account. (e.g. "master_billing_account=billingAccounts/012345-678901-ABCDEF"). Boolean algebra and other fields are not currently supported.
string filter = 3;
- Returns:
- The filter.
-
getFilterBytes
com.google.protobuf.ByteString getFilterBytes()
Options for how to filter the returned billing accounts. Currently this only supports filtering for [subaccounts](https://cloud.google.com/billing/docs/concepts) under a single provided reseller billing account. (e.g. "master_billing_account=billingAccounts/012345-678901-ABCDEF"). Boolean algebra and other fields are not currently supported.
string filter = 3;
- Returns:
- The bytes for filter.
-
-