Sha256: 9018d222ab71ce10064d73ff2123d32497a7edcb681ab101ff5095a3117f3345
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 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?limit=5&offset=0>; rel=\"first\",</clients?limit=5&offset=15>; rel=\"next\",</clients?limit=5&offset=5>; rel=\"prev\",</clients?limit=5&offset=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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ory-hydra-client-2.0.1 | docs/TokenPaginationResponseHeaders.md |