diff options
Diffstat (limited to 'lib/models/presence_t.mli')
| -rw-r--r-- | lib/models/presence_t.mli | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/models/presence_t.mli b/lib/models/presence_t.mli index 7a26905..940d986 100644 --- a/lib/models/presence_t.mli +++ b/lib/models/presence_t.mli @@ -3,17 +3,17 @@ type user = User_t.t -type role = Role_t.t +type snowflake = Snowflake_t.t -type guild = Guild_t.t +type partial_user = User_t.partial_user type activity = Activity_t.t type t = { - user: user; - roles: role list; + user: partial_user; + roles: snowflake list; game: activity option; - guild: guild; + guild_id: snowflake; status: string; activities: activity list } |