# 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.KeysetPaginationResponseHeaders do @moduledoc """ The `Link` HTTP header contains multiple links (`first`, `next`) formatted as: `; rel=\"first\"` 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 ] @type t :: %__MODULE__{ :link => String.t | nil } def decode(value) do value end end