blob: b0228f9d98c95ed424136245b571dbcf0090294b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
type partial_user = {
id: User_id_t.t;
} [@@deriving sexp, yojson]
type t = {
id: User_id_t.t;
username: string;
discriminator: string;
avatar: string option;
bot: bool;
} [@@deriving sexp, yojson]
|