Nostrum.Struct.Embed.Field (nostrum v0.11.0-dev)

View Source

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

inline()

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

Whether the field should display as inline

name()

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

Name of the field

t()

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

value()

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

Value of the field