summaryrefslogtreecommitdiff
path: root/discord/objects.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'discord/objects.hpp')
-rw-r--r--discord/objects.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/discord/objects.hpp b/discord/objects.hpp
index 179cfbf..85f940f 100644
--- a/discord/objects.hpp
+++ b/discord/objects.hpp
@@ -473,3 +473,9 @@ struct UserNoteUpdateMessage {
friend void from_json(const nlohmann::json &j, UserNoteUpdateMessage &m);
};
+
+struct RelationshipsData {
+ std::vector<UserData> Users;
+
+ friend void from_json(const nlohmann::json &j, RelationshipsData &m);
+};