Sha256: d82e326b41b18483b8bc69dadc42f078d16d35f86e523bbd9c20d2c0033bf5a1

Contents?: true

Size: 1.2 KB

Versions: 6

Compression:

Stored size: 1.2 KB

Contents

# OryHydraClient::TokenPaginationResponseHeaders

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **link** | **String** | The Link HTTP Header  The `Link` header contains a comma-delimited list of links to the following pages:  first: The first page of results. next: The next page of results. prev: The previous page of results. last: The last page of results.  Pages are omitted if they do not exist. For example, if there is no next page, the `next` link is omitted. Examples:  </clients?page_size=5&page_token=0>; rel=\"first\",</clients?page_size=5&page_token=15>; rel=\"next\",</clients?page_size=5&page_token=5>; rel=\"prev\",</clients?page_size=5&page_token=20>; rel=\"last\" | [optional] |
| **x_total_count** | **Integer** | The X-Total-Count HTTP Header  The `X-Total-Count` header contains the total number of items in the collection. | [optional] |

## Example

```ruby
require 'ory-hydra-client'

instance = OryHydraClient::TokenPaginationResponseHeaders.new(
  link: null,
  x_total_count: null
)
```

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ory-hydra-client-2.2.1 docs/TokenPaginationResponseHeaders.md
ory-hydra-client-2.2.0 docs/TokenPaginationResponseHeaders.md
ory-hydra-client-2.2.0.rc3 docs/TokenPaginationResponseHeaders.md
ory-hydra-client-2.1.1 docs/TokenPaginationResponseHeaders.md
ory-hydra-client-2.1.0 docs/TokenPaginationResponseHeaders.md
ory-hydra-client-2.0.2 docs/TokenPaginationResponseHeaders.md