lib/spatio/model/create_presentation_request.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.22.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Spatio.Model.CreatePresentationRequest do
@moduledoc """
"""
@derive JSON.Encoder
defstruct [
:title,
:description,
:theme,
:accountId,
:provider
]
@type t :: %__MODULE__{
:title => String.t,
:description => String.t | nil,
:theme => String.t | nil,
:accountId => String.t | nil,
:provider => String.t | nil
}
def decode(value) do
value
end
end