added PinnedMessage in Chat struct

Since BotAPI 3.3:
getChat now also returns pinned messages in supergroups, if present. Added the new field pinned_message to the Chat object.

Signed-off-by: Maxim Zhukov <mussitantesmortem@gmail.com>
bot-api-6.1
Maxim Zhukov 2019-02-12 22:00:57 +03:00
parent ec221ba9ea
commit 0b788c7730
1 changed files with 1 additions and 0 deletions

View File

@ -100,6 +100,7 @@ type Chat struct {
Photo *ChatPhoto `json:"photo"`
Description string `json:"description,omitempty"` // optional
InviteLink string `json:"invite_link,omitempty"` // optional
PinnedMessage *Message `json:"pinned_message"` // optional
}
// IsPrivate returns if the Chat is a private conversation.