aboutsummaryrefslogtreecommitdiff
path: root/lib/models/presence_t.ml
blob: 7a2690513f161f5bc3692c0bf6494e1fbfacdd8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(* Auto-generated from "presence.atd" *)
              [@@@ocaml.warning "-27-32-35-39"]

type user = User_t.t

type role = Role_t.t

type guild = Guild_t.t

type activity = Activity_t.t

type t = {
  user: user;
  roles: role list;
  game: activity option;
  guild: guild;
  status: string;
  activities: activity list
}