D++ (DPP)  10.0.30
C++ Discord API Bot Library
dpp::command_interaction Struct Reference

Details of a command within an interaction. More...

#include "appcommand.h"

Inheritance diagram for dpp::command_interaction:
Collaboration diagram for dpp::command_interaction:

Public Member Functions

std::string get_mention () const
 Return a ping/mention for the slash command. More...
 
template<typename T >
T & get_value (size_t index)
 Get an option value by index. More...
 

Public Attributes

snowflake id
 The ID of the invoked command. More...
 
std::string name
 The name of the invoked command. More...
 
std::vector< command_data_optionoptions
 Optional: the params + values from the user. More...
 
dpp::snowflake target_id
 Non-zero target ID for context menu actions (e.g. More...
 
slashcommand_contextmenu_type type
 The type of command interaction. More...
 

Detailed Description

Details of a command within an interaction.

This subobject represents the application command associated with the interaction.

Member Function Documentation

◆ get_mention()

std::string dpp::command_interaction::get_mention ( ) const

Return a ping/mention for the slash command.

Returns
std::string mention. e.g. </airhorn:816437322781949972>
Note
If you want a mention for a subcommand or subcommand group, you can use dpp::utility::slashcommand_mention

◆ get_value()

template<typename T >
T& dpp::command_interaction::get_value ( size_t  index)
inline

Get an option value by index.

Template Parameters
TType to get from the parameter
Parameters
indexindex of the option
Returns
T returned type

Member Data Documentation

◆ id

snowflake dpp::command_interaction::id

The ID of the invoked command.

◆ name

std::string dpp::command_interaction::name

The name of the invoked command.

Referenced by dpp::interaction::get_context_message().

◆ options

std::vector<command_data_option> dpp::command_interaction::options

Optional: the params + values from the user.

◆ target_id

dpp::snowflake dpp::command_interaction::target_id

Non-zero target ID for context menu actions (e.g.

user id or message id whom clicked or tapped with the context menu).

See also
https://discord.com/developers/docs/interactions/application-commands#user-commands

◆ type

slashcommand_contextmenu_type dpp::command_interaction::type

The type of command interaction.


The documentation for this struct was generated from the following files: