blob: 10b12d5feb7f9b30aa480b88f14c7f9f3f44c0c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
type partial_emoji = {
id: Snowflake.t option;
name: string;
} [@@deriving sexp, yojson]
type t = {
id: Snowflake.t option;
name: string;
roles: Role_id.t list;
user: User_t.t option;
require_colons: bool option;
managed: bool option;
animated: bool option;
} [@@deriving sexp, yojson]
|