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