diff options
| author | Adelyn Breedlove <[email protected]> | 2019-01-27 14:09:33 -0700 |
|---|---|---|
| committer | Adelyn Breedlove <[email protected]> | 2019-01-27 14:09:33 -0700 |
| commit | fbd3597c7ab798cf10a447eb2b477dd4e3ed6d33 (patch) | |
| tree | 16d1ef889e9c6f1090dd911e6fb31392625066c2 /lib/models/channel/message/reaction_t.mli | |
| parent | hopeful reconnection fix (diff) | |
| download | disml-fbd3597c7ab798cf10a447eb2b477dd4e3ed6d33.tar.xz disml-fbd3597c7ab798cf10a447eb2b477dd4e3ed6d33.zip | |
Switch to ID abstractions internally
Diffstat (limited to 'lib/models/channel/message/reaction_t.mli')
| -rw-r--r-- | lib/models/channel/message/reaction_t.mli | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/models/channel/message/reaction_t.mli b/lib/models/channel/message/reaction_t.mli index db95521..6c2782a 100644 --- a/lib/models/channel/message/reaction_t.mli +++ b/lib/models/channel/message/reaction_t.mli @@ -1,9 +1,9 @@ (** Represents a single reaction as received over the gateway. *) type reaction_event = { - user_id: Snowflake.t; - channel_id: Snowflake.t; - message_id: Snowflake.t; - guild_id: Snowflake.t option; + user_id: User_id_t.t; + channel_id: Channel_id_t.t; + message_id: Message_id.t; + guild_id: Guild_id_t.t option; emoji: Emoji.partial_emoji; } [@@deriving sexp, yojson] |