all repos — telegram-bot-api @ d1fd9b736cf5afef5df5553f1c378a986d2f5ee9

Golang bindings for the Telegram Bot API

types.go (view raw)

  1package tgbotapi
  2
  3import (
  4	"encoding/json"
  5	"errors"
  6	"fmt"
  7	"net/url"
  8	"strings"
  9	"time"
 10)
 11
 12// APIResponse is a response from the Telegram API with the result
 13// stored raw.
 14type APIResponse struct {
 15	Ok          bool                `json:"ok"`
 16	Result      json.RawMessage     `json:"result"`
 17	ErrorCode   int                 `json:"error_code"`
 18	Description string              `json:"description"`
 19	Parameters  *ResponseParameters `json:"parameters"`
 20}
 21
 22// ResponseParameters are various errors that can be returned in APIResponse.
 23type ResponseParameters struct {
 24	MigrateToChatID int64 `json:"migrate_to_chat_id"` // optional
 25	RetryAfter      int   `json:"retry_after"`        // optional
 26}
 27
 28// Update is an update response, from GetUpdates.
 29type Update struct {
 30	UpdateID           int                 `json:"update_id"`
 31	Message            *Message            `json:"message"`
 32	EditedMessage      *Message            `json:"edited_message"`
 33	ChannelPost        *Message            `json:"channel_post"`
 34	EditedChannelPost  *Message            `json:"edited_channel_post"`
 35	InlineQuery        *InlineQuery        `json:"inline_query"`
 36	ChosenInlineResult *ChosenInlineResult `json:"chosen_inline_result"`
 37	CallbackQuery      *CallbackQuery      `json:"callback_query"`
 38	ShippingQuery      *ShippingQuery      `json:"shipping_query"`
 39	PreCheckoutQuery   *PreCheckoutQuery   `json:"pre_checkout_query"`
 40}
 41
 42// UpdatesChannel is the channel for getting updates.
 43type UpdatesChannel <-chan Update
 44
 45// Clear discards all unprocessed incoming updates.
 46func (ch UpdatesChannel) Clear() {
 47	for len(ch) != 0 {
 48		<-ch
 49	}
 50}
 51
 52// User is a user on Telegram.
 53type User struct {
 54	ID           int    `json:"id"`
 55	FirstName    string `json:"first_name"`
 56	LastName     string `json:"last_name"`     // optional
 57	UserName     string `json:"username"`      // optional
 58	LanguageCode string `json:"language_code"` // optional
 59	IsBot        bool   `json:"is_bot"`        // optional
 60}
 61
 62// String displays a simple text version of a user.
 63//
 64// It is normally a user's username, but falls back to a first/last
 65// name as available.
 66func (u *User) String() string {
 67	if u.UserName != "" {
 68		return u.UserName
 69	}
 70
 71	name := u.FirstName
 72	if u.LastName != "" {
 73		name += " " + u.LastName
 74	}
 75
 76	return name
 77}
 78
 79// GroupChat is a group chat.
 80type GroupChat struct {
 81	ID    int    `json:"id"`
 82	Title string `json:"title"`
 83}
 84
 85// ChatPhoto represents a chat photo.
 86type ChatPhoto struct {
 87	SmallFileID string `json:"small_file_id"`
 88	BigFileID   string `json:"big_file_id"`
 89}
 90
 91// Chat contains information about the place a message was sent.
 92type Chat struct {
 93	ID                  int64      `json:"id"`
 94	Type                string     `json:"type"`
 95	Title               string     `json:"title"`                          // optional
 96	UserName            string     `json:"username"`                       // optional
 97	FirstName           string     `json:"first_name"`                     // optional
 98	LastName            string     `json:"last_name"`                      // optional
 99	AllMembersAreAdmins bool       `json:"all_members_are_administrators"` // optional
100	Photo               *ChatPhoto `json:"photo"`
101	Description         string     `json:"description,omitempty"` // optional
102	InviteLink          string     `json:"invite_link,omitempty"` // optional
103	PinnedMessage       *Message   `json:"pinned_message"`        // optional
104}
105
106// IsPrivate returns if the Chat is a private conversation.
107func (c Chat) IsPrivate() bool {
108	return c.Type == "private"
109}
110
111// IsGroup returns if the Chat is a group.
112func (c Chat) IsGroup() bool {
113	return c.Type == "group"
114}
115
116// IsSuperGroup returns if the Chat is a supergroup.
117func (c Chat) IsSuperGroup() bool {
118	return c.Type == "supergroup"
119}
120
121// IsChannel returns if the Chat is a channel.
122func (c Chat) IsChannel() bool {
123	return c.Type == "channel"
124}
125
126// ChatConfig returns a ChatConfig struct for chat related methods.
127func (c Chat) ChatConfig() ChatConfig {
128	return ChatConfig{ChatID: c.ID}
129}
130
131// Message is returned by almost every request, and contains data about
132// almost anything.
133type Message struct {
134	MessageID             int                `json:"message_id"`
135	From                  *User              `json:"from"` // optional
136	Date                  int                `json:"date"`
137	Chat                  *Chat              `json:"chat"`
138	ForwardFrom           *User              `json:"forward_from"`            // optional
139	ForwardFromChat       *Chat              `json:"forward_from_chat"`       // optional
140	ForwardFromMessageID  int                `json:"forward_from_message_id"` // optional
141	ForwardDate           int                `json:"forward_date"`            // optional
142	ReplyToMessage        *Message           `json:"reply_to_message"`        // optional
143	EditDate              int                `json:"edit_date"`               // optional
144	Text                  string             `json:"text"`                    // optional
145	Entities              *[]MessageEntity   `json:"entities"`                // optional
146	CaptionEntities       *[]MessageEntity   `json:"caption_entities"`        // optional
147	Audio                 *Audio             `json:"audio"`                   // optional
148	Document              *Document          `json:"document"`                // optional
149	Animation             *ChatAnimation     `json:"animation"`               // optional
150	Game                  *Game              `json:"game"`                    // optional
151	Photo                 *[]PhotoSize       `json:"photo"`                   // optional
152	Sticker               *Sticker           `json:"sticker"`                 // optional
153	Video                 *Video             `json:"video"`                   // optional
154	VideoNote             *VideoNote         `json:"video_note"`              // optional
155	Voice                 *Voice             `json:"voice"`                   // optional
156	Caption               string             `json:"caption"`                 // optional
157	Contact               *Contact           `json:"contact"`                 // optional
158	Location              *Location          `json:"location"`                // optional
159	Venue                 *Venue             `json:"venue"`                   // optional
160	NewChatMembers        *[]User            `json:"new_chat_members"`        // optional
161	LeftChatMember        *User              `json:"left_chat_member"`        // optional
162	NewChatTitle          string             `json:"new_chat_title"`          // optional
163	NewChatPhoto          *[]PhotoSize       `json:"new_chat_photo"`          // optional
164	DeleteChatPhoto       bool               `json:"delete_chat_photo"`       // optional
165	GroupChatCreated      bool               `json:"group_chat_created"`      // optional
166	SuperGroupChatCreated bool               `json:"supergroup_chat_created"` // optional
167	ChannelChatCreated    bool               `json:"channel_chat_created"`    // optional
168	MigrateToChatID       int64              `json:"migrate_to_chat_id"`      // optional
169	MigrateFromChatID     int64              `json:"migrate_from_chat_id"`    // optional
170	PinnedMessage         *Message           `json:"pinned_message"`          // optional
171	Invoice               *Invoice           `json:"invoice"`                 // optional
172	SuccessfulPayment     *SuccessfulPayment `json:"successful_payment"`      // optional
173	PassportData          *PassportData      `json:"passport_data,omitempty"` // optional
174}
175
176// Time converts the message timestamp into a Time.
177func (m *Message) Time() time.Time {
178	return time.Unix(int64(m.Date), 0)
179}
180
181// IsCommand returns true if message starts with a "bot_command" entity.
182func (m *Message) IsCommand() bool {
183	if m.Entities == nil || len(*m.Entities) == 0 {
184		return false
185	}
186
187	entity := (*m.Entities)[0]
188	return entity.Offset == 0 && entity.IsCommand()
189}
190
191// Command checks if the message was a command and if it was, returns the
192// command. If the Message was not a command, it returns an empty string.
193//
194// If the command contains the at name syntax, it is removed. Use
195// CommandWithAt() if you do not want that.
196func (m *Message) Command() string {
197	command := m.CommandWithAt()
198
199	if i := strings.Index(command, "@"); i != -1 {
200		command = command[:i]
201	}
202
203	return command
204}
205
206// CommandWithAt checks if the message was a command and if it was, returns the
207// command. If the Message was not a command, it returns an empty string.
208//
209// If the command contains the at name syntax, it is not removed. Use Command()
210// if you want that.
211func (m *Message) CommandWithAt() string {
212	if !m.IsCommand() {
213		return ""
214	}
215
216	// IsCommand() checks that the message begins with a bot_command entity
217	entity := (*m.Entities)[0]
218	return m.Text[1:entity.Length]
219}
220
221// CommandArguments checks if the message was a command and if it was,
222// returns all text after the command name. If the Message was not a
223// command, it returns an empty string.
224//
225// Note: The first character after the command name is omitted:
226// - "/foo bar baz" yields "bar baz", not " bar baz"
227// - "/foo-bar baz" yields "bar baz", too
228// Even though the latter is not a command conforming to the spec, the API
229// marks "/foo" as command entity.
230func (m *Message) CommandArguments() string {
231	if !m.IsCommand() {
232		return ""
233	}
234
235	// IsCommand() checks that the message begins with a bot_command entity
236	entity := (*m.Entities)[0]
237	if len(m.Text) == entity.Length {
238		return "" // The command makes up the whole message
239	}
240
241	return m.Text[entity.Length+1:]
242}
243
244// MessageEntity contains information about data in a Message.
245type MessageEntity struct {
246	Type   string `json:"type"`
247	Offset int    `json:"offset"`
248	Length int    `json:"length"`
249	URL    string `json:"url"`  // optional
250	User   *User  `json:"user"` // optional
251}
252
253// ParseURL attempts to parse a URL contained within a MessageEntity.
254func (e MessageEntity) ParseURL() (*url.URL, error) {
255	if e.URL == "" {
256		return nil, errors.New(ErrBadURL)
257	}
258
259	return url.Parse(e.URL)
260}
261
262// IsMention returns true if the type of the message entity is "mention" (@username).
263func (e MessageEntity) IsMention() bool {
264	return e.Type == "mention"
265}
266
267// IsHashtag returns true if the type of the message entity is "hashtag".
268func (e MessageEntity) IsHashtag() bool {
269	return e.Type == "hashtag"
270}
271
272// IsCommand returns true if the type of the message entity is "bot_command".
273func (e MessageEntity) IsCommand() bool {
274	return e.Type == "bot_command"
275}
276
277// IsUrl returns true if the type of the message entity is "url".
278func (e MessageEntity) IsUrl() bool {
279	return e.Type == "url"
280}
281
282// IsEmail returns true if the type of the message entity is "email".
283func (e MessageEntity) IsEmail() bool {
284	return e.Type == "email"
285}
286
287// IsBold returns true if the type of the message entity is "bold" (bold text).
288func (e MessageEntity) IsBold() bool {
289	return e.Type == "bold"
290}
291
292// IsItalic returns true if the type of the message entity is "italic" (italic text).
293func (e MessageEntity) IsItalic() bool {
294	return e.Type == "italic"
295}
296
297// IsCode returns true if the type of the message entity is "code" (monowidth string).
298func (e MessageEntity) IsCode() bool {
299	return e.Type == "code"
300}
301
302// IsPre returns true if the type of the message entity is "pre" (monowidth block).
303func (e MessageEntity) IsPre() bool {
304	return e.Type == "pre"
305}
306
307// IsTextLink returns true if the type of the message entity is "text_link" (clickable text URL).
308func (e MessageEntity) IsTextLink() bool {
309	return e.Type == "text_link"
310}
311
312// PhotoSize contains information about photos.
313type PhotoSize struct {
314	FileID   string `json:"file_id"`
315	Width    int    `json:"width"`
316	Height   int    `json:"height"`
317	FileSize int    `json:"file_size"` // optional
318}
319
320// Audio contains information about audio.
321type Audio struct {
322	FileID    string `json:"file_id"`
323	Duration  int    `json:"duration"`
324	Performer string `json:"performer"` // optional
325	Title     string `json:"title"`     // optional
326	MimeType  string `json:"mime_type"` // optional
327	FileSize  int    `json:"file_size"` // optional
328}
329
330// Document contains information about a document.
331type Document struct {
332	FileID    string     `json:"file_id"`
333	Thumbnail *PhotoSize `json:"thumb"`     // optional
334	FileName  string     `json:"file_name"` // optional
335	MimeType  string     `json:"mime_type"` // optional
336	FileSize  int        `json:"file_size"` // optional
337}
338
339// Sticker contains information about a sticker.
340type Sticker struct {
341	FileID     string     `json:"file_id"`
342	Width      int        `json:"width"`
343	Height     int        `json:"height"`
344	Thumbnail  *PhotoSize `json:"thumb"`       // optional
345	Emoji      string     `json:"emoji"`       // optional
346	FileSize   int        `json:"file_size"`   // optional
347	SetName    string     `json:"set_name"`    // optional
348	IsAnimated bool       `json:"is_animated"` // optional
349}
350
351// ChatAnimation contains information about an animation.
352type ChatAnimation struct {
353	FileID    string     `json:"file_id"`
354	Width     int        `json:"width"`
355	Height    int        `json:"height"`
356	Duration  int        `json:"duration"`
357	Thumbnail *PhotoSize `json:"thumb"`     // optional
358	FileName  string     `json:"file_name"` // optional
359	MimeType  string     `json:"mime_type"` // optional
360	FileSize  int        `json:"file_size"` // optional
361}
362
363// Video contains information about a video.
364type Video struct {
365	FileID    string     `json:"file_id"`
366	Width     int        `json:"width"`
367	Height    int        `json:"height"`
368	Duration  int        `json:"duration"`
369	Thumbnail *PhotoSize `json:"thumb"`     // optional
370	MimeType  string     `json:"mime_type"` // optional
371	FileSize  int        `json:"file_size"` // optional
372}
373
374// VideoNote contains information about a video.
375type VideoNote struct {
376	FileID    string     `json:"file_id"`
377	Length    int        `json:"length"`
378	Duration  int        `json:"duration"`
379	Thumbnail *PhotoSize `json:"thumb"`     // optional
380	FileSize  int        `json:"file_size"` // optional
381}
382
383// Voice contains information about a voice.
384type Voice struct {
385	FileID   string `json:"file_id"`
386	Duration int    `json:"duration"`
387	MimeType string `json:"mime_type"` // optional
388	FileSize int    `json:"file_size"` // optional
389}
390
391// Contact contains information about a contact.
392//
393// Note that LastName and UserID may be empty.
394type Contact struct {
395	PhoneNumber string `json:"phone_number"`
396	FirstName   string `json:"first_name"`
397	LastName    string `json:"last_name"` // optional
398	UserID      int    `json:"user_id"`   // optional
399}
400
401// Location contains information about a place.
402type Location struct {
403	Longitude float64 `json:"longitude"`
404	Latitude  float64 `json:"latitude"`
405}
406
407// Venue contains information about a venue, including its Location.
408type Venue struct {
409	Location     Location `json:"location"`
410	Title        string   `json:"title"`
411	Address      string   `json:"address"`
412	FoursquareID string   `json:"foursquare_id"` // optional
413}
414
415// UserProfilePhotos contains a set of user profile photos.
416type UserProfilePhotos struct {
417	TotalCount int           `json:"total_count"`
418	Photos     [][]PhotoSize `json:"photos"`
419}
420
421// File contains information about a file to download from Telegram.
422type File struct {
423	FileID   string `json:"file_id"`
424	FileSize int    `json:"file_size"` // optional
425	FilePath string `json:"file_path"` // optional
426}
427
428// Link returns a full path to the download URL for a File.
429//
430// It requires the Bot Token to create the link.
431func (f *File) Link(token string) string {
432	return fmt.Sprintf(FileEndpoint, token, f.FilePath)
433}
434
435// ReplyKeyboardMarkup allows the Bot to set a custom keyboard.
436type ReplyKeyboardMarkup struct {
437	Keyboard        [][]KeyboardButton `json:"keyboard"`
438	ResizeKeyboard  bool               `json:"resize_keyboard"`   // optional
439	OneTimeKeyboard bool               `json:"one_time_keyboard"` // optional
440	Selective       bool               `json:"selective"`         // optional
441}
442
443// KeyboardButton is a button within a custom keyboard.
444type KeyboardButton struct {
445	Text            string `json:"text"`
446	RequestContact  bool   `json:"request_contact"`
447	RequestLocation bool   `json:"request_location"`
448}
449
450// ReplyKeyboardHide allows the Bot to hide a custom keyboard.
451type ReplyKeyboardHide struct {
452	HideKeyboard bool `json:"hide_keyboard"`
453	Selective    bool `json:"selective"` // optional
454}
455
456// ReplyKeyboardRemove allows the Bot to hide a custom keyboard.
457type ReplyKeyboardRemove struct {
458	RemoveKeyboard bool `json:"remove_keyboard"`
459	Selective      bool `json:"selective"`
460}
461
462// InlineKeyboardMarkup is a custom keyboard presented for an inline bot.
463type InlineKeyboardMarkup struct {
464	InlineKeyboard [][]InlineKeyboardButton `json:"inline_keyboard"`
465}
466
467// InlineKeyboardButton is a button within a custom keyboard for
468// inline query responses.
469//
470// Note that some values are references as even an empty string
471// will change behavior.
472//
473// CallbackGame, if set, MUST be first button in first row.
474type InlineKeyboardButton struct {
475	Text                         string        `json:"text"`
476	URL                          *string       `json:"url,omitempty"`                              // optional
477	CallbackData                 *string       `json:"callback_data,omitempty"`                    // optional
478	SwitchInlineQuery            *string       `json:"switch_inline_query,omitempty"`              // optional
479	SwitchInlineQueryCurrentChat *string       `json:"switch_inline_query_current_chat,omitempty"` // optional
480	CallbackGame                 *CallbackGame `json:"callback_game,omitempty"`                    // optional
481	Pay                          bool          `json:"pay,omitempty"`                              // optional
482}
483
484// CallbackQuery is data sent when a keyboard button with callback data
485// is clicked.
486type CallbackQuery struct {
487	ID              string   `json:"id"`
488	From            *User    `json:"from"`
489	Message         *Message `json:"message"`           // optional
490	InlineMessageID string   `json:"inline_message_id"` // optional
491	ChatInstance    string   `json:"chat_instance"`
492	Data            string   `json:"data"`            // optional
493	GameShortName   string   `json:"game_short_name"` // optional
494}
495
496// ForceReply allows the Bot to have users directly reply to it without
497// additional interaction.
498type ForceReply struct {
499	ForceReply bool `json:"force_reply"`
500	Selective  bool `json:"selective"` // optional
501}
502
503// ChatMember is information about a member in a chat.
504type ChatMember struct {
505	User                  *User  `json:"user"`
506	Status                string `json:"status"`
507	UntilDate             int64  `json:"until_date,omitempty"`                // optional
508	CanBeEdited           bool   `json:"can_be_edited,omitempty"`             // optional
509	CanChangeInfo         bool   `json:"can_change_info,omitempty"`           // optional
510	CanPostMessages       bool   `json:"can_post_messages,omitempty"`         // optional
511	CanEditMessages       bool   `json:"can_edit_messages,omitempty"`         // optional
512	CanDeleteMessages     bool   `json:"can_delete_messages,omitempty"`       // optional
513	CanInviteUsers        bool   `json:"can_invite_users,omitempty"`          // optional
514	CanRestrictMembers    bool   `json:"can_restrict_members,omitempty"`      // optional
515	CanPinMessages        bool   `json:"can_pin_messages,omitempty"`          // optional
516	CanPromoteMembers     bool   `json:"can_promote_members,omitempty"`       // optional
517	CanSendMessages       bool   `json:"can_send_messages,omitempty"`         // optional
518	CanSendMediaMessages  bool   `json:"can_send_media_messages,omitempty"`   // optional
519	CanSendOtherMessages  bool   `json:"can_send_other_messages,omitempty"`   // optional
520	CanAddWebPagePreviews bool   `json:"can_add_web_page_previews,omitempty"` // optional
521}
522
523// IsCreator returns if the ChatMember was the creator of the chat.
524func (chat ChatMember) IsCreator() bool { return chat.Status == "creator" }
525
526// IsAdministrator returns if the ChatMember is a chat administrator.
527func (chat ChatMember) IsAdministrator() bool { return chat.Status == "administrator" }
528
529// IsMember returns if the ChatMember is a current member of the chat.
530func (chat ChatMember) IsMember() bool { return chat.Status == "member" }
531
532// HasLeft returns if the ChatMember left the chat.
533func (chat ChatMember) HasLeft() bool { return chat.Status == "left" }
534
535// WasKicked returns if the ChatMember was kicked from the chat.
536func (chat ChatMember) WasKicked() bool { return chat.Status == "kicked" }
537
538// Game is a game within Telegram.
539type Game struct {
540	Title        string          `json:"title"`
541	Description  string          `json:"description"`
542	Photo        []PhotoSize     `json:"photo"`
543	Text         string          `json:"text"`
544	TextEntities []MessageEntity `json:"text_entities"`
545	Animation    Animation       `json:"animation"`
546}
547
548// Animation is a GIF animation demonstrating the game.
549type Animation struct {
550	FileID   string    `json:"file_id"`
551	Thumb    PhotoSize `json:"thumb"`
552	FileName string    `json:"file_name"`
553	MimeType string    `json:"mime_type"`
554	FileSize int       `json:"file_size"`
555}
556
557// GameHighScore is a user's score and position on the leaderboard.
558type GameHighScore struct {
559	Position int  `json:"position"`
560	User     User `json:"user"`
561	Score    int  `json:"score"`
562}
563
564// CallbackGame is for starting a game in an inline keyboard button.
565type CallbackGame struct{}
566
567// WebhookInfo is information about a currently set webhook.
568type WebhookInfo struct {
569	URL                  string `json:"url"`
570	HasCustomCertificate bool   `json:"has_custom_certificate"`
571	PendingUpdateCount   int    `json:"pending_update_count"`
572	LastErrorDate        int    `json:"last_error_date"`    // optional
573	LastErrorMessage     string `json:"last_error_message"` // optional
574}
575
576// IsSet returns true if a webhook is currently set.
577func (info WebhookInfo) IsSet() bool {
578	return info.URL != ""
579}
580
581// InputMediaPhoto contains a photo for displaying as part of a media group.
582type InputMediaPhoto struct {
583	Type      string `json:"type"`
584	Media     string `json:"media"`
585	Caption   string `json:"caption"`
586	ParseMode string `json:"parse_mode"`
587}
588
589// InputMediaVideo contains a video for displaying as part of a media group.
590type InputMediaVideo struct {
591	Type  string `json:"type"`
592	Media string `json:"media"`
593	// thumb intentionally missing as it is not currently compatible
594	Caption           string `json:"caption"`
595	ParseMode         string `json:"parse_mode"`
596	Width             int    `json:"width"`
597	Height            int    `json:"height"`
598	Duration          int    `json:"duration"`
599	SupportsStreaming bool   `json:"supports_streaming"`
600}
601
602// InlineQuery is a Query from Telegram for an inline request.
603type InlineQuery struct {
604	ID       string    `json:"id"`
605	From     *User     `json:"from"`
606	Location *Location `json:"location"` // optional
607	Query    string    `json:"query"`
608	Offset   string    `json:"offset"`
609}
610
611// InlineQueryResultArticle is an inline query response article.
612type InlineQueryResultArticle struct {
613	Type                string                `json:"type"`                            // required
614	ID                  string                `json:"id"`                              // required
615	Title               string                `json:"title"`                           // required
616	InputMessageContent interface{}           `json:"input_message_content,omitempty"` // required
617	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
618	URL                 string                `json:"url"`
619	HideURL             bool                  `json:"hide_url"`
620	Description         string                `json:"description"`
621	ThumbURL            string                `json:"thumb_url"`
622	ThumbWidth          int                   `json:"thumb_width"`
623	ThumbHeight         int                   `json:"thumb_height"`
624}
625
626// InlineQueryResultPhoto is an inline query response photo.
627type InlineQueryResultPhoto struct {
628	Type                string                `json:"type"`      // required
629	ID                  string                `json:"id"`        // required
630	URL                 string                `json:"photo_url"` // required
631	MimeType            string                `json:"mime_type"`
632	Width               int                   `json:"photo_width"`
633	Height              int                   `json:"photo_height"`
634	ThumbURL            string                `json:"thumb_url"`
635	Title               string                `json:"title"`
636	Description         string                `json:"description"`
637	Caption             string                `json:"caption"`
638	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
639	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
640}
641
642// InlineQueryResultCachedPhoto is an inline query response with cached photo.
643type InlineQueryResultCachedPhoto struct {
644	Type                string                `json:"type"`          // required
645	ID                  string                `json:"id"`            // required
646	PhotoID             string                `json:"photo_file_id"` // required
647	Title               string                `json:"title"`
648	Description         string                `json:"description"`
649	Caption             string                `json:"caption"`
650	ParseMode           string                `json:"parse_mode"`
651	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
652	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
653}
654
655// InlineQueryResultGIF is an inline query response GIF.
656type InlineQueryResultGIF struct {
657	Type                string                `json:"type"`      // required
658	ID                  string                `json:"id"`        // required
659	URL                 string                `json:"gif_url"`   // required
660	ThumbURL            string                `json:"thumb_url"` // required
661	Width               int                   `json:"gif_width,omitempty"`
662	Height              int                   `json:"gif_height,omitempty"`
663	Duration            int                   `json:"gif_duration,omitempty"`
664	Title               string                `json:"title,omitempty"`
665	Caption             string                `json:"caption,omitempty"`
666	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
667	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
668}
669
670// InlineQueryResultCachedGIF is an inline query response with cached gif.
671type InlineQueryResultCachedGIF struct {
672	Type                string                `json:"type"`        // required
673	ID                  string                `json:"id"`          // required
674	GifID               string                `json:"gif_file_id"` // required
675	Title               string                `json:"title"`
676	Caption             string                `json:"caption"`
677	ParseMode           string                `json:"parse_mode"`
678	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
679	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
680}
681
682// InlineQueryResultMPEG4GIF is an inline query response MPEG4 GIF.
683type InlineQueryResultMPEG4GIF struct {
684	Type                string                `json:"type"`      // required
685	ID                  string                `json:"id"`        // required
686	URL                 string                `json:"mpeg4_url"` // required
687	Width               int                   `json:"mpeg4_width"`
688	Height              int                   `json:"mpeg4_height"`
689	Duration            int                   `json:"mpeg4_duration"`
690	ThumbURL            string                `json:"thumb_url"`
691	Title               string                `json:"title"`
692	Caption             string                `json:"caption"`
693	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
694	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
695}
696
697// InlineQueryResultCachedMpeg4Gif is an inline query response with cached
698// H.264/MPEG-4 AVC video without sound gif.
699type InlineQueryResultCachedMpeg4Gif struct {
700	Type                string                `json:"type"`          // required
701	ID                  string                `json:"id"`            // required
702	MGifID              string                `json:"mpeg4_file_id"` // required
703	Title               string                `json:"title"`
704	Caption             string                `json:"caption"`
705	ParseMode           string                `json:"parse_mode"`
706	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
707	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
708}
709
710// InlineQueryResultVideo is an inline query response video.
711type InlineQueryResultVideo struct {
712	Type                string                `json:"type"`      // required
713	ID                  string                `json:"id"`        // required
714	URL                 string                `json:"video_url"` // required
715	MimeType            string                `json:"mime_type"` // required
716	ThumbURL            string                `json:"thumb_url"`
717	Title               string                `json:"title"`
718	Caption             string                `json:"caption"`
719	Width               int                   `json:"video_width"`
720	Height              int                   `json:"video_height"`
721	Duration            int                   `json:"video_duration"`
722	Description         string                `json:"description"`
723	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
724	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
725}
726
727// InlineQueryResultCachedVideo is an inline query response with cached video.
728type InlineQueryResultCachedVideo struct {
729	Type                string                `json:"type"`          // required
730	ID                  string                `json:"id"`            // required
731	VideoID             string                `json:"video_file_id"` // required
732	Title               string                `json:"title"`         // required
733	Description         string                `json:"description"`
734	Caption             string                `json:"caption"`
735	ParseMode           string                `json:"parse_mode"`
736	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
737	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
738}
739
740// InlineQueryResultAudio is an inline query response audio.
741type InlineQueryResultAudio struct {
742	Type                string                `json:"type"`      // required
743	ID                  string                `json:"id"`        // required
744	URL                 string                `json:"audio_url"` // required
745	Title               string                `json:"title"`     // required
746	Caption             string                `json:"caption"`
747	Performer           string                `json:"performer"`
748	Duration            int                   `json:"audio_duration"`
749	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
750	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
751}
752
753// InlineQueryResultCachedAudio is an inline query response with cached audio.
754type InlineQueryResultCachedAudio struct {
755	Type                string                `json:"type"`          // required
756	ID                  string                `json:"id"`            // required
757	AudioID             string                `json:"audio_file_id"` // required
758	Caption             string                `json:"caption"`
759	ParseMode           string                `json:"parse_mode"`
760	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
761	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
762}
763
764// InlineQueryResultVoice is an inline query response voice.
765type InlineQueryResultVoice struct {
766	Type                string                `json:"type"`      // required
767	ID                  string                `json:"id"`        // required
768	URL                 string                `json:"voice_url"` // required
769	Title               string                `json:"title"`     // required
770	Caption             string                `json:"caption"`
771	Duration            int                   `json:"voice_duration"`
772	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
773	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
774}
775
776// InlineQueryResultCachedVoice is an inline query response with cached voice.
777type InlineQueryResultCachedVoice struct {
778	Type                string                `json:"type"`          // required
779	ID                  string                `json:"id"`            // required
780	VoiceID             string                `json:"voice_file_id"` // required
781	Title               string                `json:"title"`         // required
782	Caption             string                `json:"caption"`
783	ParseMode           string                `json:"parse_mode"`
784	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
785	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
786}
787
788// InlineQueryResultDocument is an inline query response document.
789type InlineQueryResultDocument struct {
790	Type                string                `json:"type"`  // required
791	ID                  string                `json:"id"`    // required
792	Title               string                `json:"title"` // required
793	Caption             string                `json:"caption"`
794	URL                 string                `json:"document_url"` // required
795	MimeType            string                `json:"mime_type"`    // required
796	Description         string                `json:"description"`
797	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
798	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
799	ThumbURL            string                `json:"thumb_url"`
800	ThumbWidth          int                   `json:"thumb_width"`
801	ThumbHeight         int                   `json:"thumb_height"`
802}
803
804// InlineQueryResultCachedDocument is an inline query response with cached document.
805type InlineQueryResultCachedDocument struct {
806	Type                string                `json:"type"`             // required
807	ID                  string                `json:"id"`               // required
808	DocumentID          string                `json:"document_file_id"` // required
809	Title               string                `json:"title"`            // required
810	Caption             string                `json:"caption"`
811	Description         string                `json:"description"`
812	ParseMode           string                `json:"parse_mode"`
813	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
814	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
815}
816
817// InlineQueryResultLocation is an inline query response location.
818type InlineQueryResultLocation struct {
819	Type                string                `json:"type"`      // required
820	ID                  string                `json:"id"`        // required
821	Latitude            float64               `json:"latitude"`  // required
822	Longitude           float64               `json:"longitude"` // required
823	Title               string                `json:"title"`     // required
824	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
825	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
826	ThumbURL            string                `json:"thumb_url"`
827	ThumbWidth          int                   `json:"thumb_width"`
828	ThumbHeight         int                   `json:"thumb_height"`
829}
830
831// InlineQueryResultVenue is an inline query response venue.
832type InlineQueryResultVenue struct {
833	Type                string                `json:"type"`      // required
834	ID                  string                `json:"id"`        // required
835	Latitude            float64               `json:"latitude"`  // required
836	Longitude           float64               `json:"longitude"` // required
837	Title               string                `json:"title"`     // required
838	Address             string                `json:"address"`   // required
839	FoursquareID        string                `json:"foursquare_id"`
840	FoursquareType      string                `json:"foursquare_type"`
841	ReplyMarkup         *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
842	InputMessageContent interface{}           `json:"input_message_content,omitempty"`
843	ThumbURL            string                `json:"thumb_url"`
844	ThumbWidth          int                   `json:"thumb_width"`
845	ThumbHeight         int                   `json:"thumb_height"`
846}
847
848// InlineQueryResultGame is an inline query response game.
849type InlineQueryResultGame struct {
850	Type          string                `json:"type"`
851	ID            string                `json:"id"`
852	GameShortName string                `json:"game_short_name"`
853	ReplyMarkup   *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
854}
855
856// ChosenInlineResult is an inline query result chosen by a User
857type ChosenInlineResult struct {
858	ResultID        string    `json:"result_id"`
859	From            *User     `json:"from"`
860	Location        *Location `json:"location"`
861	InlineMessageID string    `json:"inline_message_id"`
862	Query           string    `json:"query"`
863}
864
865// InputTextMessageContent contains text for displaying
866// as an inline query result.
867type InputTextMessageContent struct {
868	Text                  string `json:"message_text"`
869	ParseMode             string `json:"parse_mode"`
870	DisableWebPagePreview bool   `json:"disable_web_page_preview"`
871}
872
873// InputLocationMessageContent contains a location for displaying
874// as an inline query result.
875type InputLocationMessageContent struct {
876	Latitude  float64 `json:"latitude"`
877	Longitude float64 `json:"longitude"`
878}
879
880// InputVenueMessageContent contains a venue for displaying
881// as an inline query result.
882type InputVenueMessageContent struct {
883	Latitude     float64 `json:"latitude"`
884	Longitude    float64 `json:"longitude"`
885	Title        string  `json:"title"`
886	Address      string  `json:"address"`
887	FoursquareID string  `json:"foursquare_id"`
888}
889
890// InputContactMessageContent contains a contact for displaying
891// as an inline query result.
892type InputContactMessageContent struct {
893	PhoneNumber string `json:"phone_number"`
894	FirstName   string `json:"first_name"`
895	LastName    string `json:"last_name"`
896}
897
898// Invoice contains basic information about an invoice.
899type Invoice struct {
900	Title          string `json:"title"`
901	Description    string `json:"description"`
902	StartParameter string `json:"start_parameter"`
903	Currency       string `json:"currency"`
904	TotalAmount    int    `json:"total_amount"`
905}
906
907// LabeledPrice represents a portion of the price for goods or services.
908type LabeledPrice struct {
909	Label  string `json:"label"`
910	Amount int    `json:"amount"`
911}
912
913// ShippingAddress represents a shipping address.
914type ShippingAddress struct {
915	CountryCode string `json:"country_code"`
916	State       string `json:"state"`
917	City        string `json:"city"`
918	StreetLine1 string `json:"street_line1"`
919	StreetLine2 string `json:"street_line2"`
920	PostCode    string `json:"post_code"`
921}
922
923// OrderInfo represents information about an order.
924type OrderInfo struct {
925	Name            string           `json:"name,omitempty"`
926	PhoneNumber     string           `json:"phone_number,omitempty"`
927	Email           string           `json:"email,omitempty"`
928	ShippingAddress *ShippingAddress `json:"shipping_address,omitempty"`
929}
930
931// ShippingOption represents one shipping option.
932type ShippingOption struct {
933	ID     string          `json:"id"`
934	Title  string          `json:"title"`
935	Prices *[]LabeledPrice `json:"prices"`
936}
937
938// SuccessfulPayment contains basic information about a successful payment.
939type SuccessfulPayment struct {
940	Currency                string     `json:"currency"`
941	TotalAmount             int        `json:"total_amount"`
942	InvoicePayload          string     `json:"invoice_payload"`
943	ShippingOptionID        string     `json:"shipping_option_id,omitempty"`
944	OrderInfo               *OrderInfo `json:"order_info,omitempty"`
945	TelegramPaymentChargeID string     `json:"telegram_payment_charge_id"`
946	ProviderPaymentChargeID string     `json:"provider_payment_charge_id"`
947}
948
949// ShippingQuery contains information about an incoming shipping query.
950type ShippingQuery struct {
951	ID              string           `json:"id"`
952	From            *User            `json:"from"`
953	InvoicePayload  string           `json:"invoice_payload"`
954	ShippingAddress *ShippingAddress `json:"shipping_address"`
955}
956
957// PreCheckoutQuery contains information about an incoming pre-checkout query.
958type PreCheckoutQuery struct {
959	ID               string     `json:"id"`
960	From             *User      `json:"from"`
961	Currency         string     `json:"currency"`
962	TotalAmount      int        `json:"total_amount"`
963	InvoicePayload   string     `json:"invoice_payload"`
964	ShippingOptionID string     `json:"shipping_option_id,omitempty"`
965	OrderInfo        *OrderInfo `json:"order_info,omitempty"`
966}
967
968// Error is an error containing extra information returned by the Telegram API.
969type Error struct {
970	Code    int
971	Message string
972	ResponseParameters
973}
974
975func (e Error) Error() string {
976	return e.Message
977}