View Source Nostrum.Struct.Guild.Integration.Application (Nostrum v0.9.0)

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

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

The bot associated with the application.

Link to this type

description()

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

The description of the application.

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

The icon hash of the application.

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

The id of the application.

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

The name of the application.

Link to this type

summary()

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

The summary of the application.

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