all repos — telegram-bot-api @ 3ed6b6ac1677d7c6b8fd1718a0212632d522a028

Golang bindings for the Telegram Bot API

EditedMessage to Update, EditDate to Message, User to MessageEntity.
Syfaro syfaro@foxpaw.in
Sun, 22 May 2016 09:37:43 -0500
commit

3ed6b6ac1677d7c6b8fd1718a0212632d522a028

parent

bdaf1dc07c57275fc227be3955b408eed32cb7af

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M types.gotypes.go

@@ -22,6 +22,7 @@ // Update is an update response, from GetUpdates.

type Update struct { UpdateID int `json:"update_id"` Message *Message `json:"message"` + EditedMessage *Message `json:"edited_message"` InlineQuery *InlineQuery `json:"inline_query"` ChosenInlineResult *ChosenInlineResult `json:"chosen_inline_result"` CallbackQuery *CallbackQuery `json:"callback_query"`

@@ -99,6 +100,7 @@ ForwardFrom *User `json:"forward_from"` // optional

ForwardFromChat *Chat `json:"forward_from_chat"` // optional ForwardDate int `json:"forward_date"` // optional ReplyToMessage *Message `json:"reply_to_message"` // optional + EditDate int `json:"edit_date"` // optional Text string `json:"text"` // optional Entities *[]MessageEntity `json:"entities"` // optional Audio *Audio `json:"audio"` // optional

@@ -173,7 +175,8 @@ type MessageEntity struct {

Type string `json:"type"` Offset int `json:"offset"` Length int `json:"length"` - URL string `json:"url"` // optional + URL string `json:"url"` // optional + User *User `json:"user"` // optional } // ParseURL attempts to parse a URL contained within a MessageEntity.