Current section

Files

Jump to
opencode_sdk lib opencode generated event_account_switched_properties.ex
Raw

lib/opencode/generated/event_account_switched_properties.ex

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