From b25eede0885a889e76881579513c9b33f4e92f6e Mon Sep 17 00:00:00 2001 From: Pranas Kiziela Date: Wed, 2 Jan 2019 21:12:22 +0200 Subject: [PATCH] Add StickerID property to Message --- message.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/message.go b/message.go index 30a913c..deea809 100644 --- a/message.go +++ b/message.go @@ -16,6 +16,8 @@ type Message struct { Mid string `json:"mid"` // Seq is order the message was sent in relation to other messages. 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 string `json:"text"` // Attachments is the information about the attachments which were sent