aboutsummaryrefslogtreecommitdiff
path: root/lib/models/channel/message/message_t.mli
diff options
context:
space:
mode:
authorAdelyn Breedlove <[email protected]>2019-01-28 07:41:20 -0700
committerAdelyn Breedlove <[email protected]>2019-01-28 07:41:20 -0700
commite48af10e04a4aea4eb72dac58b83fc7cc080e1bd (patch)
tree78a0cf1f78855982ea54c78ac36f7fd89c5a1122 /lib/models/channel/message/message_t.mli
parentSwitch to ID abstractions internally (diff)
downloaddisml-e48af10e04a4aea4eb72dac58b83fc7cc080e1bd.tar.xz
disml-e48af10e04a4aea4eb72dac58b83fc7cc080e1bd.zip
Fix Message.t.mentions
Diffstat (limited to 'lib/models/channel/message/message_t.mli')
-rw-r--r--lib/models/channel/message/message_t.mli6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/models/channel/message/message_t.mli b/lib/models/channel/message/message_t.mli
index d829dc5..1f691b5 100644
--- a/lib/models/channel/message/message_t.mli
+++ b/lib/models/channel/message/message_t.mli
@@ -7,11 +7,11 @@ type t = {
guild_id: Guild_id_t.t option;
content: string;
timestamp: string;
- editedimestamp: string option;
+ edited_timestamp: string option;
tts: bool;
mention_everyone: bool;
- mentions: User_id_t.t list;
- role_mentions: Role_id.t list;
+ mentions: User_t.t list;
+ mention_roles: Role_id.t list;
attachments: Attachment.t list;
embeds: Embed.t list;
reactions: Snowflake.t list;