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

Version Path
ory-client-1.2.5 docs/Pagination.md
ory-client-1.2.4 docs/Pagination.md
ory-client-1.2.3 docs/Pagination.md
ory-client-1.2.2 docs/Pagination.md
ory-client-1.2.1 docs/Pagination.md
ory-client-1.2.0 docs/Pagination.md
ory-client-1.1.51 docs/Pagination.md
ory-client-1.1.50 docs/Pagination.md
ory-client-1.1.49 docs/Pagination.md
ory-client-1.1.48 docs/Pagination.md
ory-client-1.1.47 docs/Pagination.md
ory-client-1.1.46 docs/Pagination.md
ory-client-1.1.45 docs/Pagination.md
ory-client-1.1.44 docs/Pagination.md
ory-client-1.1.41 docs/Pagination.md
ory-client-1.1.40 docs/Pagination.md
ory-client-1.1.39.alpha0 docs/Pagination.md
ory-client-1.1.39 docs/Pagination.md
ory-client-1.1.38 docs/Pagination.md
ory-client-1.1.37 docs/Pagination.md