Sha256: 7bfa002972a12ea21d22ec9acd731e5c1b32ba4f9365fb5474a4a592dd3ca7b7
Contents?: true
Size: 1.24 KB
Versions: 73
Compression:
Stored size: 1.24 KB
Contents
# OryClient::Pagination ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **page** | **Integer** | Pagination Page This value is currently an integer, but it is not sequential. The value is not the page number, but a reference. The next page can be any number and some numbers might return an empty list. For example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist. | [optional][default to 1] | | **page_size** | **Integer** | 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.sh/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.sh/docs/ecosystem/api-design#pagination). | [optional][default to '1'] | | **per_page** | **Integer** | Items per Page This is the number of items per page. | [optional][default to 250] | ## Example ```ruby require 'ory-client' instance = OryClient::Pagination.new( page: null, page_size: null, page_token: null, per_page: null ) ```
Version data entries
73 entries across 73 versions & 1 rubygems