openvidu/backend/openapi/components/schemas/meet-pagination.yaml

16 lines
557 B
YAML

type: object
properties:
isTruncated:
type: boolean
description: >
Indicates if there are more elements to retrieve.
If true, use the `nextPageToken` to fetch the next set of elements.
nextPageToken:
type: [string, 'null']
description: The token to retrieve the next page of elements.
maxItems:
type: integer
description: >
Maximum number of elements returned in a single response page.
Corresponds to the `maxItems` query parameter in the request.