Experimental
Schema
ListProcessesResponse
Type:
object
ListProcessesResponse returns processes 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"
}processes
Type:
array
processes is the current page.
Array item
Schema:
Process
All schema constraints and annotations
{
"description": "processes is the current page.",
"items": {
"$ref": "#/components/schemas/Process"
},
"type": "array"
}All schema constraints and annotations
{
"description": "ListProcessesResponse returns processes and a next-page token.",
"properties": {
"nextPageToken": {
"description": "next_page_token is empty when there are no more pages.",
"type": "string"
},
"processes": {
"description": "processes is the current page.",
"items": {
"$ref": "#/components/schemas/Process"
},
"type": "array"
}
},
"title": "ListProcessesResponse",
"type": "object"
}