1
0
mirror of synced 2025-02-18 06:13:13 +03:00

Merge pull request #54 from EddyTravels/feature/sticker-id

Add StickerID property to Message
This commit is contained in:
Harrison Shoebridge 2019-01-03 10:02:20 +11:00 committed by GitHub
commit 8a7cca0c41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,8 @@ type Message struct {
Mid string `json:"mid"` Mid string `json:"mid"`
// Seq is order the message was sent in relation to other messages. // Seq is order the message was sent in relation to other messages.
Seq int `json:"seq"` Seq int `json:"seq"`
// StickerID is the ID of the sticker user sent.
StickerID int `json:"sticker_id"`
// Text is the textual contents of the message. // Text is the textual contents of the message.
Text string `json:"text"` Text string `json:"text"`
// Attachments is the information about the attachments which were sent // Attachments is the information about the attachments which were sent