aboutsummaryrefslogtreecommitdiff
path: root/lib/models/user/presence.ml
blob: 0b18a494a89b86e46e9b31091c53dee47b2a498a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
open Core

type t = {
    user: User_t.partial_user;
    roles: Role_id.t list;
    game: Activity.t option [@default None];
    guild_id: Guild_id_t.t;
    status: string;
    activities: Activity.t list;
} [@@deriving sexp, yojson { strict = false}]