lib/spatio/model/dm_reaction_response.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.DmReactionResponse do
  @moduledoc """
  `reactions` shape is provider-specific; treat as opaque.
  """

  @derive JSON.Encoder
  defstruct [
    :reactions
  ]

  @type t :: %__MODULE__{
    :reactions => any() | nil
  }

  def decode(value) do
    value
  end
end