Interface ListOrdersRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListOrdersRequest,ListOrdersRequest.Builder
public interface ListOrdersRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFilter()Filter that you can use to limit the list request.com.google.protobuf.ByteStringgetFilterBytes()Filter that you can use to limit the list request.intgetPageSize()The maximum number of entries requested.StringgetPageToken()The token for fetching the next page.com.google.protobuf.ByteStringgetPageTokenBytes()The token for fetching the next page.StringgetParent()Required.com.google.protobuf.ByteStringgetParentBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The parent resource to query for orders. This field has the form `billingAccounts/{billing-account-id}`.string parent = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The parent resource to query for orders. This field has the form `billingAccounts/{billing-account-id}`.string parent = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for parent.
-
getPageSize
int getPageSize()
The maximum number of entries requested. The default page size is 25 and the maximum page size is 200.
int32 page_size = 2;- Returns:
- The pageSize.
-
getPageToken
String getPageToken()
The token for fetching the next page.
string page_token = 3;- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
The token for fetching the next page.
string page_token = 3;- Returns:
- The bytes for pageToken.
-
getFilter
String getFilter()
Filter that you can use to limit the list request. A query string that can match a selected set of attributes with string values. For example, `display_name=abc`. Supported query attributes are * `display_name` If the query contains special characters other than letters, underscore, or digits, the phrase must be quoted with double quotes. For example, `display_name="foo:bar"`, where the display name needs to be quoted because it contains special character colon. Queries can be combined with `OR`, and `NOT` to form more complex queries. You can also group them to force a desired evaluation order. For example, `display_name=abc OR display_name=def`.
string filter = 4;- Returns:
- The filter.
-
getFilterBytes
com.google.protobuf.ByteString getFilterBytes()
Filter that you can use to limit the list request. A query string that can match a selected set of attributes with string values. For example, `display_name=abc`. Supported query attributes are * `display_name` If the query contains special characters other than letters, underscore, or digits, the phrase must be quoted with double quotes. For example, `display_name="foo:bar"`, where the display name needs to be quoted because it contains special character colon. Queries can be combined with `OR`, and `NOT` to form more complex queries. You can also group them to force a desired evaluation order. For example, `display_name=abc OR display_name=def`.
string filter = 4;- Returns:
- The bytes for filter.
-
-