Sha256: c17f8a1a96fe8420e47d9322a5116c94f2337c7d327270f6a64337982b877961
Contents?: true
Size: 1.16 KB
Versions: 5
Compression:
Stored size: 1.16 KB
Contents
# OryClient::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-client' instance = OryClient::TokenPaginationResponseHeaders.new( link: null, x_total_count: null ) ```
Version data entries
5 entries across 5 versions & 1 rubygems