aboutsummaryrefslogtreecommitdiff
path: root/lib/models/gen/emoji.atd
blob: 877323b02add10f99f49fecdbea6c165689083c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
type snowflake <ocaml from="Snowflake" t="t"> = abstract
type user <ocaml from="User" t="t"> = abstract

type t = {
    ?id: snowflake option;
    name: string;
    ?roles: snowflake list option;
    ?user: user option;
    ?require_colons: bool option;
    ?managed: bool option;
    ?animated: bool option;
}