UNPKG

@ory/client

Version:

OpenAPI client for @ory/client

24 lines (16 loc) 1.34 kB
# TokenPaginationRequestParameters The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as: `<https://{project-slug}.projects.oryapis.com/admin/clients?page_size={limit}&page_token={offset}>; rel=\"{page}\"` For details on pagination please head over to the [pagination documentation](https://www.ory.com/docs/ecosystem/api-design#pagination). ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **page_size** | **number** | Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.com/docs/ecosystem/api-design#pagination). | [optional] [default to 250] **page_token** | **string** | Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.com/docs/ecosystem/api-design#pagination). | [optional] [default to undefined] ## Example ```typescript import { TokenPaginationRequestParameters } from '@ory/client'; const instance: TokenPaginationRequestParameters = { page_size, page_token, }; ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)