diff options
Diffstat (limited to 'src/discord/interactions.hpp')
-rw-r--r-- | src/discord/interactions.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/discord/interactions.hpp b/src/discord/interactions.hpp index c076145..782c491 100644 --- a/src/discord/interactions.hpp +++ b/src/discord/interactions.hpp @@ -14,10 +14,10 @@ enum class InteractionType { }; struct MessageInteractionData { - Snowflake ID; // id of the interaction - InteractionType Type; // the type of interaction - std::string Name; // the name of the ApplicationCommand - UserData User; // the user who invoked the interaction + Snowflake ID; // id of the interaction + InteractionType Type; // the type of interaction + std::string Name; // the name of the ApplicationCommand + UserData User; // the user who invoked the interaction // undocumented??? std::optional<GuildMember> Member; // the member who invoked the interaction (in a guild) |