Current section
Files
Jump to
Current section
Files
lib/ex_stream_client/model/pagination_params.ex
defmodule ExStreamClient.Model.PaginationParams do
@moduledoc "Schema representing a PaginationParams"
use ExStreamClient.JSON
use ExStreamClient.TypeInterner
defstruct [:limit, :offset]
@nested_components []
def nested_components do
@nested_components
end
@type t :: %__MODULE__{limit: integer() | nil, offset: integer() | nil}
end