Experimental
Schema
ListSandboxesResponse
Type:
object
ListSandboxesResponse returns sandbox results and a next-page token.
nextPageToken
Type:
string
next_page_token is empty when there are no more pages.
All schema constraints and annotations
{
"description": "next_page_token is empty when there are no more pages.",
"type": "string"
}sandboxes
Type:
array
sandboxes is the current page.
Array item
Schema:
Sandbox
All schema constraints and annotations
{
"description": "sandboxes is the current page.",
"items": {
"$ref": "#/components/schemas/Sandbox"
},
"type": "array"
}All schema constraints and annotations
{
"description": "ListSandboxesResponse returns sandbox results and a next-page token.",
"properties": {
"nextPageToken": {
"description": "next_page_token is empty when there are no more pages.",
"type": "string"
},
"sandboxes": {
"description": "sandboxes is the current page.",
"items": {
"$ref": "#/components/schemas/Sandbox"
},
"type": "array"
}
},
"title": "ListSandboxesResponse",
"type": "object"
}