lib/spatio/model/update_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.UpdatePresentationRequest do
  @moduledoc """
  Partial update — every field optional.
  """

  @derive JSON.Encoder
  defstruct [
    :title,
    :description,
    :theme
  ]

  @type t :: %__MODULE__{
    :title => String.t | nil,
    :description => String.t | nil,
    :theme => String.t | nil
  }

  def decode(value) do
    value
  end
end