D++ (DPP)  10.0.30
C++ Discord API Bot Library
intents.h File Reference
This graph shows which files directly or indirectly include this file:

Namespaces

 dpp
 The main namespace for D++ functions.
 

Enumerations

enum  dpp::intents {
  dpp::i_guilds = (1 << 0),
  dpp::i_guild_members = (1 << 1),
  dpp::i_guild_bans = (1 << 2),
  dpp::i_guild_emojis = (1 << 3),
  dpp::i_guild_integrations = (1 << 4),
  dpp::i_guild_webhooks = (1 << 5),
  dpp::i_guild_invites = (1 << 6),
  dpp::i_guild_voice_states = (1 << 7),
  dpp::i_guild_presences = (1 << 8),
  dpp::i_guild_messages = (1 << 9),
  dpp::i_guild_message_reactions = (1 << 10),
  dpp::i_guild_message_typing = (1 << 11),
  dpp::i_direct_messages = (1 << 12),
  dpp::i_direct_message_reactions = (1 << 13),
  dpp::i_direct_message_typing = (1 << 14),
  dpp::i_message_content = (1 << 15),
  dpp::i_guild_scheduled_events = (1 << 16),
  dpp::i_auto_moderation_configuration = (1 << 20),
  dpp::i_auto_moderation_execution = (1 << 21),
  dpp::i_default_intents,
  dpp::i_privileged_intents = dpp::i_guild_members | dpp::i_guild_presences | dpp::i_message_content,
  dpp::i_all_intents = dpp::i_default_intents | dpp::i_privileged_intents,
  dpp::i_unverified_default_intents = dpp::i_default_intents | dpp::i_message_content
}
 intents are a bitmask of allowed events on your websocket. More...