Nostrum.Struct.Guild.Integration.Application (nostrum v0.11.0-dev)

View Source

Struct representing a Discord Guild Integration Application.

Summary

Types

The bot associated with the application.

The description of the application.

The icon hash of the application.

The id of the application.

The name of the application.

The summary of the application.

t()

Types

bot()

(since 0.5.1)
@type bot() :: Nostrum.Struct.User.t() | nil

The bot associated with the application.

description()

(since 0.5.1)
@type description() :: String.t()

The description of the application.

icon()

(since 0.5.1)
@type icon() :: String.t() | nil

The icon hash of the application.

id()

(since 0.5.1)
@type id() :: Nostrum.Snowflake.t()

The id of the application.

name()

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

The name of the application.

summary()

(since 0.5.1)
@type summary() :: String.t()

The summary of the application.

t()

(since 0.5.1)
@type t() :: %Nostrum.Struct.Guild.Integration.Application{
  bot: bot(),
  description: description(),
  icon: icon(),
  id: id(),
  name: name(),
  summary: summary()
}