summaryrefslogtreecommitdiff
path: root/discord/invite.hpp
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2021-01-07 02:41:49 -0500
committerouwou <26526779+ouwou@users.noreply.github.com>2021-01-07 02:41:49 -0500
commit8cf95fce0cb233125334482149c2c9f4219da52b (patch)
treec0c2e267385363e0f87ad4c80d299c08d33a33a9 /discord/invite.hpp
parent2d6c4cd50d0075c064641150dcf65e6b58d5bf36 (diff)
downloadabaddon-portaudio-8cf95fce0cb233125334482149c2c9f4219da52b.tar.gz
abaddon-portaudio-8cf95fce0cb233125334482149c2c9f4219da52b.zip
improve build process, add github actions
Diffstat (limited to 'discord/invite.hpp')
-rw-r--r--discord/invite.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/discord/invite.hpp b/discord/invite.hpp
index 486ecad..5b42167 100644
--- a/discord/invite.hpp
+++ b/discord/invite.hpp
@@ -5,11 +5,11 @@
class Invite {
public:
- std::string Code; //
- Guild Guild; // opt
- Channel Channel; // opt
- User Inviter; // opt
- int Members = -1; // opt
+ std::string Code; //
+ GuildData Guild; // opt
+ ChannelData Channel; // opt
+ UserData Inviter; // opt
+ int Members = -1; // opt
friend void from_json(const nlohmann::json &j, Invite &m);
};