diff options
Diffstat (limited to 'discord/objects.hpp')
-rw-r--r-- | discord/objects.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/discord/objects.hpp b/discord/objects.hpp index f3256f4..11c8df4 100644 --- a/discord/objects.hpp +++ b/discord/objects.hpp @@ -653,3 +653,9 @@ struct FriendRequestObject { friend void to_json(nlohmann::json &j, const FriendRequestObject &m); }; + +struct PutRelationshipObject { + std::optional<RelationshipType> Type; + + friend void to_json(nlohmann::json &j, const PutRelationshipObject &m); +}; |