You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @brief Create a follow-up message for this interaction.
574
+
* @param m Message object to send. Not all fields are supported by Discord.
575
+
* @param callback User function to execute when the api call completes.
576
+
* On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error().
577
+
*/
578
+
voidfollow_up(const message& m, command_completion_event_t callback = utility::log_error()) const;
579
+
580
+
/**
581
+
* @brief Create a follow-up message for this interaction.
582
+
* @param mt The string value to send, for simple text only messages
583
+
* @param callback User function to execute when the api call completes.
584
+
* On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error().
* @brief Create a follow-up message for this interaction.
702
+
*
703
+
* @param m Message object to send. Not all fields are supported by Discord.
704
+
* On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error().
705
+
*/
706
+
dpp::async<dpp::confirmation_callback_t> co_follow_up(const message& m) const;
707
+
708
+
/**
709
+
* @brief Create a follow-up message for this interaction.
710
+
*
711
+
* @param mt The string value to send, for simple text only messages
712
+
* On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error().
0 commit comments