blob: 1aa3c841bb3f61b75ee72a3090c1a3c76ec4cd6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
open Core
type reaction_event = {
user_id: User_id_t.t;
channel_id: Channel_id_t.t;
message_id: Message_id.t;
guild_id: Guild_id_t.t option [@default None];
emoji: Emoji.partial_emoji;
} [@@deriving sexp, yojson]
type t = {
count: int;
emoji: Emoji.t;
} [@@deriving sexp, yojson { strict = false}]
|