Current section

Files

Jump to
podium_ex lib podium action.ex
Raw

lib/podium/action.ex

defmodule Podium.Action do
@moduledoc """
Represents an Action in the Podium API.
"""
@type t :: %__MODULE__{
label: String.t(),
interaction_uid: String.t(),
conversation_uid: String.t()
}
defstruct [
label: nil,
interaction_uid: nil,
conversation_uid: nil
]
end