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