Add response parameters to error messages

This commit is contained in:
Behrang Noruzi Niya 2018-03-04 14:40:17 +03:30
parent 5435d1d8ea
commit 04f51c3251
2 changed files with 15 additions and 2 deletions

View file

@ -410,7 +410,7 @@ type InlineKeyboardButton struct {
SwitchInlineQuery *string `json:"switch_inline_query,omitempty"` // optional
SwitchInlineQueryCurrentChat *string `json:"switch_inline_query_current_chat,omitempty"` // optional
CallbackGame *CallbackGame `json:"callback_game,omitempty"` // optional
Pay bool `json:"pay,omitempty"` // optional
Pay bool `json:"pay,omitempty"` // optional
}
// CallbackQuery is data sent when a keyboard button with callback data
@ -771,3 +771,12 @@ type PreCheckoutQuery struct {
ShippingOptionID string `json:"shipping_option_id,omitempty"`
OrderInfo *OrderInfo `json:"order_info,omitempty"`
}
type Error struct {
Message string
ResponseParameters
}
func (e Error) Error() string {
return e.Message
}