From 3e8413e964caebfd9974aed356ccb041b202724b Mon Sep 17 00:00:00 2001 From: ory-bot <60093411+ory-bot@users.noreply.github.com> Date: Mon, 25 Sep 2023 09:12:15 +0000 Subject: [PATCH] autogen(openapi): regenerate swagger spec and internal client [skip ci] --- .../httpclient/model_token_pagination_response_headers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/httpclient/model_token_pagination_response_headers.go b/internal/httpclient/model_token_pagination_response_headers.go index ffa20eb2ef..26722925de 100644 --- a/internal/httpclient/model_token_pagination_response_headers.go +++ b/internal/httpclient/model_token_pagination_response_headers.go @@ -17,9 +17,9 @@ import ( // TokenPaginationResponseHeaders The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as: `; rel=\"{page}\"` For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). type TokenPaginationResponseHeaders struct { - // The Link HTTP Headers 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: ; rel=\"first\",; rel=\"next\",; rel=\"prev\",; rel=\"last\" + // 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: ; rel=\"first\",; rel=\"next\",; rel=\"prev\",; rel=\"last\" Link *string `json:"link,omitempty"` - // The X-Total-Count HTTP Headers The `X-Total-Count` header contains the total number of items in the collection. + // The X-Total-Count HTTP Header The `X-Total-Count` header contains the total number of items in the collection. XTotalCount *int64 `json:"x-total-count,omitempty"` }