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

Values in the command interaction. More...

#include "appcommand.h"

Collaboration diagram for dpp::command_data_option:

Public Member Functions

bool empty ()
 Check if the value variant holds std::monostate and options vector is empty (i.e. More...
 
template<typename T >
T & get_value (size_t index)
 Get an option value by index. More...
 

Public Attributes

bool focused
 Optional: true if this option is the currently focused option for autocomplete. More...
 
std::string name
 The name of the parameter. More...
 
std::vector< command_data_optionoptions
 Optional: present if this option is a group or subcommand. More...
 
command_option_type type
 The type of option (value of ApplicationCommandOptionType). More...
 
command_value value
 Optional: the value of the pair. More...
 

Detailed Description

Values in the command interaction.

These are the values specified by the user when actually issuing the command on a channel or in DM.

Member Function Documentation

◆ empty()

bool dpp::command_data_option::empty ( )
inline

Check if the value variant holds std::monostate and options vector is empty (i.e.

the option wasn't supplied)

Returns
bool true, if value variant holds std::monostate and options vector is empty

◆ get_value()

template<typename T >
T& dpp::command_data_option::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

◆ focused

bool dpp::command_data_option::focused

Optional: true if this option is the currently focused option for autocomplete.

◆ name

std::string dpp::command_data_option::name

The name of the parameter.

◆ options

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

Optional: present if this option is a group or subcommand.

◆ type

command_option_type dpp::command_data_option::type

The type of option (value of ApplicationCommandOptionType).

◆ value

command_value dpp::command_data_option::value

Optional: the value of the pair.


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