View Source Nostrum.Struct.Embed.Field (Nostrum v0.9.0)

Struct representing a Discord embed field.

Summary

Types

Whether the field should display as inline

Name of the field

t()

Value of the field

Types

@type inline() :: boolean() | nil

Whether the field should display as inline

@type name() :: String.t()

Name of the field

@type t() :: %Nostrum.Struct.Embed.Field{
  inline: inline(),
  name: name(),
  value: value()
}
@type value() :: String.t()

Value of the field