|
|
@ -180,6 +180,7 @@ type Message struct { |
|
|
|
SuccessfulPayment *SuccessfulPayment `json:"successful_payment"` // optional
|
|
|
|
SuccessfulPayment *SuccessfulPayment `json:"successful_payment"` // optional
|
|
|
|
ConnectedWebsite string `json:"connected_website"` // optional
|
|
|
|
ConnectedWebsite string `json:"connected_website"` // optional
|
|
|
|
PassportData *PassportData `json:"passport_data,omitempty"` // optional
|
|
|
|
PassportData *PassportData `json:"passport_data,omitempty"` // optional
|
|
|
|
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup"` // optional
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Time converts the message timestamp into a Time.
|
|
|
|
// Time converts the message timestamp into a Time.
|
|
|
@ -464,6 +465,7 @@ type InlineKeyboardMarkup struct { |
|
|
|
type InlineKeyboardButton struct { |
|
|
|
type InlineKeyboardButton struct { |
|
|
|
Text string `json:"text"` |
|
|
|
Text string `json:"text"` |
|
|
|
URL *string `json:"url,omitempty"` // optional
|
|
|
|
URL *string `json:"url,omitempty"` // optional
|
|
|
|
|
|
|
|
LoginURL *LoginURL `json:"login_url,omitempty"` // optional
|
|
|
|
CallbackData *string `json:"callback_data,omitempty"` // optional
|
|
|
|
CallbackData *string `json:"callback_data,omitempty"` // optional
|
|
|
|
SwitchInlineQuery *string `json:"switch_inline_query,omitempty"` // optional
|
|
|
|
SwitchInlineQuery *string `json:"switch_inline_query,omitempty"` // optional
|
|
|
|
SwitchInlineQueryCurrentChat *string `json:"switch_inline_query_current_chat,omitempty"` // optional
|
|
|
|
SwitchInlineQueryCurrentChat *string `json:"switch_inline_query_current_chat,omitempty"` // optional
|
|
|
@ -471,6 +473,14 @@ type InlineKeyboardButton struct { |
|
|
|
Pay bool `json:"pay,omitempty"` // optional
|
|
|
|
Pay bool `json:"pay,omitempty"` // optional
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// LoginURL is the parameters for the login inline keyboard button type.
|
|
|
|
|
|
|
|
type LoginURL struct { |
|
|
|
|
|
|
|
URL string `json:"url"` |
|
|
|
|
|
|
|
ForwardText string `json:"forward_text"` |
|
|
|
|
|
|
|
BotUsername string `json:"bot_username"` |
|
|
|
|
|
|
|
RequestWriteAccess bool `json:"request_write_access"` |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// CallbackQuery is data sent when a keyboard button with callback data
|
|
|
|
// CallbackQuery is data sent when a keyboard button with callback data
|
|
|
|
// is clicked.
|
|
|
|
// is clicked.
|
|
|
|
type CallbackQuery struct { |
|
|
|
type CallbackQuery struct { |
|
|
|