aboutsummaryrefslogtreecommitdiff
path: root/lib/models/emoji.ml
blob: cfbfe6457cc486343fd9b62b49edc0cd8af7647c (plain) (blame)
1
2
3
4
5
6
7
8
9
type t = {
    id: Snowflake.t;
    name: string;
    roles: (Role.t list) option;
    user: User.t option;
    require_colons: bool option;
    managed: bool;
    animated: bool;
} [@@deriving yojson]