Current section
Files
Jump to
Current section
Files
lib/nostrum/struct/component/default_value.ex
defmodule Nostrum.Struct.Component.DefaultValue do
@moduledoc """
Default Value
"""
@moduledoc since: "0.10.1"
@derive Jason.Encoder
defstruct [
:id,
:type
]
@type t :: %__MODULE__{
id: id(),
type: type()
}
@type id :: Nostrum.Snowflake.t()
@type type :: :user | :role | :channel
end