lib/spatio/model/execute_chat_action_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.ExecuteChatActionRequest do
  @moduledoc """
  
  """

  @derive JSON.Encoder
  defstruct [
    :action_id,
    :params
  ]

  @type t :: %__MODULE__{
    :action_id => String.t,
    :params => any() | nil
  }

  def decode(value) do
    value
  end
end