Webex · Schema
PaginationLinks
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| self | string | Link to the current page. |
| first | string | Link to the first page. |
| last | string | Link to the last page. |
| next | string | Link to the next page. |
| prev | string | Link to the previous page. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaginationLinks",
"title": "PaginationLinks",
"type": "object",
"properties": {
"self": {
"type": "string",
"description": "Link to the current page.",
"example": "/v1/callbacks/organization/${orgId}/scheduled-callback?page=1&pageSize=10"
},
"first": {
"type": "string",
"description": "Link to the first page.",
"example": "/v1/callbacks/organization/${orgId}/scheduled-callback?page=0&pageSize=10"
},
"last": {
"type": "string",
"description": "Link to the last page.",
"example": "/v1/callbacks/organization/${orgId}/scheduled-callback?page=4&pageSize=10"
},
"next": {
"type": "string",
"description": "Link to the next page.",
"example": "/v1/callbacks/organization/${orgId}/scheduled-callback?page=2&pageSize=10"
},
"prev": {
"type": "string",
"description": "Link to the previous page.",
"example": "/v1/callbacks/organization/${orgId}/scheduled-callback?page=0&pageSize=10"
}
},
"required": [
"self"
]
}