aboutsummaryrefslogtreecommitdiff
path: root/lib/models/user/presence.ml
blob: 0b8300098f77b1a32fa832215c1f3d4ca8ff52b3 (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; exn = true }]