2015-06-26 06:26:24 +02:00
|
|
|
package tgbotapi
|
2015-06-25 18:25:02 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2016-04-14 00:06:18 +02:00
|
|
|
"errors"
|
2015-09-19 17:53:32 +02:00
|
|
|
"fmt"
|
2016-04-12 15:28:46 +02:00
|
|
|
"net/url"
|
2015-11-21 15:26:28 +01:00
|
|
|
"strings"
|
2015-11-21 15:39:19 +01:00
|
|
|
"time"
|
2015-06-25 18:25:02 +02:00
|
|
|
)
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// APIResponse is a response from the Telegram API with the result
|
|
|
|
// stored raw.
|
2015-06-26 08:53:20 +02:00
|
|
|
type APIResponse struct {
|
2016-10-03 17:47:19 +02:00
|
|
|
Ok bool `json:"ok"`
|
|
|
|
Result json.RawMessage `json:"result"`
|
|
|
|
ErrorCode int `json:"error_code"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Parameters *ResponseParameters `json:"parameters"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResponseParameters are various errors that can be returned in APIResponse.
|
|
|
|
type ResponseParameters struct {
|
2016-11-25 06:50:35 +01:00
|
|
|
MigrateToChatID int64 `json:"migrate_to_chat_id"` // optional
|
|
|
|
RetryAfter int `json:"retry_after"` // optional
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2015-06-26 08:53:20 +02:00
|
|
|
// Update is an update response, from GetUpdates.
|
2015-06-25 18:25:02 +02:00
|
|
|
type Update struct {
|
2016-04-13 15:22:58 +02:00
|
|
|
UpdateID int `json:"update_id"`
|
|
|
|
Message *Message `json:"message"`
|
2016-05-22 16:37:43 +02:00
|
|
|
EditedMessage *Message `json:"edited_message"`
|
2016-11-25 06:50:35 +01:00
|
|
|
ChannelPost *Message `json:"channel_post"`
|
|
|
|
EditedChannelPost *Message `json:"edited_channel_post"`
|
2016-04-13 15:22:58 +02:00
|
|
|
InlineQuery *InlineQuery `json:"inline_query"`
|
|
|
|
ChosenInlineResult *ChosenInlineResult `json:"chosen_inline_result"`
|
|
|
|
CallbackQuery *CallbackQuery `json:"callback_query"`
|
2017-06-02 22:18:42 +02:00
|
|
|
ShippingQuery *ShippingQuery `json:"shipping_query"`
|
|
|
|
PreCheckoutQuery *PreCheckoutQuery `json:"pre_checkout_query"`
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2017-01-26 18:43:28 +01:00
|
|
|
// UpdatesChannel is the channel for getting updates.
|
|
|
|
type UpdatesChannel <-chan Update
|
2016-12-15 22:51:58 +01:00
|
|
|
|
2017-01-26 18:43:28 +01:00
|
|
|
// Clear discards all unprocessed incoming updates.
|
|
|
|
func (ch UpdatesChannel) Clear() {
|
2016-12-15 22:51:58 +01:00
|
|
|
for len(ch) != 0 {
|
|
|
|
<-ch
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// User is a user on Telegram.
|
2015-06-25 18:25:02 +02:00
|
|
|
type User struct {
|
2017-05-22 10:10:04 +02:00
|
|
|
ID int `json:"id"`
|
|
|
|
FirstName string `json:"first_name"`
|
|
|
|
LastName string `json:"last_name"` // optional
|
|
|
|
UserName string `json:"username"` // optional
|
|
|
|
LanguageCode string `json:"language_code"` // optional
|
2017-11-09 16:41:22 +01:00
|
|
|
IsBot bool `json:"is_bot"` // optional
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2015-07-31 09:22:01 +02:00
|
|
|
// String displays a simple text version of a user.
|
2016-01-03 23:54:24 +01:00
|
|
|
//
|
|
|
|
// It is normally a user's username, but falls back to a first/last
|
|
|
|
// name as available.
|
2015-07-31 09:22:01 +02:00
|
|
|
func (u *User) String() string {
|
2020-05-22 10:42:19 +02:00
|
|
|
if u == nil {
|
|
|
|
return ""
|
|
|
|
}
|
2015-07-31 09:22:01 +02:00
|
|
|
if u.UserName != "" {
|
|
|
|
return u.UserName
|
|
|
|
}
|
|
|
|
|
|
|
|
name := u.FirstName
|
|
|
|
if u.LastName != "" {
|
|
|
|
name += " " + u.LastName
|
|
|
|
}
|
|
|
|
|
|
|
|
return name
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// GroupChat is a group chat.
|
2015-06-25 18:25:02 +02:00
|
|
|
type GroupChat struct {
|
2015-06-26 08:53:20 +02:00
|
|
|
ID int `json:"id"`
|
2015-06-25 18:25:02 +02:00
|
|
|
Title string `json:"title"`
|
|
|
|
}
|
|
|
|
|
2017-06-30 15:29:59 +02:00
|
|
|
// ChatPhoto represents a chat photo.
|
|
|
|
type ChatPhoto struct {
|
|
|
|
SmallFileID string `json:"small_file_id"`
|
|
|
|
BigFileID string `json:"big_file_id"`
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// Chat contains information about the place a message was sent.
|
2015-10-09 16:26:38 +02:00
|
|
|
type Chat struct {
|
2017-06-30 15:31:54 +02:00
|
|
|
ID int64 `json:"id"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Title string `json:"title"` // optional
|
|
|
|
UserName string `json:"username"` // optional
|
|
|
|
FirstName string `json:"first_name"` // optional
|
|
|
|
LastName string `json:"last_name"` // optional
|
|
|
|
AllMembersAreAdmins bool `json:"all_members_are_administrators"` // optional
|
|
|
|
Photo *ChatPhoto `json:"photo"`
|
|
|
|
Description string `json:"description,omitempty"` // optional
|
|
|
|
InviteLink string `json:"invite_link,omitempty"` // optional
|
2019-02-12 20:00:57 +01:00
|
|
|
PinnedMessage *Message `json:"pinned_message"` // optional
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// IsPrivate returns if the Chat is a private conversation.
|
2016-05-22 17:16:28 +02:00
|
|
|
func (c Chat) IsPrivate() bool {
|
2015-10-09 16:31:00 +02:00
|
|
|
return c.Type == "private"
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// IsGroup returns if the Chat is a group.
|
2016-05-22 17:16:28 +02:00
|
|
|
func (c Chat) IsGroup() bool {
|
2015-10-09 16:31:00 +02:00
|
|
|
return c.Type == "group"
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// IsSuperGroup returns if the Chat is a supergroup.
|
2016-05-22 17:16:28 +02:00
|
|
|
func (c Chat) IsSuperGroup() bool {
|
2015-12-10 03:08:37 +01:00
|
|
|
return c.Type == "supergroup"
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// IsChannel returns if the Chat is a channel.
|
2016-05-22 17:16:28 +02:00
|
|
|
func (c Chat) IsChannel() bool {
|
2015-10-09 16:31:00 +02:00
|
|
|
return c.Type == "channel"
|
|
|
|
}
|
|
|
|
|
2016-05-22 17:16:28 +02:00
|
|
|
// ChatConfig returns a ChatConfig struct for chat related methods.
|
|
|
|
func (c Chat) ChatConfig() ChatConfig {
|
|
|
|
return ChatConfig{ChatID: c.ID}
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// Message is returned by almost every request, and contains data about
|
|
|
|
// almost anything.
|
2015-06-25 18:25:02 +02:00
|
|
|
type Message struct {
|
2020-10-18 23:09:50 +02:00
|
|
|
// MessageID is a unique message identifier inside this chat
|
|
|
|
MessageID int `json:"message_id"`
|
|
|
|
// From is a sender, empty for messages sent to channels;
|
|
|
|
// optional
|
|
|
|
From *User `json:"from"`
|
|
|
|
// Date of the message was sent in Unix time
|
|
|
|
Date int `json:"date"`
|
|
|
|
// Chat is the conversation the message belongs to
|
|
|
|
Chat *Chat `json:"chat"`
|
|
|
|
// ForwardFrom for forwarded messages, sender of the original message;
|
|
|
|
// optional
|
|
|
|
ForwardFrom *User `json:"forward_from"`
|
|
|
|
// ForwardFromChat for messages forwarded from channels,
|
|
|
|
// information about the original channel;
|
|
|
|
// optional
|
|
|
|
ForwardFromChat *Chat `json:"forward_from_chat"`
|
|
|
|
// ForwardFromMessageID for messages forwarded from channels,
|
|
|
|
// identifier of the original message in the channel;
|
|
|
|
// optional
|
|
|
|
ForwardFromMessageID int `json:"forward_from_message_id"`
|
|
|
|
// ForwardDate for forwarded messages, date the original message was sent in Unix time;
|
|
|
|
// optional
|
|
|
|
ForwardDate int `json:"forward_date"`
|
|
|
|
// ReplyToMessage for replies, the original message.
|
|
|
|
// Note that the Message object in this field will not contain further ReplyToMessage fields
|
|
|
|
// even if it itself is a reply;
|
|
|
|
// optional
|
|
|
|
ReplyToMessage *Message `json:"reply_to_message"`
|
|
|
|
// ViaBot through which the message was sent;
|
|
|
|
// optional
|
|
|
|
ViaBot *User `json:"via_bot"`
|
|
|
|
// EditDate of the message was last edited in Unix time;
|
|
|
|
// optional
|
|
|
|
EditDate int `json:"edit_date"`
|
|
|
|
// MediaGroupID is the unique identifier of a media message group this message belongs to;
|
|
|
|
// optional
|
|
|
|
MediaGroupID string `json:"media_group_id"`
|
|
|
|
// AuthorSignature is the signature of the post author for messages in channels;
|
|
|
|
// optional
|
|
|
|
AuthorSignature string `json:"author_signature"`
|
|
|
|
// Text is for text messages, the actual UTF-8 text of the message, 0-4096 characters;
|
|
|
|
// optional
|
|
|
|
Text string `json:"text"`
|
|
|
|
// Entities is for text messages, special entities like usernames,
|
|
|
|
// URLs, bot commands, etc. that appear in the text;
|
|
|
|
// optional
|
|
|
|
Entities *[]MessageEntity `json:"entities"`
|
|
|
|
// CaptionEntities;
|
|
|
|
// optional
|
|
|
|
CaptionEntities *[]MessageEntity `json:"caption_entities"`
|
|
|
|
// Audio message is an audio file, information about the file;
|
|
|
|
// optional
|
|
|
|
Audio *Audio `json:"audio"`
|
|
|
|
// Document message is a general file, information about the file;
|
|
|
|
// optional
|
|
|
|
Document *Document `json:"document"`
|
|
|
|
// Animation message is an animation, information about the animation.
|
|
|
|
// For backward compatibility, when this field is set, the document field will also be set;
|
|
|
|
// optional
|
|
|
|
Animation *ChatAnimation `json:"animation"`
|
|
|
|
// Game message is a game, information about the game;
|
|
|
|
// optional
|
|
|
|
Game *Game `json:"game"`
|
|
|
|
// Photo message is a photo, available sizes of the photo;
|
|
|
|
// optional
|
|
|
|
Photo *[]PhotoSize `json:"photo"`
|
|
|
|
// Sticker message is a sticker, information about the sticker;
|
|
|
|
// optional
|
|
|
|
Sticker *Sticker `json:"sticker"`
|
|
|
|
// Video message is a video, information about the video;
|
|
|
|
// optional
|
|
|
|
Video *Video `json:"video"`
|
|
|
|
// VideoNote message is a video note, information about the video message;
|
|
|
|
// optional
|
|
|
|
VideoNote *VideoNote `json:"video_note"`
|
|
|
|
// Voice message is a voice message, information about the file;
|
|
|
|
// optional
|
|
|
|
Voice *Voice `json:"voice"`
|
|
|
|
// Caption for the animation, audio, document, photo, video or voice, 0-1024 characters;
|
|
|
|
// optional
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
// Contact message is a shared contact, information about the contact;
|
|
|
|
// optional
|
|
|
|
Contact *Contact `json:"contact"`
|
|
|
|
// Location message is a shared location, information about the location;
|
|
|
|
// optional
|
|
|
|
Location *Location `json:"location"`
|
|
|
|
// Venue message is a venue, information about the venue.
|
|
|
|
// For backward compatibility, when this field is set, the location field will also be set;
|
|
|
|
// optional
|
|
|
|
Venue *Venue `json:"venue"`
|
|
|
|
// NewChatMembers that were added to the group or supergroup
|
|
|
|
// and information about them (the bot itself may be one of these members);
|
|
|
|
// optional
|
|
|
|
NewChatMembers *[]User `json:"new_chat_members"`
|
|
|
|
// LeftChatMember is a member was removed from the group,
|
|
|
|
// information about them (this member may be the bot itself);
|
|
|
|
// optional
|
|
|
|
LeftChatMember *User `json:"left_chat_member"`
|
|
|
|
// NewChatTitle is a chat title was changed to this value;
|
|
|
|
// optional
|
|
|
|
NewChatTitle string `json:"new_chat_title"`
|
|
|
|
// NewChatPhoto is a chat photo was change to this value;
|
|
|
|
// optional
|
|
|
|
NewChatPhoto *[]PhotoSize `json:"new_chat_photo"`
|
|
|
|
// DeleteChatPhoto is a service message: the chat photo was deleted;
|
|
|
|
// optional
|
|
|
|
DeleteChatPhoto bool `json:"delete_chat_photo"`
|
|
|
|
// GroupChatCreated is a service message: the group has been created;
|
|
|
|
// optional
|
|
|
|
GroupChatCreated bool `json:"group_chat_created"`
|
|
|
|
// SuperGroupChatCreated is a service message: the supergroup has been created.
|
|
|
|
// This field can't be received in a message coming through updates,
|
|
|
|
// because bot can't be a member of a supergroup when it is created.
|
|
|
|
// It can only be found in ReplyToMessage if someone replies to a very first message
|
|
|
|
// in a directly created supergroup;
|
|
|
|
// optional
|
|
|
|
SuperGroupChatCreated bool `json:"supergroup_chat_created"`
|
|
|
|
// ChannelChatCreated is a service message: the channel has been created.
|
|
|
|
// This field can't be received in a message coming through updates,
|
|
|
|
// because bot can't be a member of a channel when it is created.
|
|
|
|
// It can only be found in ReplyToMessage
|
|
|
|
// if someone replies to a very first message in a channel;
|
|
|
|
// optional
|
|
|
|
ChannelChatCreated bool `json:"channel_chat_created"`
|
|
|
|
// MigrateToChatID is the group has been migrated to a supergroup with the specified identifier.
|
|
|
|
// This number may be greater than 32 bits and some programming languages
|
|
|
|
// may have difficulty/silent defects in interpreting it.
|
|
|
|
// But it is smaller than 52 bits, so a signed 64 bit integer
|
|
|
|
// or double-precision float type are safe for storing this identifier;
|
|
|
|
// optional
|
|
|
|
MigrateToChatID int64 `json:"migrate_to_chat_id"`
|
|
|
|
// MigrateFromChatID is the supergroup has been migrated from a group with the specified identifier.
|
|
|
|
// This number may be greater than 32 bits and some programming languages
|
|
|
|
// may have difficulty/silent defects in interpreting it.
|
|
|
|
// But it is smaller than 52 bits, so a signed 64 bit integer
|
|
|
|
// or double-precision float type are safe for storing this identifier;
|
|
|
|
// optional
|
|
|
|
MigrateFromChatID int64 `json:"migrate_from_chat_id"`
|
|
|
|
// PinnedMessage is a specified message was pinned.
|
|
|
|
// Note that the Message object in this field will not contain further ReplyToMessage
|
|
|
|
// fields even if it is itself a reply;
|
|
|
|
// optional
|
|
|
|
PinnedMessage *Message `json:"pinned_message"`
|
|
|
|
// Invoice message is an invoice for a payment;
|
|
|
|
// optional
|
|
|
|
Invoice *Invoice `json:"invoice"`
|
|
|
|
// SuccessfulPayment message is a service message about a successful payment,
|
|
|
|
// information about the payment;
|
|
|
|
// optional
|
|
|
|
SuccessfulPayment *SuccessfulPayment `json:"successful_payment"`
|
|
|
|
// PassportData is a Telegram Passport data;
|
|
|
|
// optional
|
|
|
|
PassportData *PassportData `json:"passport_data,omitempty"`
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2015-07-31 19:40:42 +02:00
|
|
|
// Time converts the message timestamp into a Time.
|
|
|
|
func (m *Message) Time() time.Time {
|
|
|
|
return time.Unix(int64(m.Date), 0)
|
|
|
|
}
|
|
|
|
|
2017-10-07 16:51:53 +02:00
|
|
|
// IsCommand returns true if message starts with a "bot_command" entity.
|
2015-11-21 14:43:39 +01:00
|
|
|
func (m *Message) IsCommand() bool {
|
2017-10-07 16:51:53 +02:00
|
|
|
if m.Entities == nil || len(*m.Entities) == 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
entity := (*m.Entities)[0]
|
2019-01-10 12:40:12 +01:00
|
|
|
return entity.Offset == 0 && entity.IsCommand()
|
2015-11-21 14:43:39 +01:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// Command checks if the message was a command and if it was, returns the
|
|
|
|
// command. If the Message was not a command, it returns an empty string.
|
2016-01-04 18:45:46 +01:00
|
|
|
//
|
2017-10-07 16:51:53 +02:00
|
|
|
// If the command contains the at name syntax, it is removed. Use
|
|
|
|
// CommandWithAt() if you do not want that.
|
2015-11-21 15:26:28 +01:00
|
|
|
func (m *Message) Command() string {
|
2017-10-07 16:51:53 +02:00
|
|
|
command := m.CommandWithAt()
|
2016-01-04 18:45:46 +01:00
|
|
|
|
|
|
|
if i := strings.Index(command, "@"); i != -1 {
|
|
|
|
command = command[:i]
|
|
|
|
}
|
|
|
|
|
|
|
|
return command
|
2015-12-13 18:31:59 +01:00
|
|
|
}
|
|
|
|
|
2017-10-07 16:51:53 +02:00
|
|
|
// CommandWithAt checks if the message was a command and if it was, returns the
|
|
|
|
// command. If the Message was not a command, it returns an empty string.
|
|
|
|
//
|
|
|
|
// If the command contains the at name syntax, it is not removed. Use Command()
|
|
|
|
// if you want that.
|
|
|
|
func (m *Message) CommandWithAt() string {
|
|
|
|
if !m.IsCommand() {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsCommand() checks that the message begins with a bot_command entity
|
|
|
|
entity := (*m.Entities)[0]
|
|
|
|
return m.Text[1:entity.Length]
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// CommandArguments checks if the message was a command and if it was,
|
|
|
|
// returns all text after the command name. If the Message was not a
|
|
|
|
// command, it returns an empty string.
|
2017-10-07 16:51:53 +02:00
|
|
|
//
|
|
|
|
// Note: The first character after the command name is omitted:
|
|
|
|
// - "/foo bar baz" yields "bar baz", not " bar baz"
|
|
|
|
// - "/foo-bar baz" yields "bar baz", too
|
|
|
|
// Even though the latter is not a command conforming to the spec, the API
|
|
|
|
// marks "/foo" as command entity.
|
2015-12-13 18:31:59 +01:00
|
|
|
func (m *Message) CommandArguments() string {
|
2016-01-03 23:54:24 +01:00
|
|
|
if !m.IsCommand() {
|
|
|
|
return ""
|
2015-12-13 18:31:59 +01:00
|
|
|
}
|
2016-01-03 23:54:24 +01:00
|
|
|
|
2017-10-07 16:51:53 +02:00
|
|
|
// IsCommand() checks that the message begins with a bot_command entity
|
|
|
|
entity := (*m.Entities)[0]
|
|
|
|
if len(m.Text) == entity.Length {
|
|
|
|
return "" // The command makes up the whole message
|
2016-01-03 23:54:24 +01:00
|
|
|
}
|
2018-03-26 18:54:02 +02:00
|
|
|
|
|
|
|
return m.Text[entity.Length+1:]
|
2015-11-21 15:26:28 +01:00
|
|
|
}
|
|
|
|
|
2016-04-12 15:28:46 +02:00
|
|
|
// MessageEntity contains information about data in a Message.
|
|
|
|
type MessageEntity struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Offset int `json:"offset"`
|
|
|
|
Length int `json:"length"`
|
2016-05-22 16:37:43 +02:00
|
|
|
URL string `json:"url"` // optional
|
|
|
|
User *User `json:"user"` // optional
|
2016-04-12 15:28:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ParseURL attempts to parse a URL contained within a MessageEntity.
|
2019-01-10 12:40:12 +01:00
|
|
|
func (e MessageEntity) ParseURL() (*url.URL, error) {
|
|
|
|
if e.URL == "" {
|
2016-04-14 00:06:18 +02:00
|
|
|
return nil, errors.New(ErrBadURL)
|
|
|
|
}
|
|
|
|
|
2019-01-10 12:40:12 +01:00
|
|
|
return url.Parse(e.URL)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsMention returns true if the type of the message entity is "mention" (@username).
|
|
|
|
func (e MessageEntity) IsMention() bool {
|
|
|
|
return e.Type == "mention"
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsHashtag returns true if the type of the message entity is "hashtag".
|
|
|
|
func (e MessageEntity) IsHashtag() bool {
|
|
|
|
return e.Type == "hashtag"
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsCommand returns true if the type of the message entity is "bot_command".
|
|
|
|
func (e MessageEntity) IsCommand() bool {
|
|
|
|
return e.Type == "bot_command"
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsUrl returns true if the type of the message entity is "url".
|
|
|
|
func (e MessageEntity) IsUrl() bool {
|
|
|
|
return e.Type == "url"
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsEmail returns true if the type of the message entity is "email".
|
|
|
|
func (e MessageEntity) IsEmail() bool {
|
|
|
|
return e.Type == "email"
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsBold returns true if the type of the message entity is "bold" (bold text).
|
|
|
|
func (e MessageEntity) IsBold() bool {
|
|
|
|
return e.Type == "bold"
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsItalic returns true if the type of the message entity is "italic" (italic text).
|
|
|
|
func (e MessageEntity) IsItalic() bool {
|
|
|
|
return e.Type == "italic"
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsCode returns true if the type of the message entity is "code" (monowidth string).
|
|
|
|
func (e MessageEntity) IsCode() bool {
|
|
|
|
return e.Type == "code"
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsPre returns true if the type of the message entity is "pre" (monowidth block).
|
|
|
|
func (e MessageEntity) IsPre() bool {
|
|
|
|
return e.Type == "pre"
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsTextLink returns true if the type of the message entity is "text_link" (clickable text URL).
|
|
|
|
func (e MessageEntity) IsTextLink() bool {
|
|
|
|
return e.Type == "text_link"
|
2016-04-12 15:28:46 +02:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// PhotoSize contains information about photos.
|
2015-06-25 18:25:02 +02:00
|
|
|
type PhotoSize struct {
|
2015-06-26 08:53:20 +02:00
|
|
|
FileID string `json:"file_id"`
|
2015-06-25 18:25:02 +02:00
|
|
|
Width int `json:"width"`
|
|
|
|
Height int `json:"height"`
|
2016-01-03 23:54:24 +01:00
|
|
|
FileSize int `json:"file_size"` // optional
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// Audio contains information about audio.
|
2015-06-25 18:25:02 +02:00
|
|
|
type Audio struct {
|
2015-08-18 03:40:42 +02:00
|
|
|
FileID string `json:"file_id"`
|
|
|
|
Duration int `json:"duration"`
|
2016-01-03 23:54:24 +01:00
|
|
|
Performer string `json:"performer"` // optional
|
|
|
|
Title string `json:"title"` // optional
|
|
|
|
MimeType string `json:"mime_type"` // optional
|
|
|
|
FileSize int `json:"file_size"` // optional
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// Document contains information about a document.
|
2015-06-25 18:25:02 +02:00
|
|
|
type Document struct {
|
2016-04-13 15:22:58 +02:00
|
|
|
FileID string `json:"file_id"`
|
|
|
|
Thumbnail *PhotoSize `json:"thumb"` // optional
|
|
|
|
FileName string `json:"file_name"` // optional
|
|
|
|
MimeType string `json:"mime_type"` // optional
|
|
|
|
FileSize int `json:"file_size"` // optional
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// Sticker contains information about a sticker.
|
2015-06-25 18:25:02 +02:00
|
|
|
type Sticker struct {
|
2020-01-24 05:41:44 +01:00
|
|
|
FileUniqueID string `json:"file_unique_id"`
|
|
|
|
FileID string `json:"file_id"`
|
|
|
|
Width int `json:"width"`
|
|
|
|
Height int `json:"height"`
|
|
|
|
Thumbnail *PhotoSize `json:"thumb"` // optional
|
|
|
|
Emoji string `json:"emoji"` // optional
|
|
|
|
FileSize int `json:"file_size"` // optional
|
|
|
|
SetName string `json:"set_name"` // optional
|
|
|
|
IsAnimated bool `json:"is_animated"` // optional
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2020-03-31 08:02:18 +02:00
|
|
|
// StickerSet contains information about an sticker set.
|
2020-01-30 04:58:02 +01:00
|
|
|
type StickerSet struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
IsAnimated bool `json:"is_animated"`
|
|
|
|
ContainsMasks bool `json:"contains_masks"`
|
|
|
|
Stickers []Sticker `json:"stickers"`
|
|
|
|
}
|
|
|
|
|
2018-09-06 14:44:42 +02:00
|
|
|
// ChatAnimation contains information about an animation.
|
|
|
|
type ChatAnimation struct {
|
|
|
|
FileID string `json:"file_id"`
|
|
|
|
Width int `json:"width"`
|
|
|
|
Height int `json:"height"`
|
|
|
|
Duration int `json:"duration"`
|
|
|
|
Thumbnail *PhotoSize `json:"thumb"` // optional
|
|
|
|
FileName string `json:"file_name"` // optional
|
|
|
|
MimeType string `json:"mime_type"` // optional
|
|
|
|
FileSize int `json:"file_size"` // optional
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// Video contains information about a video.
|
2015-06-25 18:25:02 +02:00
|
|
|
type Video struct {
|
2016-04-13 15:22:58 +02:00
|
|
|
FileID string `json:"file_id"`
|
|
|
|
Width int `json:"width"`
|
|
|
|
Height int `json:"height"`
|
|
|
|
Duration int `json:"duration"`
|
|
|
|
Thumbnail *PhotoSize `json:"thumb"` // optional
|
|
|
|
MimeType string `json:"mime_type"` // optional
|
|
|
|
FileSize int `json:"file_size"` // optional
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2017-05-22 00:04:12 +02:00
|
|
|
// VideoNote contains information about a video.
|
|
|
|
type VideoNote struct {
|
|
|
|
FileID string `json:"file_id"`
|
|
|
|
Length int `json:"length"`
|
|
|
|
Duration int `json:"duration"`
|
|
|
|
Thumbnail *PhotoSize `json:"thumb"` // optional
|
|
|
|
FileSize int `json:"file_size"` // optional
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// Voice contains information about a voice.
|
2015-08-18 03:40:42 +02:00
|
|
|
type Voice struct {
|
|
|
|
FileID string `json:"file_id"`
|
|
|
|
Duration int `json:"duration"`
|
2016-01-03 23:54:24 +01:00
|
|
|
MimeType string `json:"mime_type"` // optional
|
|
|
|
FileSize int `json:"file_size"` // optional
|
2015-08-18 03:40:42 +02:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// Contact contains information about a contact.
|
|
|
|
//
|
|
|
|
// Note that LastName and UserID may be empty.
|
2015-06-25 18:25:02 +02:00
|
|
|
type Contact struct {
|
|
|
|
PhoneNumber string `json:"phone_number"`
|
|
|
|
FirstName string `json:"first_name"`
|
2016-01-03 23:54:24 +01:00
|
|
|
LastName string `json:"last_name"` // optional
|
|
|
|
UserID int `json:"user_id"` // optional
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// Location contains information about a place.
|
2015-06-25 18:25:02 +02:00
|
|
|
type Location struct {
|
2016-04-14 20:28:38 +02:00
|
|
|
Longitude float64 `json:"longitude"`
|
|
|
|
Latitude float64 `json:"latitude"`
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2016-04-12 15:28:46 +02:00
|
|
|
// Venue contains information about a venue, including its Location.
|
|
|
|
type Venue struct {
|
|
|
|
Location Location `json:"location"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Address string `json:"address"`
|
|
|
|
FoursquareID string `json:"foursquare_id"` // optional
|
|
|
|
}
|
|
|
|
|
2016-02-28 17:13:44 +01:00
|
|
|
// UserProfilePhotos contains a set of user profile photos.
|
2015-06-25 18:25:02 +02:00
|
|
|
type UserProfilePhotos struct {
|
2016-04-09 22:30:16 +02:00
|
|
|
TotalCount int `json:"total_count"`
|
|
|
|
Photos [][]PhotoSize `json:"photos"`
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// File contains information about a file to download from Telegram.
|
2015-09-19 17:46:20 +02:00
|
|
|
type File struct {
|
|
|
|
FileID string `json:"file_id"`
|
2016-01-03 23:54:24 +01:00
|
|
|
FileSize int `json:"file_size"` // optional
|
|
|
|
FilePath string `json:"file_path"` // optional
|
2015-09-19 17:46:20 +02:00
|
|
|
}
|
|
|
|
|
2015-09-19 17:53:32 +02:00
|
|
|
// Link returns a full path to the download URL for a File.
|
|
|
|
//
|
|
|
|
// It requires the Bot Token to create the link.
|
|
|
|
func (f *File) Link(token string) string {
|
2015-09-19 20:42:50 +02:00
|
|
|
return fmt.Sprintf(FileEndpoint, token, f.FilePath)
|
2015-09-19 17:53:32 +02:00
|
|
|
}
|
|
|
|
|
2015-06-26 08:53:20 +02:00
|
|
|
// ReplyKeyboardMarkup allows the Bot to set a custom keyboard.
|
2015-06-25 18:25:02 +02:00
|
|
|
type ReplyKeyboardMarkup struct {
|
2016-04-12 15:28:46 +02:00
|
|
|
Keyboard [][]KeyboardButton `json:"keyboard"`
|
|
|
|
ResizeKeyboard bool `json:"resize_keyboard"` // optional
|
|
|
|
OneTimeKeyboard bool `json:"one_time_keyboard"` // optional
|
|
|
|
Selective bool `json:"selective"` // optional
|
|
|
|
}
|
|
|
|
|
|
|
|
// KeyboardButton is a button within a custom keyboard.
|
|
|
|
type KeyboardButton struct {
|
|
|
|
Text string `json:"text"`
|
|
|
|
RequestContact bool `json:"request_contact"`
|
|
|
|
RequestLocation bool `json:"request_location"`
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2015-06-26 08:53:20 +02:00
|
|
|
// ReplyKeyboardHide allows the Bot to hide a custom keyboard.
|
2015-06-25 18:25:02 +02:00
|
|
|
type ReplyKeyboardHide struct {
|
|
|
|
HideKeyboard bool `json:"hide_keyboard"`
|
2016-01-03 23:54:24 +01:00
|
|
|
Selective bool `json:"selective"` // optional
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
|
|
|
|
2016-11-25 06:50:35 +01:00
|
|
|
// ReplyKeyboardRemove allows the Bot to hide a custom keyboard.
|
|
|
|
type ReplyKeyboardRemove struct {
|
|
|
|
RemoveKeyboard bool `json:"remove_keyboard"`
|
|
|
|
Selective bool `json:"selective"`
|
|
|
|
}
|
|
|
|
|
2016-04-12 15:28:46 +02:00
|
|
|
// InlineKeyboardMarkup is a custom keyboard presented for an inline bot.
|
|
|
|
type InlineKeyboardMarkup struct {
|
|
|
|
InlineKeyboard [][]InlineKeyboardButton `json:"inline_keyboard"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// InlineKeyboardButton is a button within a custom keyboard for
|
|
|
|
// inline query responses.
|
|
|
|
//
|
|
|
|
// Note that some values are references as even an empty string
|
|
|
|
// will change behavior.
|
2016-10-03 17:47:19 +02:00
|
|
|
//
|
|
|
|
// CallbackGame, if set, MUST be first button in first row.
|
2016-04-12 15:28:46 +02:00
|
|
|
type InlineKeyboardButton struct {
|
2016-10-03 17:47:19 +02:00
|
|
|
Text string `json:"text"`
|
2016-12-26 15:59:52 +01:00
|
|
|
URL *string `json:"url,omitempty"` // optional
|
|
|
|
CallbackData *string `json:"callback_data,omitempty"` // optional
|
|
|
|
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
|
2018-03-04 12:10:17 +01:00
|
|
|
Pay bool `json:"pay,omitempty"` // optional
|
2016-04-12 15:28:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CallbackQuery is data sent when a keyboard button with callback data
|
|
|
|
// is clicked.
|
|
|
|
type CallbackQuery struct {
|
2016-04-13 15:22:58 +02:00
|
|
|
ID string `json:"id"`
|
|
|
|
From *User `json:"from"`
|
|
|
|
Message *Message `json:"message"` // optional
|
|
|
|
InlineMessageID string `json:"inline_message_id"` // optional
|
2016-10-03 17:47:19 +02:00
|
|
|
ChatInstance string `json:"chat_instance"`
|
|
|
|
Data string `json:"data"` // optional
|
|
|
|
GameShortName string `json:"game_short_name"` // optional
|
2016-04-12 15:28:46 +02:00
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// ForceReply allows the Bot to have users directly reply to it without
|
|
|
|
// additional interaction.
|
2015-06-25 18:25:02 +02:00
|
|
|
type ForceReply struct {
|
|
|
|
ForceReply bool `json:"force_reply"`
|
2016-01-03 23:54:24 +01:00
|
|
|
Selective bool `json:"selective"` // optional
|
2015-06-25 18:25:02 +02:00
|
|
|
}
|
2016-01-01 07:10:19 +01:00
|
|
|
|
2016-05-22 17:16:28 +02:00
|
|
|
// ChatMember is information about a member in a chat.
|
|
|
|
type ChatMember struct {
|
2017-06-30 15:22:57 +02:00
|
|
|
User *User `json:"user"`
|
|
|
|
Status string `json:"status"`
|
2020-08-10 23:17:07 +02:00
|
|
|
CustomTitle string `json:"custom_title,omitempty"` // optional
|
2017-06-30 15:22:57 +02:00
|
|
|
UntilDate int64 `json:"until_date,omitempty"` // optional
|
|
|
|
CanBeEdited bool `json:"can_be_edited,omitempty"` // optional
|
|
|
|
CanChangeInfo bool `json:"can_change_info,omitempty"` // optional
|
|
|
|
CanPostMessages bool `json:"can_post_messages,omitempty"` // optional
|
|
|
|
CanEditMessages bool `json:"can_edit_messages,omitempty"` // optional
|
|
|
|
CanDeleteMessages bool `json:"can_delete_messages,omitempty"` // optional
|
|
|
|
CanInviteUsers bool `json:"can_invite_users,omitempty"` // optional
|
|
|
|
CanRestrictMembers bool `json:"can_restrict_members,omitempty"` // optional
|
|
|
|
CanPinMessages bool `json:"can_pin_messages,omitempty"` // optional
|
|
|
|
CanPromoteMembers bool `json:"can_promote_members,omitempty"` // optional
|
|
|
|
CanSendMessages bool `json:"can_send_messages,omitempty"` // optional
|
|
|
|
CanSendMediaMessages bool `json:"can_send_media_messages,omitempty"` // optional
|
|
|
|
CanSendOtherMessages bool `json:"can_send_other_messages,omitempty"` // optional
|
|
|
|
CanAddWebPagePreviews bool `json:"can_add_web_page_previews,omitempty"` // optional
|
2016-05-22 17:16:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsCreator returns if the ChatMember was the creator of the chat.
|
|
|
|
func (chat ChatMember) IsCreator() bool { return chat.Status == "creator" }
|
|
|
|
|
|
|
|
// IsAdministrator returns if the ChatMember is a chat administrator.
|
|
|
|
func (chat ChatMember) IsAdministrator() bool { return chat.Status == "administrator" }
|
|
|
|
|
|
|
|
// IsMember returns if the ChatMember is a current member of the chat.
|
|
|
|
func (chat ChatMember) IsMember() bool { return chat.Status == "member" }
|
|
|
|
|
|
|
|
// HasLeft returns if the ChatMember left the chat.
|
|
|
|
func (chat ChatMember) HasLeft() bool { return chat.Status == "left" }
|
|
|
|
|
|
|
|
// WasKicked returns if the ChatMember was kicked from the chat.
|
|
|
|
func (chat ChatMember) WasKicked() bool { return chat.Status == "kicked" }
|
|
|
|
|
2016-10-03 17:47:19 +02:00
|
|
|
// Game is a game within Telegram.
|
|
|
|
type Game struct {
|
|
|
|
Title string `json:"title"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Photo []PhotoSize `json:"photo"`
|
|
|
|
Text string `json:"text"`
|
|
|
|
TextEntities []MessageEntity `json:"text_entities"`
|
|
|
|
Animation Animation `json:"animation"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Animation is a GIF animation demonstrating the game.
|
|
|
|
type Animation struct {
|
|
|
|
FileID string `json:"file_id"`
|
|
|
|
Thumb PhotoSize `json:"thumb"`
|
|
|
|
FileName string `json:"file_name"`
|
|
|
|
MimeType string `json:"mime_type"`
|
|
|
|
FileSize int `json:"file_size"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GameHighScore is a user's score and position on the leaderboard.
|
|
|
|
type GameHighScore struct {
|
|
|
|
Position int `json:"position"`
|
|
|
|
User User `json:"user"`
|
|
|
|
Score int `json:"score"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// CallbackGame is for starting a game in an inline keyboard button.
|
|
|
|
type CallbackGame struct{}
|
|
|
|
|
|
|
|
// WebhookInfo is information about a currently set webhook.
|
|
|
|
type WebhookInfo struct {
|
|
|
|
URL string `json:"url"`
|
|
|
|
HasCustomCertificate bool `json:"has_custom_certificate"`
|
|
|
|
PendingUpdateCount int `json:"pending_update_count"`
|
|
|
|
LastErrorDate int `json:"last_error_date"` // optional
|
|
|
|
LastErrorMessage string `json:"last_error_message"` // optional
|
2020-07-21 10:33:33 +02:00
|
|
|
MaxConnections int `json:"max_connections"` // optional
|
2016-10-03 17:47:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsSet returns true if a webhook is currently set.
|
|
|
|
func (info WebhookInfo) IsSet() bool {
|
|
|
|
return info.URL != ""
|
|
|
|
}
|
|
|
|
|
2018-09-22 03:20:28 +02:00
|
|
|
// InputMediaPhoto contains a photo for displaying as part of a media group.
|
|
|
|
type InputMediaPhoto struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Media string `json:"media"`
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// InputMediaVideo contains a video for displaying as part of a media group.
|
|
|
|
type InputMediaVideo struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Media string `json:"media"`
|
|
|
|
// thumb intentionally missing as it is not currently compatible
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
Width int `json:"width"`
|
|
|
|
Height int `json:"height"`
|
|
|
|
Duration int `json:"duration"`
|
|
|
|
SupportsStreaming bool `json:"supports_streaming"`
|
|
|
|
}
|
|
|
|
|
2016-01-03 23:54:24 +01:00
|
|
|
// InlineQuery is a Query from Telegram for an inline request.
|
2016-01-01 07:10:19 +01:00
|
|
|
type InlineQuery struct {
|
2020-10-24 16:44:17 +02:00
|
|
|
// ID unique identifier for this query
|
|
|
|
ID string `json:"id"`
|
|
|
|
// From sender
|
|
|
|
From *User `json:"from"`
|
|
|
|
// Location sender location, only for bots that request user location.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Location *Location `json:"location"`
|
|
|
|
// Query text of the query (up to 256 characters).
|
|
|
|
Query string `json:"query"`
|
|
|
|
// Offset of the results to be returned, can be controlled by the bot.
|
|
|
|
Offset string `json:"offset"`
|
2016-01-01 07:10:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// InlineQueryResultArticle is an inline query response article.
|
|
|
|
type InlineQueryResultArticle struct {
|
2020-10-24 16:44:17 +02:00
|
|
|
// Type of the result, must be article.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 Bytes.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// Title of the result
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Title string `json:"title"`
|
|
|
|
// InputMessageContent content of the message to be sent.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
|
|
|
// ReplyMarkup Inline keyboard attached to the message.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// URL of the result.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
URL string `json:"url"`
|
|
|
|
// HideURL pass True, if you don't want the URL to be shown in the message.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
HideURL bool `json:"hide_url"`
|
|
|
|
// Description short description of the result.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Description string `json:"description"`
|
|
|
|
// ThumbURL url of the thumbnail for the result
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ThumbURL string `json:"thumb_url"`
|
|
|
|
// ThumbWidth thumbnail width
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ThumbWidth int `json:"thumb_width"`
|
|
|
|
// ThumbHeight thumbnail height
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ThumbHeight int `json:"thumb_height"`
|
2016-01-01 07:10:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// InlineQueryResultPhoto is an inline query response photo.
|
|
|
|
type InlineQueryResultPhoto struct {
|
2020-10-24 16:44:17 +02:00
|
|
|
// Type of the result, must be article.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 Bytes.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// URL a valid URL of the photo. Photo must be in jpeg format.
|
|
|
|
// Photo size must not exceed 5MB.
|
|
|
|
URL string `json:"photo_url"`
|
|
|
|
// MimeType
|
|
|
|
MimeType string `json:"mime_type"`
|
|
|
|
// Width of the photo
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Width int `json:"photo_width"`
|
|
|
|
// Height of the photo
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Height int `json:"photo_height"`
|
|
|
|
// ThumbURL url of the thumbnail for the photo.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ThumbURL string `json:"thumb_url"`
|
|
|
|
// Title for the result
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Title string `json:"title"`
|
|
|
|
// Description short description of the result
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Description string `json:"description"`
|
|
|
|
// Caption of the photo to be sent, 0-1024 characters after entities parsing.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
// ParseMode mode for parsing entities in the photo caption.
|
|
|
|
// See formatting options for more details
|
|
|
|
// (https://core.telegram.org/bots/api#formatting-options).
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
// ReplyMarkup inline keyboard attached to the message.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// InputMessageContent content of the message to be sent instead of the photo.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2016-01-01 07:10:19 +01:00
|
|
|
}
|
|
|
|
|
2018-07-04 12:48:19 +02:00
|
|
|
// InlineQueryResultCachedPhoto is an inline query response with cached photo.
|
|
|
|
type InlineQueryResultCachedPhoto struct {
|
2020-10-24 16:54:45 +02:00
|
|
|
// Type of the result, must be photo.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 bytes.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// PhotoID a valid file identifier of the photo.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
PhotoID string `json:"photo_file_id"`
|
|
|
|
// Title for the result.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Title string `json:"title"`
|
|
|
|
// Description short description of the result.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Description string `json:"description"`
|
|
|
|
// Caption of the photo to be sent, 0-1024 characters after entities parsing.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
// ParseMode mode for parsing entities in the photo caption.
|
|
|
|
// See formatting options for more details
|
|
|
|
// (https://core.telegram.org/bots/api#formatting-options).
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
// ReplyMarkup inline keyboard attached to the message.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// InputMessageContent content of the message to be sent instead of the photo.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2018-07-04 12:48:19 +02:00
|
|
|
}
|
|
|
|
|
2016-01-01 07:10:19 +01:00
|
|
|
// InlineQueryResultGIF is an inline query response GIF.
|
|
|
|
type InlineQueryResultGIF struct {
|
2020-10-24 16:54:45 +02:00
|
|
|
// Type of the result, must be gif.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 bytes.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// URL a valid URL for the GIF file. File size must not exceed 1MB.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
URL string `json:"gif_url"`
|
|
|
|
// ThumbURL url of the static (JPEG or GIF) or animated (MPEG4) thumbnail for the result.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ThumbURL string `json:"thumb_url"`
|
|
|
|
// Width of the GIF
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Width int `json:"gif_width,omitempty"`
|
|
|
|
// Height of the GIF
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Height int `json:"gif_height,omitempty"`
|
|
|
|
// Duration of the GIF
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Duration int `json:"gif_duration,omitempty"`
|
|
|
|
// Title for the result
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Title string `json:"title,omitempty"`
|
|
|
|
// Caption of the GIF file to be sent, 0-1024 characters after entities parsing.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Caption string `json:"caption,omitempty"`
|
|
|
|
// ReplyMarkup inline keyboard attached to the message
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// InputMessageContent content of the message to be sent instead of the GIF animation.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2016-01-01 07:10:19 +01:00
|
|
|
}
|
|
|
|
|
2018-07-04 12:48:19 +02:00
|
|
|
// InlineQueryResultCachedGIF is an inline query response with cached gif.
|
|
|
|
type InlineQueryResultCachedGIF struct {
|
2020-10-24 17:02:39 +02:00
|
|
|
// Type of the result, must be gif.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 bytes.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// GifID a valid file identifier for the GIF file.
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
GifID string `json:"gif_file_id"`
|
|
|
|
// Title for the result
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Title string `json:"title"`
|
|
|
|
// Caption of the GIF file to be sent, 0-1024 characters after entities parsing.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
// ParseMode mode for parsing entities in the caption.
|
|
|
|
// See formatting options for more details
|
|
|
|
// (https://core.telegram.org/bots/api#formatting-options).
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
// ReplyMarkup inline keyboard attached to the message.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// InputMessageContent content of the message to be sent instead of the GIF animation.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2018-07-04 12:48:19 +02:00
|
|
|
}
|
|
|
|
|
2016-01-01 07:10:19 +01:00
|
|
|
// InlineQueryResultMPEG4GIF is an inline query response MPEG4 GIF.
|
|
|
|
type InlineQueryResultMPEG4GIF struct {
|
2020-10-24 17:02:39 +02:00
|
|
|
// Type of the result, must be mpeg4_gif
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 bytes
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// URL a valid URL for the MP4 file. File size must not exceed 1MB
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
URL string `json:"mpeg4_url"`
|
|
|
|
// Width video width
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Width int `json:"mpeg4_width"`
|
|
|
|
// Height vVideo height
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Height int `json:"mpeg4_height"`
|
|
|
|
// Duration video duration
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Duration int `json:"mpeg4_duration"`
|
|
|
|
// ThumbURL url of the static (JPEG or GIF) or animated (MPEG4) thumbnail for the result.
|
|
|
|
ThumbURL string `json:"thumb_url"`
|
|
|
|
// Title for the result
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Title string `json:"title"`
|
|
|
|
// Caption of the MPEG-4 file to be sent, 0-1024 characters after entities parsing.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
// ReplyMarkup inline keyboard attached to the message
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// InputMessageContent content of the message to be sent instead of the video animation
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2016-01-01 07:10:19 +01:00
|
|
|
}
|
|
|
|
|
2018-07-04 12:48:19 +02:00
|
|
|
// InlineQueryResultCachedMpeg4Gif is an inline query response with cached
|
|
|
|
// H.264/MPEG-4 AVC video without sound gif.
|
|
|
|
type InlineQueryResultCachedMpeg4Gif struct {
|
2020-10-24 17:02:39 +02:00
|
|
|
// Type of the result, must be mpeg4_gif
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 bytes
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// MGifID a valid file identifier for the MP4 file
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
MGifID string `json:"mpeg4_file_id"`
|
|
|
|
// Title for the result
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Title string `json:"title"`
|
|
|
|
// Caption of the MPEG-4 file to be sent, 0-1024 characters after entities parsing.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
// ParseMode mode for parsing entities in the caption.
|
|
|
|
// See formatting options for more details
|
|
|
|
// (https://core.telegram.org/bots/api#formatting-options).
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
// ReplyMarkup inline keyboard attached to the message.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// InputMessageContent content of the message to be sent instead of the video animation.
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2018-07-04 12:48:19 +02:00
|
|
|
}
|
|
|
|
|
2016-01-01 07:10:19 +01:00
|
|
|
// InlineQueryResultVideo is an inline query response video.
|
|
|
|
type InlineQueryResultVideo struct {
|
2020-10-24 20:05:03 +02:00
|
|
|
// Type of the result, must be video
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 bytes
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// URL a valid url for the embedded video player or video file
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
URL string `json:"video_url"`
|
|
|
|
// MimeType of the content of video url, “text/html” or “video/mp4”
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
MimeType string `json:"mime_type"`
|
|
|
|
//
|
|
|
|
// ThumbURL url of the thumbnail (jpeg only) for the video
|
|
|
|
// optional
|
|
|
|
ThumbURL string `json:"thumb_url"`
|
|
|
|
// Title for the result
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Title string `json:"title"`
|
|
|
|
// Caption of the video to be sent, 0-1024 characters after entities parsing
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
// Width video width
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Width int `json:"video_width"`
|
|
|
|
// Height video height
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Height int `json:"video_height"`
|
|
|
|
// Duration video duration in seconds
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Duration int `json:"video_duration"`
|
|
|
|
// Description short description of the result
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Description string `json:"description"`
|
|
|
|
// ReplyMarkup inline keyboard attached to the message
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// InputMessageContent content of the message to be sent instead of the video.
|
|
|
|
// This field is required if InlineQueryResultVideo is used to send
|
|
|
|
// an HTML-page as a result (e.g., a YouTube video).
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2016-01-01 07:10:19 +01:00
|
|
|
}
|
2016-01-04 17:15:57 +01:00
|
|
|
|
2018-07-04 12:48:19 +02:00
|
|
|
// InlineQueryResultCachedVideo is an inline query response with cached video.
|
|
|
|
type InlineQueryResultCachedVideo struct {
|
2020-10-24 20:05:03 +02:00
|
|
|
// Type of the result, must be video
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 bytes
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// VideoID a valid file identifier for the video file
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
VideoID string `json:"video_file_id"`
|
|
|
|
// Title for the result
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Title string `json:"title"`
|
|
|
|
// Description short description of the result
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Description string `json:"description"`
|
|
|
|
// Caption of the video to be sent, 0-1024 characters after entities parsing
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
// ParseMode mode for parsing entities in the video caption.
|
|
|
|
// See formatting options for more details
|
|
|
|
// (https://core.telegram.org/bots/api#formatting-options).
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
// ReplyMarkup inline keyboard attached to the message
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// InputMessageContent content of the message to be sent instead of the video
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2018-07-04 12:48:19 +02:00
|
|
|
}
|
|
|
|
|
2020-01-05 06:35:15 +01:00
|
|
|
// InlineQueryResultCachedSticker is an inline query response with cached sticker.
|
|
|
|
type InlineQueryResultCachedSticker struct {
|
2020-10-24 20:12:17 +02:00
|
|
|
// Type of the result, must be sticker
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 bytes
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// StickerID a valid file identifier of the sticker
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
StickerID string `json:"sticker_file_id"`
|
|
|
|
// Title is a title
|
|
|
|
Title string `json:"title"`
|
|
|
|
// ParseMode mode for parsing entities in the video caption.
|
|
|
|
// See formatting options for more details
|
|
|
|
// (https://core.telegram.org/bots/api#formatting-options).
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
// ReplyMarkup inline keyboard attached to the message
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// InputMessageContent content of the message to be sent instead of the sticker
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2020-01-05 06:35:15 +01:00
|
|
|
}
|
|
|
|
|
2016-04-13 15:22:58 +02:00
|
|
|
// InlineQueryResultAudio is an inline query response audio.
|
|
|
|
type InlineQueryResultAudio struct {
|
2020-10-24 20:12:17 +02:00
|
|
|
// Type of the result, must be audio
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 bytes
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// URL a valid url for the audio file
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
URL string `json:"audio_url"`
|
|
|
|
// Title is a title
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Title string `json:"title"`
|
|
|
|
// Caption 0-1024 characters after entities parsing
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
// Performer is a performer
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Performer string `json:"performer"`
|
|
|
|
// Duration audio duration in seconds
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Duration int `json:"audio_duration"`
|
|
|
|
// ReplyMarkup inline keyboard attached to the message
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// InputMessageContent content of the message to be sent instead of the audio
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2016-04-13 15:22:58 +02:00
|
|
|
}
|
|
|
|
|
2018-07-04 12:48:19 +02:00
|
|
|
// InlineQueryResultCachedAudio is an inline query response with cached audio.
|
|
|
|
type InlineQueryResultCachedAudio struct {
|
2020-10-24 20:12:17 +02:00
|
|
|
// Type of the result, must be audio
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
Type string `json:"type"`
|
|
|
|
// ID unique identifier for this result, 1-64 bytes
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
ID string `json:"id"`
|
|
|
|
// AudioID a valid file identifier for the audio file
|
|
|
|
//
|
|
|
|
// required
|
|
|
|
AudioID string `json:"audio_file_id"`
|
|
|
|
// Caption 0-1024 characters after entities parsing
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
// ParseMode mode for parsing entities in the video caption.
|
|
|
|
// See formatting options for more details
|
|
|
|
// (https://core.telegram.org/bots/api#formatting-options).
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
// ReplyMarkup inline keyboard attached to the message
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
// InputMessageContent content of the message to be sent instead of the audio
|
|
|
|
//
|
|
|
|
// optional
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2018-07-04 12:48:19 +02:00
|
|
|
}
|
|
|
|
|
2016-04-13 15:22:58 +02:00
|
|
|
// InlineQueryResultVoice is an inline query response voice.
|
|
|
|
type InlineQueryResultVoice struct {
|
|
|
|
Type string `json:"type"` // required
|
|
|
|
ID string `json:"id"` // required
|
|
|
|
URL string `json:"voice_url"` // required
|
|
|
|
Title string `json:"title"` // required
|
2016-10-03 17:47:19 +02:00
|
|
|
Caption string `json:"caption"`
|
2016-04-13 15:22:58 +02:00
|
|
|
Duration int `json:"voice_duration"`
|
2016-04-13 16:30:52 +02:00
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
2016-04-13 22:45:51 +02:00
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2016-04-13 15:22:58 +02:00
|
|
|
}
|
|
|
|
|
2018-07-04 12:48:19 +02:00
|
|
|
// InlineQueryResultCachedVoice is an inline query response with cached voice.
|
|
|
|
type InlineQueryResultCachedVoice struct {
|
|
|
|
Type string `json:"type"` // required
|
|
|
|
ID string `json:"id"` // required
|
|
|
|
VoiceID string `json:"voice_file_id"` // required
|
|
|
|
Title string `json:"title"` // required
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
|
|
|
}
|
|
|
|
|
2016-04-13 15:22:58 +02:00
|
|
|
// InlineQueryResultDocument is an inline query response document.
|
|
|
|
type InlineQueryResultDocument struct {
|
|
|
|
Type string `json:"type"` // required
|
|
|
|
ID string `json:"id"` // required
|
|
|
|
Title string `json:"title"` // required
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
URL string `json:"document_url"` // required
|
|
|
|
MimeType string `json:"mime_type"` // required
|
|
|
|
Description string `json:"description"`
|
2016-04-13 16:30:52 +02:00
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
2016-04-13 22:45:51 +02:00
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2016-04-13 15:22:58 +02:00
|
|
|
ThumbURL string `json:"thumb_url"`
|
|
|
|
ThumbWidth int `json:"thumb_width"`
|
|
|
|
ThumbHeight int `json:"thumb_height"`
|
|
|
|
}
|
|
|
|
|
2018-07-04 12:48:19 +02:00
|
|
|
// InlineQueryResultCachedDocument is an inline query response with cached document.
|
|
|
|
type InlineQueryResultCachedDocument struct {
|
|
|
|
Type string `json:"type"` // required
|
|
|
|
ID string `json:"id"` // required
|
|
|
|
DocumentID string `json:"document_file_id"` // required
|
|
|
|
Title string `json:"title"` // required
|
|
|
|
Caption string `json:"caption"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
|
|
|
}
|
|
|
|
|
2016-04-13 15:22:58 +02:00
|
|
|
// InlineQueryResultLocation is an inline query response location.
|
|
|
|
type InlineQueryResultLocation struct {
|
|
|
|
Type string `json:"type"` // required
|
|
|
|
ID string `json:"id"` // required
|
|
|
|
Latitude float64 `json:"latitude"` // required
|
|
|
|
Longitude float64 `json:"longitude"` // required
|
|
|
|
Title string `json:"title"` // required
|
2016-04-13 16:30:52 +02:00
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
2016-04-13 22:45:51 +02:00
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
2016-04-13 15:22:58 +02:00
|
|
|
ThumbURL string `json:"thumb_url"`
|
|
|
|
ThumbWidth int `json:"thumb_width"`
|
|
|
|
ThumbHeight int `json:"thumb_height"`
|
|
|
|
}
|
|
|
|
|
2020-01-06 17:28:13 +01:00
|
|
|
// InlineQueryResultVenue is an inline query response venue.
|
|
|
|
type InlineQueryResultVenue struct {
|
|
|
|
Type string `json:"type"` // required
|
|
|
|
ID string `json:"id"` // required
|
|
|
|
Latitude float64 `json:"latitude"` // required
|
|
|
|
Longitude float64 `json:"longitude"` // required
|
|
|
|
Title string `json:"title"` // required
|
|
|
|
Address string `json:"address"` // required
|
|
|
|
FoursquareID string `json:"foursquare_id"`
|
|
|
|
FoursquareType string `json:"foursquare_type"`
|
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
|
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
|
|
|
ThumbURL string `json:"thumb_url"`
|
|
|
|
ThumbWidth int `json:"thumb_width"`
|
|
|
|
ThumbHeight int `json:"thumb_height"`
|
|
|
|
}
|
|
|
|
|
2016-10-03 17:47:19 +02:00
|
|
|
// InlineQueryResultGame is an inline query response game.
|
|
|
|
type InlineQueryResultGame struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
ID string `json:"id"`
|
|
|
|
GameShortName string `json:"game_short_name"`
|
2018-01-11 22:41:45 +01:00
|
|
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
2016-10-03 17:47:19 +02:00
|
|
|
}
|
|
|
|
|
2016-01-04 17:15:57 +01:00
|
|
|
// ChosenInlineResult is an inline query result chosen by a User
|
|
|
|
type ChosenInlineResult struct {
|
2016-04-13 15:22:58 +02:00
|
|
|
ResultID string `json:"result_id"`
|
|
|
|
From *User `json:"from"`
|
|
|
|
Location *Location `json:"location"`
|
|
|
|
InlineMessageID string `json:"inline_message_id"`
|
|
|
|
Query string `json:"query"`
|
2016-01-04 17:15:57 +01:00
|
|
|
}
|
2016-04-12 15:56:05 +02:00
|
|
|
|
2016-04-12 15:59:47 +02:00
|
|
|
// InputTextMessageContent contains text for displaying
|
|
|
|
// as an inline query result.
|
2016-04-12 15:56:05 +02:00
|
|
|
type InputTextMessageContent struct {
|
|
|
|
Text string `json:"message_text"`
|
|
|
|
ParseMode string `json:"parse_mode"`
|
|
|
|
DisableWebPagePreview bool `json:"disable_web_page_preview"`
|
|
|
|
}
|
|
|
|
|
2016-04-12 15:59:47 +02:00
|
|
|
// InputLocationMessageContent contains a location for displaying
|
|
|
|
// as an inline query result.
|
2016-04-12 15:56:05 +02:00
|
|
|
type InputLocationMessageContent struct {
|
|
|
|
Latitude float64 `json:"latitude"`
|
|
|
|
Longitude float64 `json:"longitude"`
|
|
|
|
}
|
|
|
|
|
2016-04-12 15:59:47 +02:00
|
|
|
// InputVenueMessageContent contains a venue for displaying
|
|
|
|
// as an inline query result.
|
2016-04-12 15:56:05 +02:00
|
|
|
type InputVenueMessageContent struct {
|
|
|
|
Latitude float64 `json:"latitude"`
|
|
|
|
Longitude float64 `json:"longitude"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Address string `json:"address"`
|
|
|
|
FoursquareID string `json:"foursquare_id"`
|
|
|
|
}
|
|
|
|
|
2016-04-12 15:59:47 +02:00
|
|
|
// InputContactMessageContent contains a contact for displaying
|
|
|
|
// as an inline query result.
|
2016-04-12 15:56:05 +02:00
|
|
|
type InputContactMessageContent struct {
|
|
|
|
PhoneNumber string `json:"phone_number"`
|
|
|
|
FirstName string `json:"first_name"`
|
|
|
|
LastName string `json:"last_name"`
|
|
|
|
}
|
2017-06-02 22:18:42 +02:00
|
|
|
|
2017-06-03 08:59:40 +02:00
|
|
|
// Invoice contains basic information about an invoice.
|
2017-06-02 22:18:42 +02:00
|
|
|
type Invoice struct {
|
|
|
|
Title string `json:"title"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
StartParameter string `json:"start_parameter"`
|
|
|
|
Currency string `json:"currency"`
|
|
|
|
TotalAmount int `json:"total_amount"`
|
|
|
|
}
|
|
|
|
|
2017-06-03 08:59:40 +02:00
|
|
|
// LabeledPrice represents a portion of the price for goods or services.
|
2017-06-02 22:18:42 +02:00
|
|
|
type LabeledPrice struct {
|
|
|
|
Label string `json:"label"`
|
|
|
|
Amount int `json:"amount"`
|
|
|
|
}
|
|
|
|
|
2017-06-03 08:59:40 +02:00
|
|
|
// ShippingAddress represents a shipping address.
|
2017-06-02 22:18:42 +02:00
|
|
|
type ShippingAddress struct {
|
|
|
|
CountryCode string `json:"country_code"`
|
|
|
|
State string `json:"state"`
|
|
|
|
City string `json:"city"`
|
|
|
|
StreetLine1 string `json:"street_line1"`
|
|
|
|
StreetLine2 string `json:"street_line2"`
|
|
|
|
PostCode string `json:"post_code"`
|
|
|
|
}
|
|
|
|
|
2017-06-03 08:59:40 +02:00
|
|
|
// OrderInfo represents information about an order.
|
2017-06-02 22:18:42 +02:00
|
|
|
type OrderInfo struct {
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
PhoneNumber string `json:"phone_number,omitempty"`
|
|
|
|
Email string `json:"email,omitempty"`
|
|
|
|
ShippingAddress *ShippingAddress `json:"shipping_address,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-06-03 08:59:40 +02:00
|
|
|
// ShippingOption represents one shipping option.
|
2017-06-02 22:18:42 +02:00
|
|
|
type ShippingOption struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Prices *[]LabeledPrice `json:"prices"`
|
|
|
|
}
|
|
|
|
|
2017-06-03 08:59:40 +02:00
|
|
|
// SuccessfulPayment contains basic information about a successful payment.
|
2017-06-02 22:18:42 +02:00
|
|
|
type SuccessfulPayment struct {
|
|
|
|
Currency string `json:"currency"`
|
|
|
|
TotalAmount int `json:"total_amount"`
|
|
|
|
InvoicePayload string `json:"invoice_payload"`
|
|
|
|
ShippingOptionID string `json:"shipping_option_id,omitempty"`
|
|
|
|
OrderInfo *OrderInfo `json:"order_info,omitempty"`
|
|
|
|
TelegramPaymentChargeID string `json:"telegram_payment_charge_id"`
|
|
|
|
ProviderPaymentChargeID string `json:"provider_payment_charge_id"`
|
|
|
|
}
|
|
|
|
|
2017-06-03 08:59:40 +02:00
|
|
|
// ShippingQuery contains information about an incoming shipping query.
|
2017-06-02 22:18:42 +02:00
|
|
|
type ShippingQuery struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
From *User `json:"from"`
|
|
|
|
InvoicePayload string `json:"invoice_payload"`
|
|
|
|
ShippingAddress *ShippingAddress `json:"shipping_address"`
|
|
|
|
}
|
|
|
|
|
2017-06-03 08:59:40 +02:00
|
|
|
// PreCheckoutQuery contains information about an incoming pre-checkout query.
|
2017-06-02 22:18:42 +02:00
|
|
|
type PreCheckoutQuery struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
From *User `json:"from"`
|
|
|
|
Currency string `json:"currency"`
|
|
|
|
TotalAmount int `json:"total_amount"`
|
|
|
|
InvoicePayload string `json:"invoice_payload"`
|
|
|
|
ShippingOptionID string `json:"shipping_option_id,omitempty"`
|
|
|
|
OrderInfo *OrderInfo `json:"order_info,omitempty"`
|
|
|
|
}
|
2018-03-04 12:10:17 +01:00
|
|
|
|
2018-03-26 18:54:02 +02:00
|
|
|
// Error is an error containing extra information returned by the Telegram API.
|
2018-03-04 12:10:17 +01:00
|
|
|
type Error struct {
|
2019-03-01 17:17:35 +01:00
|
|
|
Code int
|
2018-03-04 12:10:17 +01:00
|
|
|
Message string
|
|
|
|
ResponseParameters
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e Error) Error() string {
|
|
|
|
return e.Message
|
|
|
|
}
|
2020-09-26 22:55:26 +02:00
|
|
|
|
|
|
|
// BotCommand represents a bot command.
|
|
|
|
type BotCommand struct {
|
|
|
|
Command string `json:"command"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
}
|