Properties
| Name | Type | Description |
|---|---|---|
| nextPageToken | object | |
| registrationStatus | object | |
| maximumPageSize | object | |
| reverseOrder | object |
JSON Schema
{
"type": "object",
"required": [
"registrationStatus"
],
"title": "ListDomainsInput",
"properties": {
"nextPageToken": {
"allOf": [
{
"$ref": "#/components/schemas/PageToken"
},
{
"description": "<p>If <code>NextPageToken</code> is returned there are more results available. The value of <code>NextPageToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a <code>400</code> error: \"<code>Specified token has exceeded its maximum lifetime</code>\". </p> <p>The configured <code>maximumPageSize</code> determines how many results can be returned in a single call. </p>"
}
]
},
"registrationStatus": {
"allOf": [
{
"$ref": "#/components/schemas/RegistrationStatus"
},
{
"description": "Specifies the registration status of the domains to list."
}
]
},
"maximumPageSize": {
"allOf": [
{
"$ref": "#/components/schemas/PageSize"
},
{
"description": "The maximum number of results that are returned per call. Use <code>nextPageToken</code> to obtain further pages of results. "
}
]
},
"reverseOrder": {
"allOf": [
{
"$ref": "#/components/schemas/ReverseOrder"
},
{
"description": "When set to <code>true</code>, returns the results in reverse order. By default, the results are returned in ascending alphabetical order by <code>name</code> of the domains."
}
]
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}