mirror of
https://github.com/uowuo/abaddon.git
synced 2026-08-15 05:19:58 +00:00
12 lines
308 B
C++
12 lines
308 B
C++
#include "member.hpp"
|
|
|
|
void from_json(const nlohmann::json &j, GuildMember &m) {
|
|
JS_O("user", m.User);
|
|
JS_ON("nick", m.Nickname);
|
|
JS_D("roles", m.Roles);
|
|
JS_D("joined_at", m.JoinedAt);
|
|
JS_ON("premium_since", m.PremiumSince);
|
|
JS_D("deaf", m.IsDeafened);
|
|
JS_D("mute", m.IsMuted);
|
|
}
|