Merge pull request #384 from ilyakaznacheev/api-type-docks-2
Add API type docks pack twobot-api-6.1
commit
7e9b33f9e8
565
types.go
565
types.go
|
@ -224,6 +224,7 @@ type Message struct {
|
||||||
// MessageID is a unique message identifier inside this chat
|
// MessageID is a unique message identifier inside this chat
|
||||||
MessageID int `json:"message_id"`
|
MessageID int `json:"message_id"`
|
||||||
// From is a sender, empty for messages sent to channels;
|
// From is a sender, empty for messages sent to channels;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
From *User `json:"from"`
|
From *User `json:"from"`
|
||||||
// Date of the message was sent in Unix time
|
// Date of the message was sent in Unix time
|
||||||
|
@ -231,105 +232,136 @@ type Message struct {
|
||||||
// Chat is the conversation the message belongs to
|
// Chat is the conversation the message belongs to
|
||||||
Chat *Chat `json:"chat"`
|
Chat *Chat `json:"chat"`
|
||||||
// ForwardFrom for forwarded messages, sender of the original message;
|
// ForwardFrom for forwarded messages, sender of the original message;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
ForwardFrom *User `json:"forward_from"`
|
ForwardFrom *User `json:"forward_from"`
|
||||||
// ForwardFromChat for messages forwarded from channels,
|
// ForwardFromChat for messages forwarded from channels,
|
||||||
// information about the original channel;
|
// information about the original channel;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
ForwardFromChat *Chat `json:"forward_from_chat"`
|
ForwardFromChat *Chat `json:"forward_from_chat"`
|
||||||
// ForwardFromMessageID for messages forwarded from channels,
|
// ForwardFromMessageID for messages forwarded from channels,
|
||||||
// identifier of the original message in the channel;
|
// identifier of the original message in the channel;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
ForwardFromMessageID int `json:"forward_from_message_id"`
|
ForwardFromMessageID int `json:"forward_from_message_id"`
|
||||||
// ForwardDate for forwarded messages, date the original message was sent in Unix time;
|
// ForwardDate for forwarded messages, date the original message was sent in Unix time;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
ForwardDate int `json:"forward_date"`
|
ForwardDate int `json:"forward_date"`
|
||||||
// ReplyToMessage for replies, the original message.
|
// ReplyToMessage for replies, the original message.
|
||||||
// Note that the Message object in this field will not contain further ReplyToMessage fields
|
// Note that the Message object in this field will not contain further ReplyToMessage fields
|
||||||
// even if it itself is a reply;
|
// even if it itself is a reply;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
ReplyToMessage *Message `json:"reply_to_message"`
|
ReplyToMessage *Message `json:"reply_to_message"`
|
||||||
// ViaBot through which the message was sent;
|
// ViaBot through which the message was sent;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
ViaBot *User `json:"via_bot"`
|
ViaBot *User `json:"via_bot"`
|
||||||
// EditDate of the message was last edited in Unix time;
|
// EditDate of the message was last edited in Unix time;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
EditDate int `json:"edit_date"`
|
EditDate int `json:"edit_date"`
|
||||||
// MediaGroupID is the unique identifier of a media message group this message belongs to;
|
// MediaGroupID is the unique identifier of a media message group this message belongs to;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
MediaGroupID string `json:"media_group_id"`
|
MediaGroupID string `json:"media_group_id"`
|
||||||
// AuthorSignature is the signature of the post author for messages in channels;
|
// AuthorSignature is the signature of the post author for messages in channels;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
AuthorSignature string `json:"author_signature"`
|
AuthorSignature string `json:"author_signature"`
|
||||||
// Text is for text messages, the actual UTF-8 text of the message, 0-4096 characters;
|
// Text is for text messages, the actual UTF-8 text of the message, 0-4096 characters;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Text string `json:"text"`
|
Text string `json:"text"`
|
||||||
// Entities is for text messages, special entities like usernames,
|
// Entities is for text messages, special entities like usernames,
|
||||||
// URLs, bot commands, etc. that appear in the text;
|
// URLs, bot commands, etc. that appear in the text;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Entities *[]MessageEntity `json:"entities"`
|
Entities *[]MessageEntity `json:"entities"`
|
||||||
// CaptionEntities;
|
// CaptionEntities;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
CaptionEntities *[]MessageEntity `json:"caption_entities"`
|
CaptionEntities *[]MessageEntity `json:"caption_entities"`
|
||||||
// Audio message is an audio file, information about the file;
|
// Audio message is an audio file, information about the file;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Audio *Audio `json:"audio"`
|
Audio *Audio `json:"audio"`
|
||||||
// Document message is a general file, information about the file;
|
// Document message is a general file, information about the file;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Document *Document `json:"document"`
|
Document *Document `json:"document"`
|
||||||
// Animation message is an animation, information about the animation.
|
// Animation message is an animation, information about the animation.
|
||||||
// For backward compatibility, when this field is set, the document field will also be set;
|
// For backward compatibility, when this field is set, the document field will also be set;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Animation *ChatAnimation `json:"animation"`
|
Animation *ChatAnimation `json:"animation"`
|
||||||
// Game message is a game, information about the game;
|
// Game message is a game, information about the game;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Game *Game `json:"game"`
|
Game *Game `json:"game"`
|
||||||
// Photo message is a photo, available sizes of the photo;
|
// Photo message is a photo, available sizes of the photo;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Photo *[]PhotoSize `json:"photo"`
|
Photo *[]PhotoSize `json:"photo"`
|
||||||
// Sticker message is a sticker, information about the sticker;
|
// Sticker message is a sticker, information about the sticker;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Sticker *Sticker `json:"sticker"`
|
Sticker *Sticker `json:"sticker"`
|
||||||
// Video message is a video, information about the video;
|
// Video message is a video, information about the video;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Video *Video `json:"video"`
|
Video *Video `json:"video"`
|
||||||
// VideoNote message is a video note, information about the video message;
|
// VideoNote message is a video note, information about the video message;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
VideoNote *VideoNote `json:"video_note"`
|
VideoNote *VideoNote `json:"video_note"`
|
||||||
// Voice message is a voice message, information about the file;
|
// Voice message is a voice message, information about the file;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Voice *Voice `json:"voice"`
|
Voice *Voice `json:"voice"`
|
||||||
// Caption for the animation, audio, document, photo, video or voice, 0-1024 characters;
|
// Caption for the animation, audio, document, photo, video or voice, 0-1024 characters;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Caption string `json:"caption"`
|
Caption string `json:"caption"`
|
||||||
// Contact message is a shared contact, information about the contact;
|
// Contact message is a shared contact, information about the contact;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Contact *Contact `json:"contact"`
|
Contact *Contact `json:"contact"`
|
||||||
// Location message is a shared location, information about the location;
|
// Location message is a shared location, information about the location;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Location *Location `json:"location"`
|
Location *Location `json:"location"`
|
||||||
// Venue message is a venue, information about the venue.
|
// Venue message is a venue, information about the venue.
|
||||||
// For backward compatibility, when this field is set, the location field will also be set;
|
// For backward compatibility, when this field is set, the location field will also be set;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Venue *Venue `json:"venue"`
|
Venue *Venue `json:"venue"`
|
||||||
// NewChatMembers that were added to the group or supergroup
|
// NewChatMembers that were added to the group or supergroup
|
||||||
// and information about them (the bot itself may be one of these members);
|
// and information about them (the bot itself may be one of these members);
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
NewChatMembers *[]User `json:"new_chat_members"`
|
NewChatMembers *[]User `json:"new_chat_members"`
|
||||||
// LeftChatMember is a member was removed from the group,
|
// LeftChatMember is a member was removed from the group,
|
||||||
// information about them (this member may be the bot itself);
|
// information about them (this member may be the bot itself);
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
LeftChatMember *User `json:"left_chat_member"`
|
LeftChatMember *User `json:"left_chat_member"`
|
||||||
// NewChatTitle is a chat title was changed to this value;
|
// NewChatTitle is a chat title was changed to this value;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
NewChatTitle string `json:"new_chat_title"`
|
NewChatTitle string `json:"new_chat_title"`
|
||||||
// NewChatPhoto is a chat photo was change to this value;
|
// NewChatPhoto is a chat photo was change to this value;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
NewChatPhoto *[]PhotoSize `json:"new_chat_photo"`
|
NewChatPhoto *[]PhotoSize `json:"new_chat_photo"`
|
||||||
// DeleteChatPhoto is a service message: the chat photo was deleted;
|
// DeleteChatPhoto is a service message: the chat photo was deleted;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
DeleteChatPhoto bool `json:"delete_chat_photo"`
|
DeleteChatPhoto bool `json:"delete_chat_photo"`
|
||||||
// GroupChatCreated is a service message: the group has been created;
|
// GroupChatCreated is a service message: the group has been created;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
GroupChatCreated bool `json:"group_chat_created"`
|
GroupChatCreated bool `json:"group_chat_created"`
|
||||||
// SuperGroupChatCreated is a service message: the supergroup has been created.
|
// SuperGroupChatCreated is a service message: the supergroup has been created.
|
||||||
|
@ -337,6 +369,7 @@ type Message struct {
|
||||||
// because bot can't be a member of a supergroup when it is created.
|
// 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
|
// It can only be found in ReplyToMessage if someone replies to a very first message
|
||||||
// in a directly created supergroup;
|
// in a directly created supergroup;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
SuperGroupChatCreated bool `json:"supergroup_chat_created"`
|
SuperGroupChatCreated bool `json:"supergroup_chat_created"`
|
||||||
// ChannelChatCreated is a service message: the channel has been created.
|
// ChannelChatCreated is a service message: the channel has been created.
|
||||||
|
@ -344,6 +377,7 @@ type Message struct {
|
||||||
// because bot can't be a member of a channel when it is created.
|
// because bot can't be a member of a channel when it is created.
|
||||||
// It can only be found in ReplyToMessage
|
// It can only be found in ReplyToMessage
|
||||||
// if someone replies to a very first message in a channel;
|
// if someone replies to a very first message in a channel;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
ChannelChatCreated bool `json:"channel_chat_created"`
|
ChannelChatCreated bool `json:"channel_chat_created"`
|
||||||
// MigrateToChatID is the group has been migrated to a supergroup with the specified identifier.
|
// MigrateToChatID is the group has been migrated to a supergroup with the specified identifier.
|
||||||
|
@ -351,6 +385,7 @@ type Message struct {
|
||||||
// may have difficulty/silent defects in interpreting it.
|
// may have difficulty/silent defects in interpreting it.
|
||||||
// But it is smaller than 52 bits, so a signed 64 bit integer
|
// But it is smaller than 52 bits, so a signed 64 bit integer
|
||||||
// or double-precision float type are safe for storing this identifier;
|
// or double-precision float type are safe for storing this identifier;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
MigrateToChatID int64 `json:"migrate_to_chat_id"`
|
MigrateToChatID int64 `json:"migrate_to_chat_id"`
|
||||||
// MigrateFromChatID is the supergroup has been migrated from a group with the specified identifier.
|
// MigrateFromChatID is the supergroup has been migrated from a group with the specified identifier.
|
||||||
|
@ -358,21 +393,26 @@ type Message struct {
|
||||||
// may have difficulty/silent defects in interpreting it.
|
// may have difficulty/silent defects in interpreting it.
|
||||||
// But it is smaller than 52 bits, so a signed 64 bit integer
|
// But it is smaller than 52 bits, so a signed 64 bit integer
|
||||||
// or double-precision float type are safe for storing this identifier;
|
// or double-precision float type are safe for storing this identifier;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
MigrateFromChatID int64 `json:"migrate_from_chat_id"`
|
MigrateFromChatID int64 `json:"migrate_from_chat_id"`
|
||||||
// PinnedMessage is a specified message was pinned.
|
// PinnedMessage is a specified message was pinned.
|
||||||
// Note that the Message object in this field will not contain further ReplyToMessage
|
// Note that the Message object in this field will not contain further ReplyToMessage
|
||||||
// fields even if it is itself a reply;
|
// fields even if it is itself a reply;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
PinnedMessage *Message `json:"pinned_message"`
|
PinnedMessage *Message `json:"pinned_message"`
|
||||||
// Invoice message is an invoice for a payment;
|
// Invoice message is an invoice for a payment;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
Invoice *Invoice `json:"invoice"`
|
Invoice *Invoice `json:"invoice"`
|
||||||
// SuccessfulPayment message is a service message about a successful payment,
|
// SuccessfulPayment message is a service message about a successful payment,
|
||||||
// information about the payment;
|
// information about the payment;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
SuccessfulPayment *SuccessfulPayment `json:"successful_payment"`
|
SuccessfulPayment *SuccessfulPayment `json:"successful_payment"`
|
||||||
// PassportData is a Telegram Passport data;
|
// PassportData is a Telegram Passport data;
|
||||||
|
//
|
||||||
// optional
|
// optional
|
||||||
PassportData *PassportData `json:"passport_data,omitempty"`
|
PassportData *PassportData `json:"passport_data,omitempty"`
|
||||||
}
|
}
|
||||||
|
@ -540,128 +580,258 @@ func (e MessageEntity) IsTextLink() bool {
|
||||||
|
|
||||||
// PhotoSize contains information about photos.
|
// PhotoSize contains information about photos.
|
||||||
type PhotoSize struct {
|
type PhotoSize struct {
|
||||||
|
// FileID identifier for this file, which can be used to download or reuse the file
|
||||||
FileID string `json:"file_id"`
|
FileID string `json:"file_id"`
|
||||||
|
// Width photo width
|
||||||
Width int `json:"width"`
|
Width int `json:"width"`
|
||||||
|
// Height photo height
|
||||||
Height int `json:"height"`
|
Height int `json:"height"`
|
||||||
FileSize int `json:"file_size"` // optional
|
// FileSize file size
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FileSize int `json:"file_size"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Audio contains information about audio.
|
// Audio contains information about audio.
|
||||||
type Audio struct {
|
type Audio struct {
|
||||||
|
// FileID is an identifier for this file, which can be used to download or reuse the file
|
||||||
FileID string `json:"file_id"`
|
FileID string `json:"file_id"`
|
||||||
|
// Duration of the audio in seconds as defined by sender
|
||||||
Duration int `json:"duration"`
|
Duration int `json:"duration"`
|
||||||
Performer string `json:"performer"` // optional
|
// Performer of the audio as defined by sender or by audio tags
|
||||||
Title string `json:"title"` // optional
|
//
|
||||||
MimeType string `json:"mime_type"` // optional
|
// optional
|
||||||
FileSize int `json:"file_size"` // optional
|
Performer string `json:"performer"`
|
||||||
|
// Title of the audio as defined by sender or by audio tags
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
Title string `json:"title"`
|
||||||
|
// MimeType of the file as defined by sender
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
MimeType string `json:"mime_type"`
|
||||||
|
// FileSize file size
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FileSize int `json:"file_size"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Document contains information about a document.
|
// Document contains information about a document.
|
||||||
type Document struct {
|
type Document struct {
|
||||||
|
// FileID is a identifier for this file, which can be used to download or reuse the file
|
||||||
FileID string `json:"file_id"`
|
FileID string `json:"file_id"`
|
||||||
Thumbnail *PhotoSize `json:"thumb"` // optional
|
// Thumbnail document thumbnail as defined by sender
|
||||||
FileName string `json:"file_name"` // optional
|
//
|
||||||
MimeType string `json:"mime_type"` // optional
|
// optional
|
||||||
FileSize int `json:"file_size"` // optional
|
Thumbnail *PhotoSize `json:"thumb"`
|
||||||
|
// FileName original filename as defined by sender
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FileName string `json:"file_name"`
|
||||||
|
// MimeType of the file as defined by sender
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
MimeType string `json:"mime_type"`
|
||||||
|
// FileSize file size
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FileSize int `json:"file_size"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sticker contains information about a sticker.
|
// Sticker contains information about a sticker.
|
||||||
type Sticker struct {
|
type Sticker struct {
|
||||||
|
// FileUniqueID is an unique identifier for this file,
|
||||||
|
// which is supposed to be the same over time and for different bots.
|
||||||
|
// Can't be used to download or reuse the file.
|
||||||
FileUniqueID string `json:"file_unique_id"`
|
FileUniqueID string `json:"file_unique_id"`
|
||||||
|
// FileID is an identifier for this file, which can be used to download or reuse the file
|
||||||
FileID string `json:"file_id"`
|
FileID string `json:"file_id"`
|
||||||
|
// Width sticker width
|
||||||
Width int `json:"width"`
|
Width int `json:"width"`
|
||||||
|
// Height sticker height
|
||||||
Height int `json:"height"`
|
Height int `json:"height"`
|
||||||
Thumbnail *PhotoSize `json:"thumb"` // optional
|
// Thumbnail sticker thumbnail in the .WEBP or .JPG format
|
||||||
Emoji string `json:"emoji"` // optional
|
//
|
||||||
FileSize int `json:"file_size"` // optional
|
// optional
|
||||||
SetName string `json:"set_name"` // optional
|
Thumbnail *PhotoSize `json:"thumb"`
|
||||||
IsAnimated bool `json:"is_animated"` // optional
|
// Emoji associated with the sticker
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
Emoji string `json:"emoji"`
|
||||||
|
// FileSize
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FileSize int `json:"file_size"`
|
||||||
|
// SetName of the sticker set to which the sticker belongs
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
SetName string `json:"set_name"`
|
||||||
|
// IsAnimated true, if the sticker is animated
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
IsAnimated bool `json:"is_animated"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// StickerSet contains information about an sticker set.
|
// StickerSet contains information about an sticker set.
|
||||||
type StickerSet struct {
|
type StickerSet struct {
|
||||||
|
// Name sticker set name
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
|
// Title sticker set title
|
||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
|
// IsAnimated true, if the sticker set contains animated stickers
|
||||||
IsAnimated bool `json:"is_animated"`
|
IsAnimated bool `json:"is_animated"`
|
||||||
|
// ContainsMasks true, if the sticker set contains masks
|
||||||
ContainsMasks bool `json:"contains_masks"`
|
ContainsMasks bool `json:"contains_masks"`
|
||||||
|
// Stickers list of all set stickers
|
||||||
Stickers []Sticker `json:"stickers"`
|
Stickers []Sticker `json:"stickers"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ChatAnimation contains information about an animation.
|
// ChatAnimation contains information about an animation.
|
||||||
type ChatAnimation struct {
|
type ChatAnimation struct {
|
||||||
|
// FileID odentifier for this file, which can be used to download or reuse the file
|
||||||
FileID string `json:"file_id"`
|
FileID string `json:"file_id"`
|
||||||
|
// Width video width as defined by sender
|
||||||
Width int `json:"width"`
|
Width int `json:"width"`
|
||||||
|
// Height video height as defined by sender
|
||||||
Height int `json:"height"`
|
Height int `json:"height"`
|
||||||
|
// Duration of the video in seconds as defined by sender
|
||||||
Duration int `json:"duration"`
|
Duration int `json:"duration"`
|
||||||
Thumbnail *PhotoSize `json:"thumb"` // optional
|
// Thumbnail animation thumbnail as defined by sender
|
||||||
FileName string `json:"file_name"` // optional
|
//
|
||||||
MimeType string `json:"mime_type"` // optional
|
// optional
|
||||||
FileSize int `json:"file_size"` // optional
|
Thumbnail *PhotoSize `json:"thumb"`
|
||||||
|
// FileName original animation filename as defined by sender
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FileName string `json:"file_name"`
|
||||||
|
// MimeType of the file as defined by sender
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
MimeType string `json:"mime_type"`
|
||||||
|
// FileSize file size
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FileSize int `json:"file_size"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Video contains information about a video.
|
// Video contains information about a video.
|
||||||
type Video struct {
|
type Video struct {
|
||||||
|
// FileID identifier for this file, which can be used to download or reuse the file
|
||||||
FileID string `json:"file_id"`
|
FileID string `json:"file_id"`
|
||||||
|
// Width video width as defined by sender
|
||||||
Width int `json:"width"`
|
Width int `json:"width"`
|
||||||
|
// Height video height as defined by sender
|
||||||
Height int `json:"height"`
|
Height int `json:"height"`
|
||||||
|
// Duration of the video in seconds as defined by sender
|
||||||
Duration int `json:"duration"`
|
Duration int `json:"duration"`
|
||||||
Thumbnail *PhotoSize `json:"thumb"` // optional
|
// Thumbnail video thumbnail
|
||||||
MimeType string `json:"mime_type"` // optional
|
//
|
||||||
FileSize int `json:"file_size"` // optional
|
// optional
|
||||||
|
Thumbnail *PhotoSize `json:"thumb"`
|
||||||
|
// MimeType of a file as defined by sender
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
MimeType string `json:"mime_type"`
|
||||||
|
// FileSize file size
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FileSize int `json:"file_size"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// VideoNote contains information about a video.
|
// VideoNote contains information about a video.
|
||||||
type VideoNote struct {
|
type VideoNote struct {
|
||||||
|
// FileID identifier for this file, which can be used to download or reuse the file
|
||||||
FileID string `json:"file_id"`
|
FileID string `json:"file_id"`
|
||||||
|
// Length video width and height (diameter of the video message) as defined by sender
|
||||||
Length int `json:"length"`
|
Length int `json:"length"`
|
||||||
|
// Duration of the video in seconds as defined by sender
|
||||||
Duration int `json:"duration"`
|
Duration int `json:"duration"`
|
||||||
Thumbnail *PhotoSize `json:"thumb"` // optional
|
// Thumbnail video thumbnail
|
||||||
FileSize int `json:"file_size"` // optional
|
//
|
||||||
|
// optional
|
||||||
|
Thumbnail *PhotoSize `json:"thumb"`
|
||||||
|
// FileSize file size
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FileSize int `json:"file_size"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Voice contains information about a voice.
|
// Voice contains information about a voice.
|
||||||
type Voice struct {
|
type Voice struct {
|
||||||
|
// FileID identifier for this file, which can be used to download or reuse the file
|
||||||
FileID string `json:"file_id"`
|
FileID string `json:"file_id"`
|
||||||
|
// Duration of the audio in seconds as defined by sender
|
||||||
Duration int `json:"duration"`
|
Duration int `json:"duration"`
|
||||||
MimeType string `json:"mime_type"` // optional
|
// MimeType of the file as defined by sender
|
||||||
FileSize int `json:"file_size"` // optional
|
//
|
||||||
|
// optional
|
||||||
|
MimeType string `json:"mime_type"`
|
||||||
|
// FileSize file size
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FileSize int `json:"file_size"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Contact contains information about a contact.
|
// Contact contains information about a contact.
|
||||||
//
|
//
|
||||||
// Note that LastName and UserID may be empty.
|
// Note that LastName and UserID may be empty.
|
||||||
type Contact struct {
|
type Contact struct {
|
||||||
|
// PhoneNumber contact's phone number
|
||||||
PhoneNumber string `json:"phone_number"`
|
PhoneNumber string `json:"phone_number"`
|
||||||
|
// FirstName contact's first name
|
||||||
FirstName string `json:"first_name"`
|
FirstName string `json:"first_name"`
|
||||||
LastName string `json:"last_name"` // optional
|
// LastName contact's last name
|
||||||
UserID int `json:"user_id"` // optional
|
//
|
||||||
|
// optional
|
||||||
|
LastName string `json:"last_name"`
|
||||||
|
// UserID contact's user identifier in Telegram
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
UserID int `json:"user_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Location contains information about a place.
|
// Location contains information about a place.
|
||||||
type Location struct {
|
type Location struct {
|
||||||
|
// Longitude as defined by sender
|
||||||
Longitude float64 `json:"longitude"`
|
Longitude float64 `json:"longitude"`
|
||||||
|
// Latitude as defined by sender
|
||||||
Latitude float64 `json:"latitude"`
|
Latitude float64 `json:"latitude"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Venue contains information about a venue, including its Location.
|
// Venue contains information about a venue, including its Location.
|
||||||
type Venue struct {
|
type Venue struct {
|
||||||
|
// Location venue location
|
||||||
Location Location `json:"location"`
|
Location Location `json:"location"`
|
||||||
|
// Title name of the venue
|
||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
|
// Address of the venue
|
||||||
Address string `json:"address"`
|
Address string `json:"address"`
|
||||||
FoursquareID string `json:"foursquare_id"` // optional
|
// FoursquareID foursquare identifier of the venue
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FoursquareID string `json:"foursquare_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// UserProfilePhotos contains a set of user profile photos.
|
// UserProfilePhotos contains a set of user profile photos.
|
||||||
type UserProfilePhotos struct {
|
type UserProfilePhotos struct {
|
||||||
|
// TotalCount total number of profile pictures the target user has
|
||||||
TotalCount int `json:"total_count"`
|
TotalCount int `json:"total_count"`
|
||||||
|
// Photos requested profile pictures (in up to 4 sizes each)
|
||||||
Photos [][]PhotoSize `json:"photos"`
|
Photos [][]PhotoSize `json:"photos"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// File contains information about a file to download from Telegram.
|
// File contains information about a file to download from Telegram.
|
||||||
type File struct {
|
type File struct {
|
||||||
|
// FileID identifier for this file, which can be used to download or reuse the file
|
||||||
FileID string `json:"file_id"`
|
FileID string `json:"file_id"`
|
||||||
FileSize int `json:"file_size"` // optional
|
// FileSize file size, if known
|
||||||
FilePath string `json:"file_path"` // optional
|
//
|
||||||
|
// optional
|
||||||
|
FileSize int `json:"file_size"`
|
||||||
|
// FilePath file path
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
FilePath string `json:"file_path"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Link returns a full path to the download URL for a File.
|
// Link returns a full path to the download URL for a File.
|
||||||
|
@ -673,16 +843,51 @@ func (f *File) Link(token string) string {
|
||||||
|
|
||||||
// ReplyKeyboardMarkup allows the Bot to set a custom keyboard.
|
// ReplyKeyboardMarkup allows the Bot to set a custom keyboard.
|
||||||
type ReplyKeyboardMarkup struct {
|
type ReplyKeyboardMarkup struct {
|
||||||
|
// Keyboard is an array of button rows, each represented by an Array of KeyboardButton objects
|
||||||
Keyboard [][]KeyboardButton `json:"keyboard"`
|
Keyboard [][]KeyboardButton `json:"keyboard"`
|
||||||
ResizeKeyboard bool `json:"resize_keyboard"` // optional
|
// ResizeKeyboard requests clients to resize the keyboard vertically for optimal fit
|
||||||
OneTimeKeyboard bool `json:"one_time_keyboard"` // optional
|
// (e.g., make the keyboard smaller if there are just two rows of buttons).
|
||||||
Selective bool `json:"selective"` // optional
|
// Defaults to false, in which case the custom keyboard
|
||||||
|
// is always of the same height as the app's standard keyboard.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
ResizeKeyboard bool `json:"resize_keyboard"`
|
||||||
|
// OneTimeKeyboard requests clients to hide the keyboard as soon as it's been used.
|
||||||
|
// The keyboard will still be available, but clients will automatically display
|
||||||
|
// the usual letter-keyboard in the chat – the user can press a special button
|
||||||
|
// in the input field to see the custom keyboard again.
|
||||||
|
// Defaults to false.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
OneTimeKeyboard bool `json:"one_time_keyboard"`
|
||||||
|
// Selective use this parameter if you want to show the keyboard to specific users only.
|
||||||
|
// Targets:
|
||||||
|
// 1) users that are @mentioned in the text of the Message object;
|
||||||
|
// 2) if the bot's message is a reply (has Message.ReplyToMessage not nil), sender of the original message.
|
||||||
|
//
|
||||||
|
// Example: A user requests to change the bot's language,
|
||||||
|
// bot replies to the request with a keyboard to select the new language.
|
||||||
|
// Other users in the group don't see the keyboard.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
Selective bool `json:"selective"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// KeyboardButton is a button within a custom keyboard.
|
// KeyboardButton is a button within a custom keyboard.
|
||||||
type KeyboardButton struct {
|
type KeyboardButton struct {
|
||||||
|
// Text of the button. If none of the optional fields are used,
|
||||||
|
// it will be sent as a message when the button is pressed.
|
||||||
Text string `json:"text"`
|
Text string `json:"text"`
|
||||||
|
// RequestContact if True, the user's phone number will be sent
|
||||||
|
// as a contact when the button is pressed.
|
||||||
|
// Available in private chats only.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
RequestContact bool `json:"request_contact"`
|
RequestContact bool `json:"request_contact"`
|
||||||
|
// RequestLocation if True, the user's current location will be sent when the button is pressed.
|
||||||
|
// Available in private chats only.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
RequestLocation bool `json:"request_location"`
|
RequestLocation bool `json:"request_location"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -694,12 +899,27 @@ type ReplyKeyboardHide struct {
|
||||||
|
|
||||||
// ReplyKeyboardRemove allows the Bot to hide a custom keyboard.
|
// ReplyKeyboardRemove allows the Bot to hide a custom keyboard.
|
||||||
type ReplyKeyboardRemove struct {
|
type ReplyKeyboardRemove struct {
|
||||||
|
// RemoveKeyboard requests clients to remove the custom keyboard
|
||||||
|
// (user will not be able to summon this keyboard;
|
||||||
|
// if you want to hide the keyboard from sight but keep it accessible,
|
||||||
|
// use one_time_keyboard in ReplyKeyboardMarkup).
|
||||||
RemoveKeyboard bool `json:"remove_keyboard"`
|
RemoveKeyboard bool `json:"remove_keyboard"`
|
||||||
|
// Selective use this parameter if you want to remove the keyboard for specific users only.
|
||||||
|
// Targets:
|
||||||
|
// 1) users that are @mentioned in the text of the Message object;
|
||||||
|
// 2) if the bot's message is a reply (has Message.ReplyToMessage not nil), sender of the original message.
|
||||||
|
//
|
||||||
|
// Example: A user votes in a poll, bot returns confirmation message
|
||||||
|
// in reply to the vote and removes the keyboard for that user,
|
||||||
|
// while still showing the keyboard with poll options to users who haven't voted yet.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
Selective bool `json:"selective"`
|
Selective bool `json:"selective"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// InlineKeyboardMarkup is a custom keyboard presented for an inline bot.
|
// InlineKeyboardMarkup is a custom keyboard presented for an inline bot.
|
||||||
type InlineKeyboardMarkup struct {
|
type InlineKeyboardMarkup struct {
|
||||||
|
// InlineKeyboard array of button rows, each represented by an Array of InlineKeyboardButton objects
|
||||||
InlineKeyboard [][]InlineKeyboardButton `json:"inline_keyboard"`
|
InlineKeyboard [][]InlineKeyboardButton `json:"inline_keyboard"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -711,53 +931,187 @@ type InlineKeyboardMarkup struct {
|
||||||
//
|
//
|
||||||
// CallbackGame, if set, MUST be first button in first row.
|
// CallbackGame, if set, MUST be first button in first row.
|
||||||
type InlineKeyboardButton struct {
|
type InlineKeyboardButton struct {
|
||||||
|
// Text label text on the button
|
||||||
Text string `json:"text"`
|
Text string `json:"text"`
|
||||||
URL *string `json:"url,omitempty"` // optional
|
// URL HTTP or tg:// url to be opened when button is pressed.
|
||||||
CallbackData *string `json:"callback_data,omitempty"` // optional
|
//
|
||||||
SwitchInlineQuery *string `json:"switch_inline_query,omitempty"` // optional
|
// optional
|
||||||
SwitchInlineQueryCurrentChat *string `json:"switch_inline_query_current_chat,omitempty"` // optional
|
URL *string `json:"url,omitempty"`
|
||||||
CallbackGame *CallbackGame `json:"callback_game,omitempty"` // optional
|
// CallbackData data to be sent in a callback query to the bot when button is pressed, 1-64 bytes.
|
||||||
Pay bool `json:"pay,omitempty"` // optional
|
//
|
||||||
|
// optional
|
||||||
|
CallbackData *string `json:"callback_data,omitempty"`
|
||||||
|
// SwitchInlineQuery if set, pressing the button will prompt the user to select one of their chats,
|
||||||
|
// open that chat and insert the bot's username and the specified inline query in the input field.
|
||||||
|
// Can be empty, in which case just the bot's username will be inserted.
|
||||||
|
//
|
||||||
|
// This offers an easy way for users to start using your bot
|
||||||
|
// in inline mode when they are currently in a private chat with it.
|
||||||
|
// Especially useful when combined with switch_pm… actions – in this case
|
||||||
|
// the user will be automatically returned to the chat they switched from,
|
||||||
|
// skipping the chat selection screen.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
SwitchInlineQuery *string `json:"switch_inline_query,omitempty"`
|
||||||
|
// SwitchInlineQueryCurrentChat if set, pressing the button will insert the bot's username
|
||||||
|
// and the specified inline query in the current chat's input field.
|
||||||
|
// Can be empty, in which case only the bot's username will be inserted.
|
||||||
|
//
|
||||||
|
// This offers a quick way for the user to open your bot in inline mode
|
||||||
|
// in the same chat – good for selecting something from multiple options.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
SwitchInlineQueryCurrentChat *string `json:"switch_inline_query_current_chat,omitempty"`
|
||||||
|
// CallbackGame description of the game that will be launched when the user presses the button.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CallbackGame *CallbackGame `json:"callback_game,omitempty"`
|
||||||
|
// Pay specify True, to send a Pay button.
|
||||||
|
//
|
||||||
|
// NOTE: This type of button must always be the first button in the first row.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
Pay bool `json:"pay,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// CallbackQuery is data sent when a keyboard button with callback data
|
// CallbackQuery is data sent when a keyboard button with callback data
|
||||||
// is clicked.
|
// is clicked.
|
||||||
type CallbackQuery struct {
|
type CallbackQuery struct {
|
||||||
|
// ID unique identifier for this query
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
|
// From sender
|
||||||
From *User `json:"from"`
|
From *User `json:"from"`
|
||||||
Message *Message `json:"message"` // optional
|
// Message with the callback button that originated the query.
|
||||||
InlineMessageID string `json:"inline_message_id"` // optional
|
// Note that message content and message date will not be available if the message is too old.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
Message *Message `json:"message"`
|
||||||
|
// InlineMessageID identifier of the message sent via the bot in inline mode, that originated the query.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
//
|
||||||
|
InlineMessageID string `json:"inline_message_id"`
|
||||||
|
// ChatInstance global identifier, uniquely corresponding to the chat to which
|
||||||
|
// the message with the callback button was sent. Useful for high scores in games.
|
||||||
|
//
|
||||||
ChatInstance string `json:"chat_instance"`
|
ChatInstance string `json:"chat_instance"`
|
||||||
Data string `json:"data"` // optional
|
// Data associated with the callback button. Be aware that
|
||||||
GameShortName string `json:"game_short_name"` // optional
|
// a bad client can send arbitrary data in this field.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
Data string `json:"data"`
|
||||||
|
// GameShortName short name of a Game to be returned, serves as the unique identifier for the game.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
GameShortName string `json:"game_short_name"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ForceReply allows the Bot to have users directly reply to it without
|
// ForceReply allows the Bot to have users directly reply to it without
|
||||||
// additional interaction.
|
// additional interaction.
|
||||||
type ForceReply struct {
|
type ForceReply struct {
|
||||||
|
// ForceReply shows reply interface to the user,
|
||||||
|
// as if they manually selected the bot's message and tapped 'Reply'.
|
||||||
ForceReply bool `json:"force_reply"`
|
ForceReply bool `json:"force_reply"`
|
||||||
Selective bool `json:"selective"` // optional
|
// Selective use this parameter if you want to force reply from specific users only.
|
||||||
|
// Targets:
|
||||||
|
// 1) users that are @mentioned in the text of the Message object;
|
||||||
|
// 2) if the bot's message is a reply (has Message.ReplyToMessage not nil), sender of the original message.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
Selective bool `json:"selective"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ChatMember is information about a member in a chat.
|
// ChatMember is information about a member in a chat.
|
||||||
type ChatMember struct {
|
type ChatMember struct {
|
||||||
|
// User information about the user
|
||||||
User *User `json:"user"`
|
User *User `json:"user"`
|
||||||
|
// Status the member's status in the chat.
|
||||||
|
// Can be
|
||||||
|
// “creator”,
|
||||||
|
// “administrator”,
|
||||||
|
// “member”,
|
||||||
|
// “restricted”,
|
||||||
|
// “left” or
|
||||||
|
// “kicked”
|
||||||
Status string `json:"status"`
|
Status string `json:"status"`
|
||||||
CustomTitle string `json:"custom_title,omitempty"` // optional
|
// CustomTitle owner and administrators only. Custom title for this user
|
||||||
UntilDate int64 `json:"until_date,omitempty"` // optional
|
//
|
||||||
CanBeEdited bool `json:"can_be_edited,omitempty"` // optional
|
// optional
|
||||||
CanChangeInfo bool `json:"can_change_info,omitempty"` // optional
|
CustomTitle string `json:"custom_title,omitempty"`
|
||||||
CanPostMessages bool `json:"can_post_messages,omitempty"` // optional
|
// UntilDate restricted and kicked only.
|
||||||
CanEditMessages bool `json:"can_edit_messages,omitempty"` // optional
|
// Date when restrictions will be lifted for this user;
|
||||||
CanDeleteMessages bool `json:"can_delete_messages,omitempty"` // optional
|
// unix time.
|
||||||
CanInviteUsers bool `json:"can_invite_users,omitempty"` // optional
|
//
|
||||||
CanRestrictMembers bool `json:"can_restrict_members,omitempty"` // optional
|
// optional
|
||||||
CanPinMessages bool `json:"can_pin_messages,omitempty"` // optional
|
UntilDate int64 `json:"until_date,omitempty"`
|
||||||
CanPromoteMembers bool `json:"can_promote_members,omitempty"` // optional
|
// CanBeEdited administrators only.
|
||||||
CanSendMessages bool `json:"can_send_messages,omitempty"` // optional
|
// True, if the bot is allowed to edit administrator privileges of that user.
|
||||||
CanSendMediaMessages bool `json:"can_send_media_messages,omitempty"` // optional
|
//
|
||||||
CanSendOtherMessages bool `json:"can_send_other_messages,omitempty"` // optional
|
// optional
|
||||||
CanAddWebPagePreviews bool `json:"can_add_web_page_previews,omitempty"` // optional
|
CanBeEdited bool `json:"can_be_edited,omitempty"`
|
||||||
|
// CanChangeInfo administrators and restricted only.
|
||||||
|
// True, if the user is allowed to change the chat title, photo and other settings.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanChangeInfo bool `json:"can_change_info,omitempty"`
|
||||||
|
// CanChangeInfo administrators only.
|
||||||
|
// True, if the administrator can post in the channel;
|
||||||
|
// channels only.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanPostMessages bool `json:"can_post_messages,omitempty"`
|
||||||
|
// CanEditMessages administrators only.
|
||||||
|
// True, if the administrator can edit messages of other users and can pin messages;
|
||||||
|
// channels only.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanEditMessages bool `json:"can_edit_messages,omitempty"`
|
||||||
|
// CanDeleteMessages administrators only.
|
||||||
|
// True, if the administrator can delete messages of other users.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanDeleteMessages bool `json:"can_delete_messages,omitempty"`
|
||||||
|
// CanInviteUsers administrators and restricted only.
|
||||||
|
// True, if the user is allowed to invite new users to the chat.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanInviteUsers bool `json:"can_invite_users,omitempty"`
|
||||||
|
// CanRestrictMembers administrators only.
|
||||||
|
// True, if the administrator can restrict, ban or unban chat members.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanRestrictMembers bool `json:"can_restrict_members,omitempty"`
|
||||||
|
// CanPinMessages
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanPinMessages bool `json:"can_pin_messages,omitempty"`
|
||||||
|
// CanPromoteMembers administrators only.
|
||||||
|
// True, if the administrator can add new administrators
|
||||||
|
// with a subset of their own privileges or demote administrators that he has promoted,
|
||||||
|
// directly or indirectly (promoted by administrators that were appointed by the user).
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanPromoteMembers bool `json:"can_promote_members,omitempty"`
|
||||||
|
// CanSendMessages
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanSendMessages bool `json:"can_send_messages,omitempty"`
|
||||||
|
// CanSendMediaMessages restricted only.
|
||||||
|
// True, if the user is allowed to send text messages, contacts, locations and venues
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanSendMediaMessages bool `json:"can_send_media_messages,omitempty"`
|
||||||
|
// CanSendOtherMessages restricted only.
|
||||||
|
// True, if the user is allowed to send audios, documents,
|
||||||
|
// photos, videos, video notes and voice notes.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanSendOtherMessages bool `json:"can_send_other_messages,omitempty"`
|
||||||
|
// CanAddWebPagePreviews restricted only.
|
||||||
|
// True, if the user is allowed to add web page previews to their messages.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
CanAddWebPagePreviews bool `json:"can_add_web_page_previews,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsCreator returns if the ChatMember was the creator of the chat.
|
// IsCreator returns if the ChatMember was the creator of the chat.
|
||||||
|
@ -777,27 +1131,58 @@ func (chat ChatMember) WasKicked() bool { return chat.Status == "kicked" }
|
||||||
|
|
||||||
// Game is a game within Telegram.
|
// Game is a game within Telegram.
|
||||||
type Game struct {
|
type Game struct {
|
||||||
|
// Title of the game
|
||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
|
// Description of the game
|
||||||
Description string `json:"description"`
|
Description string `json:"description"`
|
||||||
|
// Photo that will be displayed in the game message in chats.
|
||||||
Photo []PhotoSize `json:"photo"`
|
Photo []PhotoSize `json:"photo"`
|
||||||
|
// Text a brief description of the game or high scores included in the game message.
|
||||||
|
// Can be automatically edited to include current high scores for the game
|
||||||
|
// when the bot calls setGameScore, or manually edited using editMessageText. 0-4096 characters.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
Text string `json:"text"`
|
Text string `json:"text"`
|
||||||
|
// TextEntities special entities that appear in text, such as usernames, URLs, bot commands, etc.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
TextEntities []MessageEntity `json:"text_entities"`
|
TextEntities []MessageEntity `json:"text_entities"`
|
||||||
|
// Animation animation that will be displayed in the game message in chats.
|
||||||
|
// Upload via BotFather (https://t.me/botfather).
|
||||||
|
//
|
||||||
|
// optional
|
||||||
Animation Animation `json:"animation"`
|
Animation Animation `json:"animation"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Animation is a GIF animation demonstrating the game.
|
// Animation is a GIF animation demonstrating the game.
|
||||||
type Animation struct {
|
type Animation struct {
|
||||||
|
// FileID identifier for this file, which can be used to download or reuse the file.
|
||||||
FileID string `json:"file_id"`
|
FileID string `json:"file_id"`
|
||||||
|
// Thumb animation thumbnail as defined by sender.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
Thumb PhotoSize `json:"thumb"`
|
Thumb PhotoSize `json:"thumb"`
|
||||||
|
// FileName original animation filename as defined by sender.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
FileName string `json:"file_name"`
|
FileName string `json:"file_name"`
|
||||||
|
// MimeType of the file as defined by sender.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
MimeType string `json:"mime_type"`
|
MimeType string `json:"mime_type"`
|
||||||
|
// FileSize ile size
|
||||||
|
//
|
||||||
|
// optional
|
||||||
FileSize int `json:"file_size"`
|
FileSize int `json:"file_size"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// GameHighScore is a user's score and position on the leaderboard.
|
// GameHighScore is a user's score and position on the leaderboard.
|
||||||
type GameHighScore struct {
|
type GameHighScore struct {
|
||||||
|
// Position in high score table for the game
|
||||||
Position int `json:"position"`
|
Position int `json:"position"`
|
||||||
|
// User user
|
||||||
User User `json:"user"`
|
User User `json:"user"`
|
||||||
|
// Score score
|
||||||
Score int `json:"score"`
|
Score int `json:"score"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -806,12 +1191,27 @@ type CallbackGame struct{}
|
||||||
|
|
||||||
// WebhookInfo is information about a currently set webhook.
|
// WebhookInfo is information about a currently set webhook.
|
||||||
type WebhookInfo struct {
|
type WebhookInfo struct {
|
||||||
|
// URL webhook URL, may be empty if webhook is not set up.
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
|
// HasCustomCertificate true, if a custom certificate was provided for webhook certificate checks.
|
||||||
HasCustomCertificate bool `json:"has_custom_certificate"`
|
HasCustomCertificate bool `json:"has_custom_certificate"`
|
||||||
|
// PendingUpdateCount number of updates awaiting delivery.
|
||||||
PendingUpdateCount int `json:"pending_update_count"`
|
PendingUpdateCount int `json:"pending_update_count"`
|
||||||
LastErrorDate int `json:"last_error_date"` // optional
|
// LastErrorDate unix time for the most recent error
|
||||||
LastErrorMessage string `json:"last_error_message"` // optional
|
// that happened when trying to deliver an update via webhook.
|
||||||
MaxConnections int `json:"max_connections"` // optional
|
//
|
||||||
|
// optional
|
||||||
|
LastErrorDate int `json:"last_error_date"`
|
||||||
|
// LastErrorMessage error message in human-readable format for the most recent error
|
||||||
|
// that happened when trying to deliver an update via webhook.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
LastErrorMessage string `json:"last_error_message"`
|
||||||
|
// MaxConnections maximum allowed number of simultaneous
|
||||||
|
// HTTPS connections to the webhook for update delivery.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
|
MaxConnections int `json:"max_connections"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsSet returns true if a webhook is currently set.
|
// IsSet returns true if a webhook is currently set.
|
||||||
|
@ -821,22 +1221,63 @@ func (info WebhookInfo) IsSet() bool {
|
||||||
|
|
||||||
// InputMediaPhoto contains a photo for displaying as part of a media group.
|
// InputMediaPhoto contains a photo for displaying as part of a media group.
|
||||||
type InputMediaPhoto struct {
|
type InputMediaPhoto struct {
|
||||||
|
// Type of the result, must be photo.
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
|
// Media file to send. Pass a file_id to send a file that
|
||||||
|
// exists on the Telegram servers (recommended),
|
||||||
|
// pass an HTTP URL for Telegram to get a file from the Internet,
|
||||||
|
// or pass “attach://<file_attach_name>” to upload a new one
|
||||||
|
// using multipart/form-data under <file_attach_name> name.
|
||||||
Media string `json:"media"`
|
Media string `json:"media"`
|
||||||
|
// Caption of the photo to be sent, 0-1024 characters after entities parsing.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
Caption string `json:"caption"`
|
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"`
|
ParseMode string `json:"parse_mode"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// InputMediaVideo contains a video for displaying as part of a media group.
|
// InputMediaVideo contains a video for displaying as part of a media group.
|
||||||
type InputMediaVideo struct {
|
type InputMediaVideo struct {
|
||||||
|
// Type of the result, must be video.
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
|
// Media file to send. Pass a file_id to send a file
|
||||||
|
// that exists on the Telegram servers (recommended),
|
||||||
|
// pass an HTTP URL for Telegram to get a file from the Internet,
|
||||||
|
// or pass “attach://<file_attach_name>” to upload a new one
|
||||||
|
// using multipart/form-data under <file_attach_name> name.
|
||||||
Media string `json:"media"`
|
Media string `json:"media"`
|
||||||
// thumb intentionally missing as it is not currently compatible
|
// thumb intentionally missing as it is not currently compatible
|
||||||
|
|
||||||
|
// Caption of the video to be sent, 0-1024 characters after entities parsing.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
Caption string `json:"caption"`
|
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"`
|
ParseMode string `json:"parse_mode"`
|
||||||
|
// Width video width
|
||||||
|
//
|
||||||
|
// optional
|
||||||
Width int `json:"width"`
|
Width int `json:"width"`
|
||||||
|
// Height video height
|
||||||
|
//
|
||||||
|
// optional
|
||||||
Height int `json:"height"`
|
Height int `json:"height"`
|
||||||
|
// Duration video duration
|
||||||
|
//
|
||||||
|
// optional
|
||||||
Duration int `json:"duration"`
|
Duration int `json:"duration"`
|
||||||
|
// SupportsStreaming pass True, if the uploaded video is suitable for streaming.
|
||||||
|
//
|
||||||
|
// optional
|
||||||
SupportsStreaming bool `json:"supports_streaming"`
|
SupportsStreaming bool `json:"supports_streaming"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue