Current section

Files

Jump to
opencode_sdk lib opencode generated sessions_response_cursor.ex
Raw

lib/opencode/generated/sessions_response_cursor.ex

defmodule OpenCode.Generated.SessionsResponseCursor do
@moduledoc """
Provides struct and type for a SessionsResponseCursor
"""
@type t :: %__MODULE__{next: String.t() | nil, previous: String.t() | nil}
defstruct [:next, :previous]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[next: :string, previous: :string]
end
end