blob: 9980f431eb815dcb8507a9dc0537277d50123822 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
type partial_user = {
id: Snowflake.t;
} [@@deriving yojson { strict = false}]
type t = {
id: Snowflake.t;
username: string;
discriminator: string;
avatar: string option [@default None];
bot: bool [@default false];
} [@@deriving yojson { strict = false }]
|