# 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.KeysetPaginationRequestParameters do @moduledoc """ For details on pagination please head over to the [pagination documentation](https://www.ory.com/docs/ecosystem/api-design#pagination). """ @derive Jason.Encoder defstruct [ :page_size, :page_token ] @type t :: %__MODULE__{ :page_size => integer() | nil, :page_token => String.t | nil } def decode(value) do value end end