# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Ory.Model.TokenPaginationResponseHeaders do @moduledoc """ 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.com/docs/ecosystem/api-design#pagination). """ @derive Jason.Encoder defstruct [ :link, :"x-total-count" ] @type t :: %__MODULE__{ :link => String.t | nil, :"x-total-count" => integer() | nil } def decode(value) do value end end