lib/spatio/model/execute_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.ExecuteActionRequest do
  @moduledoc """
  Generic action-execute payload. Tool-specific shape lives in `params`.
  """

  @derive JSON.Encoder
  defstruct [
    :actionId,
    :params,
    :accountId
  ]

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

  def decode(value) do
    value
  end
end