blob: 89a6895bdf048b3b36d70f878e49677d46e824cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
open Core
type partial_user = {
id: User_id_t.t;
} [@@deriving sexp, yojson { strict = false}]
type t = {
id: User_id_t.t;
username: string;
discriminator: string;
avatar: string option [@default None];
bot: bool [@default false];
} [@@deriving sexp, yojson { strict = false }]
|