import type { Checklist, ChecklistTasksAdded, ChecklistTasksDone } from "./checklist.js"; import type { Chat, ChatOwnerChanged, ChatOwnerLeft, User } from "./manage.js"; import type { InlineKeyboardMarkup } from "./markup.js"; import type { PassportData } from "./passport.js"; import type { GiftInfo, Invoice, PaidMessagePriceChanged, RefundedPayment, SuccessfulPayment, SuggestedPostApprovalFailed, SuggestedPostApproved, SuggestedPostDeclined, SuggestedPostInfo, SuggestedPostPaid, SuggestedPostPrice, SuggestedPostRefunded, UniqueGiftInfo } from "./payment.js"; type MsgWith
= Record
>;
export declare namespace Message {
interface ServiceMessage {
/** Unique message identifier inside this chat. In specific instances (e.g., message containing a video sent to a big chat), the server might automatically schedule a message instead of sending it immediately. In such cases, this field will be 0 and the relevant message will be unusable until it is actually sent */
message_id: number;
/** Unique identifier of a message thread or forum topic to which the message belongs; for supergroups and private chats only */
message_thread_id?: number;
/** Sender of the message; may be empty for messages sent to channels. For backward compatibility, if the message was sent on behalf of a chat, the field contains a fake sender user in non-channel chats */
from?: User;
/** Sender of the message when sent on behalf of a chat. For example, the supergroup itself for messages sent by its anonymous administrators or a linked channel for messages automatically forwarded to the channel's discussion group. For backward compatibility, if the message was sent on behalf of a chat, the field from contains a fake sender user in non-channel chats. */
sender_chat?: Chat;
/** Date the message was sent in Unix time. It is always a positive number, representing a valid date. */
date: number;
/** Unique identifier of the business connection from which the message was received. If non-empty, the message belongs to a chat of the corresponding business account that is independent from any potential bot chat which might share the same identifier. */
business_connection_id?: string;
/** Chat the message belongs to */
chat: Chat;
/** True, if the message is sent to a topic in a forum supergroup or a private chat with the bot */
is_topic_message?: boolean;
/** Information about the direct messages chat topic that contains the message */
direct_messages_topic?: DirectMessagesTopic;
}
interface CommonMessage extends ServiceMessage {
/** If the sender of the message boosted the chat, the number of boosts added by the user */
sender_boost_count?: number;
/** The bot that actually sent the message on behalf of the business account. Available only for outgoing messages sent on behalf of the connected business account. */
sender_business_bot?: User;
/** Information about the original message for forwarded messages */
forward_origin?: MessageOrigin;
/** True, if the message is a channel post that was automatically forwarded to the connected discussion group */
is_automatic_forward?: true;
/** For replies in the same chat and message thread, the original message. Note that the Message object in this field will not contain further reply_to_message fields even if it itself is a reply. */
reply_to_message?: ReplyMessage;
/** Identifier of the specific checklist task that is being replied to */
reply_to_checklist_task_id?: number;
/** True, if the message is a paid post. Note that such posts must not be deleted for 24 hours to receive the payment and can't be edited. */
is_paid_post?: true;
/** Information about the message that is being replied to, which may come from another chat or forum topic */
external_reply?: ExternalReplyInfo;
/** For replies that quote part of the original message, the quoted part of the message */
quote?: TextQuote;
/** For replies to a story, the original message */
reply_to_story?: Story;
/** Bot through which the message was sent */
via_bot?: User;
/** Date the message was last edited in Unix time */
edit_date?: number;
/** True, if the message can't be forwarded */
has_protected_content?: true;
/** True, if the caption must be shown above the message media */
show_caption_above_media?: true;
/** True, if the message was sent by an implicit action, for example, as an away or a greeting business message, or as a scheduled message */
is_from_offline?: true;
/** Signature of the post author for messages in channels, or the custom title of an anonymous group administrator */
author_signature?: string;
/** Options used for link preview generation for the message, if it is a text message and link preview options were changed */
link_preview_options?: LinkPreviewOptions;
/** Unique identifier of the message effect added to the message */
effect_id?: string;
/** The number of Telegram Stars that were paid by the sender of the message to send it */
paid_star_count?: number;
/** Inline keyboard attached to the message. login_url buttons are represented as ordinary url buttons. */
reply_markup?: InlineKeyboardMarkup;
}
interface CaptionableMessage extends CommonMessage {
/** Caption for the animation, audio, document, photo, video or voice */
caption?: string;
/** For messages with a caption, special entities like usernames, URLs, bot commands, etc. that appear in the caption */
caption_entities?: MessageEntity[];
}
interface MediaMessage extends CaptionableMessage {
/** The unique identifier of a media message group this message belongs to */
media_group_id?: string;
/** True, if the message media is covered by a spoiler animation */
has_media_spoiler?: true;
}
type TextMessage = CommonMessage & MsgWith<"text"> & Partialstrikethrough, strikethrough, strikethrough
spoiler, italic bold strikethrough italic bold strikethrough spoiler underline italic bold bold
inline URL
inline mention of a user
inline fixed-width code
pre-formatted fixed-width code block
pre-formatted fixed-width code block written in the Python programming languageBlock quotation started\nBlock quotation continued\nThe last line of the block quotation
Expandable block quotation started\nExpandable block quotation continued\nExpandable block quotation continued\nHidden by default part of the block quotation started\nExpandable block quotation continued\nThe last line of the block quotation
```
Please note:
- Only the tags mentioned above are currently supported.
- All `<`, `>` and `&` symbols that are not a part of a tag or an HTML entity must be replaced with the corresponding HTML entities (`<` with `<`, `>` with `>` and `&` with `&`).
- All numerical HTML entities are supported.
- The API currently supports only the following named HTML entities: `<`, `>`, `&` and `"`.
- Use nested `pre` and `code` tags, to define programming language for pre entity.
- Programming language can't be specified for standalone `code` tags.
- A valid emoji must be used as the content of the tg-emoji tag. The emoji will be shown instead of the custom emoji in places where a custom emoji cannot be displayed (e.g., system notifications) or if the message is forwarded by a non-premium user. It is recommended to use the emoji from the emoji field of the custom emoji sticker.
- Custom emoji entities can only be used by bots that purchased additional usernames on Fragment.
#### Markdown style
This is a legacy mode, retained for backward compatibility. To use this mode, pass *Markdown* in the *parse_mode* field. Use the following syntax in your message:
```
*bold text*
_italic text_
[inline URL](http://www.example.com/)
[inline mention of a user](tg://user?id=123456789)
`inline fixed-width code`
```
pre-formatted fixed-width code block
```
```python
pre-formatted fixed-width code block written in the Python programming language
```
```
Please note:
- Entities must not be nested, use parse mode MarkdownV2 instead.
- There is no way to specify “underline”, “strikethrough”, “spoiler”, “blockquote”, “expandable_blockquote” and “custom_emoji” entities, use parse mode MarkdownV2 instead.
- To escape characters '_', '*', '`', '[' outside of an entity, prepend the character '\' before them.
- Escaping inside entities is not allowed, so entity must be closed first and reopened again: use `_snake_\__case_` for italic `snake_case` and `*2*\**2=4*` for bold `2*2=4`. */
export type ParseMode = "Markdown" | "MarkdownV2" | "HTML";
export declare namespace MessageEntity {
interface AbstractMessageEntity {
/** Type of the entity. Currently, can be “mention” (`@username`), “hashtag” (#hashtag or `#hashtag@chatusername`), “cashtag” ($USD or `$USD@chatusername`), “bot_command” (`/start@jobs_bot`), “url” (https://telegram.org), “email” (`do-not-reply@telegram.org`), “phone_number” (+1-212-555-0123), “bold” (bold text), “italic” (italic text), “underline” (underlined text), “strikethrough” (strikethrough text), “spoiler” (spoiler message), “blockquote” (block quotation), “expandable_blockquote” (collapsed-by-default block quotation), “code” (monowidth string), “pre” (monowidth block), “text_link” (for clickable text URLs), “text_mention” (for users without usernames), “custom_emoji” (for inline custom emoji stickers) */
type: string;
/** Offset in UTF-16 code units to the start of the entity */
offset: number;
/** Length of the entity in UTF-16 code units */
length: number;
}
interface CommonMessageEntity extends AbstractMessageEntity {
type: "mention" | "hashtag" | "cashtag" | "bot_command" | "url" | "email" | "phone_number" | "bold" | "italic" | "underline" | "strikethrough" | "spoiler" | "blockquote" | "expandable_blockquote" | "code";
}
interface PreMessageEntity extends AbstractMessageEntity {
type: "pre";
/** For “pre” only, the programming language of the entity text */
language?: string;
}
interface TextLinkMessageEntity extends AbstractMessageEntity {
type: "text_link";
/** For “text_link” only, URL that will be opened after user taps on the text */
url: string;
}
interface TextMentionMessageEntity extends AbstractMessageEntity {
type: "text_mention";
/** For “text_mention” only, the mentioned user */
user: User;
}
interface CustomEmojiMessageEntity extends AbstractMessageEntity {
type: "custom_emoji";
/** For “custom_emoji” only, unique identifier of the custom emoji. Use getCustomEmojiStickers to get full information about the sticker */
custom_emoji_id: string;
}
}
/** This object represents one special entity in a text message. For example, hashtags, usernames, URLs, etc. */
export type MessageEntity = MessageEntity.CommonMessageEntity | MessageEntity.CustomEmojiMessageEntity | MessageEntity.PreMessageEntity | MessageEntity.TextLinkMessageEntity | MessageEntity.TextMentionMessageEntity;
/** This object contains information about the quoted part of a message that is replied to by the given message. */
export interface TextQuote {
/** Text of the quoted part of a message that is replied to by the given message */
text: string;
/** Special entities that appear in the quote. Currently, only bold, italic, underline, strikethrough, spoiler, and custom_emoji entities are kept in quotes. */
entities?: MessageEntity[];
/** Approximate quote position in the original message in UTF-16 code units as specified by the sender */
position: number;
/** True, if the quote was chosen manually by the message sender. Otherwise, the quote was added automatically by the server. */
is_manual?: true;
}
/** This object contains information about a message that is being replied to, which may come from another chat or forum topic. */
export interface ExternalReplyInfo {
/** Origin of the message replied to by the given message */
origin: MessageOrigin;
/** Chat the original message belongs to. Available only if the chat is a supergroup or a channel. */
chat?: Chat;
/** Unique message identifier inside the original chat. Available only if the original chat is a supergroup or a channel. */
message_id?: number;
/** Options used for link preview generation for the original message, if it is a text message */
link_preview_options?: LinkPreviewOptions;
/** Message is an animation, information about the animation */
animation?: Animation;
/** Message is an audio file, information about the file */
audio?: Audio;
/** Message is a general file, information about the file */
document?: Document;
/** Message is a photo, available sizes of the photo */
photo?: PhotoSize[];
/** Message is a sticker, information about the sticker */
sticker?: Sticker;
/** Message is a forwarded story */
story?: Story;
/** Message is a video, information about the video */
video?: Video;
/** Message is a video note, information about the video message */
video_note?: VideoNote;
/** Message is a voice message, information about the file */
voice?: Voice;
/** True, if the message media is covered by a spoiler animation */
has_media_spoiler?: true;
/** Message is a shared contact, information about the contact */
contact?: Contact;
/** Message is a dice with random value */
dice?: Dice;
/** Message is a game, information about the game. More about games » */
game?: Game;
/** Message is a scheduled giveaway, information about the giveaway */
giveaway?: Giveaway;
/** A giveaway with public winners was completed */
giveaway_winners?: GiveawayWinners;
/** Message is an invoice for a payment, information about the invoice. More about payments » */
invoice?: Invoice;
/** Message is a shared location, information about the location */
location?: Location;
/** Message contains paid media; information about the paid media */
paid_media?: PaidMediaInfo;
/** Message is a native poll, information about the poll */
poll?: Poll;
/** Message is a checklist */
checklist?: Checklist;
/** Message is a venue, information about the venue */
venue?: Venue;
}
/** Describes reply parameters for the message that is being sent. */
export interface ReplyParameters {
/** Identifier of the message that will be replied to in the current chat, or in the chat chat_id if it is specified */
message_id: number;
/** If the message to be replied to is from a different chat, unique identifier for the chat or username of the channel (in the format `@channelusername`). Not supported for messages sent on behalf of a business account and messages from channel direct messages chats. */
chat_id?: number | string;
/** Identifier of the specific checklist task to be replied to */
checklist_task_id?: number;
/** Pass True if the message should be sent even if the specified message to be replied to is not found; can be used only for replies in the same chat and forum topic. Always True for messages sent on behalf of a business account. */
allow_sending_without_reply?: boolean;
/** Quoted part of the message to be replied to; 0-1024 characters after entities parsing. The quote must be an exact substring of the message to be replied to, including bold, italic, underline, strikethrough, spoiler, and custom_emoji entities. The message will fail to send if the quote isn't found in the original message. */
quote?: string;
/** Mode for parsing entities in the quote. See formatting options for more details. */
quote_parse_mode?: ParseMode;
/** A JSON-serialized list of special entities that appear in the quote. It can be specified instead of quote_parse_mode. */
quote_entities?: MessageEntity[];
/** Position of the quote in the original message in UTF-16 code units */
quote_position?: number;
}
/** This object describes the origin of a message. It can be one of
- MessageOriginUser
- MessageOriginHiddenUser
- MessageOriginChat
- MessageOriginChannel */
export type MessageOrigin = MessageOriginUser | MessageOriginHiddenUser | MessageOriginChat | MessageOriginChannel;
/** The message was originally sent by a known user. */
export interface MessageOriginUser {
/** Type of the message origin, always “user” */
type: "user";
/** Date the message was sent originally in Unix time */
date: number;
/** User that sent the message originally */
sender_user: User;
}
/** The message was originally sent by an unknown user. */
export interface MessageOriginHiddenUser {
/** Type of the message origin, always “hidden_user” */
type: "hidden_user";
/** Date the message was sent originally in Unix time */
date: number;
/** Name of the user that sent the message originally */
sender_user_name: string;
}
/** The message was originally sent on behalf of a chat to a group chat. */
export interface MessageOriginChat {
/** Type of the message origin, always “chat” */
type: "chat";
/** Date the message was sent originally in Unix time */
date: number;
/** Chat that sent the message originally */
sender_chat: Chat;
/** For messages originally sent by an anonymous chat administrator, original message author signature */
author_signature?: string;
}
/** The message was originally sent to a channel chat. */
export interface MessageOriginChannel {
/** Type of the message origin, always “channel” */
type: "channel";
/** Date the message was sent originally in Unix time */
date: number;
/** Channel chat to which the message was originally sent */
chat: Chat.ChannelChat;
/** Unique message identifier inside the chat */
message_id: number;
/** Signature of the original post author */
author_signature?: string;
}
/** This object represents one size of a photo or a file / sticker thumbnail. */
export interface PhotoSize {
/** Identifier for this file, which can be used to download or reuse the file */
file_id: string;
/** 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. */
file_unique_id: string;
/** Photo width */
width: number;
/** Photo height */
height: number;
/** File size in bytes */
file_size?: number;
}
/** This object represents an animation file (GIF or H.264/MPEG-4 AVC video without sound). */
export interface Animation {
/** Identifier for this file, which can be used to download or reuse the file */
file_id: string;
/** 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. */
file_unique_id: string;
/** Video width as defined by sender */
width: number;
/** Video height as defined by sender */
height: number;
/** Duration of the video in seconds as defined by sender */
duration: number;
/** Animation thumbnail as defined by sender */
thumbnail?: PhotoSize;
/** Original animation filename as defined by sender */
file_name?: string;
/** MIME type of the file as defined by sender */
mime_type?: string;
/** File size in bytes */
file_size?: number;
}
/** This object represents an audio file to be treated as music by the Telegram clients. */
export interface Audio {
/** Identifier for this file, which can be used to download or reuse the file */
file_id: string;
/** 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. */
file_unique_id: string;
/** Duration of the audio in seconds as defined by sender */
duration: number;
/** Performer of the audio as defined by sender or by audio tags */
performer?: string;
/** Title of the audio as defined by sender or by audio tags */
title?: string;
/** Original filename as defined by sender */
file_name?: string;
/** MIME type of the file as defined by sender */
mime_type?: string;
/** File size in bytes */
file_size?: number;
/** Thumbnail of the album cover to which the music file belongs */
thumbnail?: PhotoSize;
}
/** This object represents a general file (as opposed to photos, voice messages and audio files). */
export interface Document {
/** Identifier for this file, which can be used to download or reuse the file */
file_id: string;
/** 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. */
file_unique_id: string;
/** Document thumbnail as defined by sender */
thumbnail?: PhotoSize;
/** Original filename as defined by sender */
file_name?: string;
/** MIME type of the file as defined by sender */
mime_type?: string;
/** File size in bytes */
file_size?: number;
}
/** This object represents a story. */
export interface Story {
/** Chat that posted the story */
chat: Chat;
/** Unique identifier for the story in the chat */
id: number;
}
/** This object represents a video file. */
export interface Video {
/** Identifier for this file, which can be used to download or reuse the file */
file_id: string;
/** 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. */
file_unique_id: string;
/** Video width as defined by sender */
width: number;
/** Video height as defined by sender */
height: number;
/** Duration of the video in seconds as defined by sender */
duration: number;
/** Video thumbnail */
thumbnail?: PhotoSize;
/** Available sizes of the cover of the video in the message */
cover?: PhotoSize[];
/** Timestamp in seconds from which the video will play in the message */
start_timestamp?: number;
/** Original filename as defined by sender */
file_name?: string;
/** MIME type of the file as defined by sender */
mime_type?: string;
/** File size in bytes */
file_size?: number;
/** List of available qualities of the video. */
qualities?: VideoQuality[];
}
/** This object represents a video file of a specific quality. */
export interface VideoQuality {
/** Identifier for this file, which can be used to download or reuse the file */
file_id: string;
/** 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. */
file_unique_id: string;
/** Video width */
width: number;
/** Video height */
height: number;
/** Codec that was used to encode the video, for example, “h264”, “h265”, or “av01” */
codec: string;
/** File size in bytes. It can be bigger than 2^31 and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a signed 64-bit integer or double-precision float type are safe for storing this value. */
file_size?: number;
}
/** This object represents a video message (available in Telegram apps as of v.4.0). */
export interface VideoNote {
/** Identifier for this file, which can be used to download or reuse the file */
file_id: string;
/** 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. */
file_unique_id: string;
/** Video width and height (diameter of the video message) as defined by sender */
length: number;
/** Duration of the video in seconds as defined by sender */
duration: number;
/** Video thumbnail */
thumbnail?: PhotoSize;
/** File size in bytes */
file_size?: number;
}
/** This object represents a voice note. */
export interface Voice {
/** Identifier for this file, which can be used to download or reuse the file */
file_id: string;
/** 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. */
file_unique_id: string;
/** Duration of the audio in seconds as defined by sender */
duration: number;
/** MIME type of the file as defined by sender */
mime_type?: string;
/** File size in bytes */
file_size?: number;
}
/** This object represents a phone contact. */
export interface Contact {
/** Contact's phone number */
phone_number: string;
/** Contact's first name */
first_name: string;
/** Contact's last name */
last_name?: string;
/** Contact's user identifier in Telegram. */
user_id?: number;
/** Additional data about the contact in the form of a vCard */
vcard?: string;
}
/** This object represents an animated emoji that displays a random value. */
export interface Dice {
/** Emoji on which the dice throw animation is based */
emoji: string;
/** Value of the dice, 1-6 for "🎲", "🎯" and "🎳" base emoji, 1-5 for "🏀" and "⚽" base emoji, 1-64 for "🎰" base emoji */
value: number;
}
/** This object contains information about one answer option in a poll. */
export interface PollOption {
/** Option text, 1-100 characters */
text: string;
/** Special entities that appear in the option text. Currently, only custom emoji entities are allowed in poll option texts */
text_entities?: MessageEntity[];
/** Number of users that voted for this option */
voter_count: number;
}
/** This object contains information about one answer option in a poll to send. */
export interface InputPollOption {
/** Option text, 1-100 characters */
text: string;
/** Mode for parsing entities in the text. See formatting options for more details. Currently, only custom emoji entities are allowed */
text_parse_mode?: ParseMode;
/** A list of special entities that appear in the poll option text. It can be specified instead of text_parse_mode */
text_entities?: MessageEntity[];
}
/** This object represents an answer of a user in a non-anonymous poll. */
export interface PollAnswer {
/** Unique poll identifier */
poll_id: string;
/** The chat that changed the answer to the poll, if the voter is anonymous */
voter_chat?: Chat;
/** The user that changed the answer to the poll, if the voter isn't anonymous */
user?: User;
/** 0-based identifiers of chosen answer options. May be empty if the vote was retracted. */
option_ids: number[];
}
/** This object contains information about a poll. */
export interface Poll {
/** Unique poll identifier */
id: string;
/** Poll question, 1-300 characters */
question: string;
/** Special entities that appear in the question. Currently, only custom emoji entities are allowed in poll questions */
question_entities?: MessageEntity[];
/** List of poll options */
options: PollOption[];
/** Total number of users that voted in the poll */
total_voter_count: number;
/** True, if the poll is closed */
is_closed: boolean;
/** True, if the poll is anonymous */
is_anonymous: boolean;
/** Poll type, currently can be “regular” or “quiz” */
type: "regular" | "quiz";
/** True, if the poll allows multiple answers */
allows_multiple_answers: boolean;
/** 0-based identifier of the correct answer option. Available only for polls in the quiz mode, which are closed, or was sent (not forwarded) by the bot or to the private chat with the bot. */
correct_option_id?: number;
/** Text that is shown when a user chooses an incorrect answer or taps on the lamp icon in a quiz-style poll, 0-200 characters */
explanation?: string;
/** Special entities like usernames, URLs, bot commands, etc. that appear in the explanation */
explanation_entities?: MessageEntity[];
/** Amount of time in seconds the poll will be active after creation */
open_period?: number;
/** Point in time (Unix timestamp) when the poll will be automatically closed */
close_date?: number;
}
/** This object represents a point on the map. */
export interface Location {
/** Latitude as defined by sender */
latitude: number;
/** Longitude as defined by sender */
longitude: number;
/** The radius of uncertainty for the location, measured in meters; 0-1500 */
horizontal_accuracy?: number;
/** Time relative to the message sending date, during which the location can be updated; in seconds. For active live locations only. */
live_period?: number;
/** The direction in which user is moving, in degrees; 1-360. For active live locations only. */
heading?: number;
/** The maximum distance for proximity alerts about approaching another chat member, in meters. For sent live locations only. */
proximity_alert_radius?: number;
}
/** Describes the paid media added to a message. */
export interface PaidMediaInfo {
/** The number of Telegram Stars that must be paid to buy access to the media */
star_count: number;
/** Information about the paid media */
paid_media: PaidMedia[];
}
/** This object describes paid media. Currently, it can be one of
- PaidMediaPreview
- PaidMediaPhoto
- PaidMediaVideo */
export type PaidMedia = PaidMediaPreview | PaidMediaPhoto | PaidMediaVideo;
/** The paid media isn't available before the payment. */
export interface PaidMediaPreview {
/** Type of the paid media, always “preview” */
type: "preview";
/** Media width as defined by the sender */
width?: number;
/** Media height as defined by the sender */
height?: number;
/** Duration of the media in seconds as defined by the sender */
duration?: number;
}
/** The paid media is a photo. */
export interface PaidMediaPhoto {
/** Type of the paid media, always “photo” */
type: "photo";
/** The photo */
photo: PhotoSize[];
}
/** The paid media is a video. */
export interface PaidMediaVideo {
/** Type of the paid media, always “video” */
type: "video";
/** The video */
video: Video;
}
/** This object represents a venue. */
export interface Venue {
/** Venue location. Can't be a live location */
location: Location;
/** Name of the venue */
title: string;
/** Address of the venue */
address: string;
/** Foursquare identifier of the venue */
foursquare_id?: string;
/** Foursquare type of the venue. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.) */
foursquare_type?: string;
/** Google Places identifier of the venue */
google_place_id?: string;
/** Google Places type of the venue. (See supported types.) */
google_place_type?: string;
}
/** Describes data sent from a Web App to the bot. */
export interface WebAppData {
/** The data. Be aware that a bad client can send arbitrary data in this field. */
data: string;
/** Text of the web_app keyboard button from which the Web App was opened. Be aware that a bad client can send arbitrary data in this field. */
button_text: string;
}
/** This object represents the content of a service message, sent whenever a user in the chat triggers a proximity alert set by another user. */
export interface ProximityAlertTriggered {
/** User that triggered the alert */
traveler: User;
/** User that set the alert */
watcher: User;
/** The distance between the users */
distance: number;
}
/** This object represents a service message about a change in auto-delete timer settings. */
export interface MessageAutoDeleteTimerChanged {
/** New auto-delete time for messages in the chat; in seconds */
message_auto_delete_time: number;
}
/** This object represents a service message about a user boosting a chat. */
export interface ChatBoostAdded {
/** Number of boosts added by the user */
boost_count: number;
}
/** This object describes the way a background is filled based on the selected colors. Currently, it can be one of
- BackgroundFillSolid
- BackgroundFillGradient
- BackgroundFillFreeformGradient */
export type BackgroundFill = BackgroundFillSolid | BackgroundFillGradient | BackgroundFillFreeformGradient;
/** The background is filled using the selected color. */
export interface BackgroundFillSolid {
/** Type of the background fill, always “solid” */
type: "solid";
/** The color of the background fill in the RGB24 format */
color: number;
}
/** The background is a gradient fill. */
export interface BackgroundFillGradient {
/** Type of the background fill, always “gradient” */
type: "gradient";
/** Top color of the gradient in the RGB24 format */
top_color: number;
/** Bottom color of the gradient in the RGB24 format */
bottom_color: number;
/** Clockwise rotation angle of the background fill in degrees; 0-359 */
rotation_angle: number;
}
/** The background is a freeform gradient that rotates after every message in the chat. */
export interface BackgroundFillFreeformGradient {
/** Type of the background fill, always “freeform_gradient” */
type: "freeform_gradient";
/** A list of the 3 or 4 base colors that are used to generate the freeform gradient in the RGB24 format */
colors: number[];
}
/** This object describes the type of a background. Currently, it can be one of
- BackgroundTypeFill
- BackgroundTypeWallpaper
- BackgroundTypePattern
- BackgroundTypeChatTheme
- BackgroundTypeFill */
export type BackgroundType = BackgroundTypeFill | BackgroundTypeWallpaper | BackgroundTypePattern | BackgroundTypeChatTheme;
/** The background is automatically filled based on the selected colors. */
export interface BackgroundTypeFill {
/** Type of the background, always “fill” */
type: "fill";
/** The background fill */
fill: BackgroundFill;
/** Dimming of the background in dark themes, as a percentage; 0-100 */
dark_theme_dimming: number;
}
/** The background is a wallpaper in the JPEG format. */
export interface BackgroundTypeWallpaper {
/** Type of the background, always “wallpaper” */
type: "wallpaper";
/** Document with the wallpaper */
document: Document;
/** Dimming of the background in dark themes, as a percentage; 0-100 */
dark_theme_dimming: number;
/** True, if the wallpaper is downscaled to fit in a 450x450 square and then box-blurred with radius 12 */
is_blurred?: true;
/** True, if the background moves slightly when the device is tilted */
is_moving?: true;
}
/** The background is a .PNG or .TGV (gzipped subset of SVG with MIME type “application/x-tgwallpattern”) pattern to be combined with the background fill chosen by the user. */
export interface BackgroundTypePattern {
/** Type of the background, always “pattern” */
type: "pattern";
/** Document with the pattern */
document: Document;
/** The background fill that is combined with the pattern */
fill: BackgroundFill;
/** Intensity of the pattern when it is shown above the filled background; 0-100 */
intensity: number;
/** True, if the background fill must be applied only to the pattern itself. All other pixels are black in this case. For dark themes only */
is_inverted?: true;
/** True, if the background moves slightly when the device is tilted */
is_moving?: true;
}
/** The background is taken directly from a built-in chat theme. */
export interface BackgroundTypeChatTheme {
/** Type of the background, always “chat_theme” */
type: "chat_theme";
/** Name of the chat theme, which is usually an emoji */
theme_name: string;
}
/** This object represents a chat background. */
export interface ChatBackground {
/** Type of the background*/
type: BackgroundType;
}
/** This object represents a service message about a new forum topic created in the chat. */
export interface ForumTopicCreated {
/** Name of the topic */
name: string;
/** True, if the name of the topic wasn't specified explicitly by its creator and likely needs to be changed by the bot */
is_name_implicit?: true;
/** Color of the topic icon in RGB format */
icon_color: number;
/** Unique identifier of the custom emoji shown as the topic icon */
icon_custom_emoji_id?: string;
}
/** This object represents a service message about an edited forum topic. */
export interface ForumTopicEdited {
/** New name of the topic, if it was edited */
name?: string;
/** New identifier of the custom emoji shown as the topic icon, if it was edited; an empty string if the icon was removed */
icon_custom_emoji_id?: string;
}
/** This object represents a service message about a forum topic closed in the chat. Currently holds no information. */
export interface ForumTopicClosed {
}
/** This object represents a service message about a forum topic reopened in the chat. Currently holds no information. */
export interface ForumTopicReopened {
}
/** This object represents a service message about General forum topic hidden in the chat. Currently holds no information. */
export interface GeneralForumTopicHidden {
}
/** This object represents a service message about General forum topic unhidden in the chat. Currently holds no information. */
export interface GeneralForumTopicUnhidden {
}
/** This object contains information about a user that was shared with the bot using a KeyboardButtonRequestUsers button. */
export interface SharedUser {
/** Identifier of the shared user. The bot may not have access to the user and could be unable to use this identifier, unless the user is already known to the bot by some other means. */
user_id: number;
/** First name of the user, if the name was requested by the bot */
first_name?: string;
/** Last name of the user, if the name was requested by the bot */
last_name?: string;
/** Username of the user, if the username was requested by the bot */
username?: string;
/** Available sizes of the chat photo, if the photo was requested by the bot */
photo?: PhotoSize[];
}
/** This object contains information about the user whose identifier was shared with the bot using a KeyboardButtonRequestUsers button. */
export interface UsersShared {
/** Identifier of the request */
request_id: number;
/** Information about users shared with the bot. */
users: SharedUser[];
}
/** This object contains information about a chat that was shared with the bot using a KeyboardButtonRequestChat button. */
export interface ChatShared {
/** Identifier of the request */
request_id: number;
/** Identifier of the shared chat. The bot may not have access to the chat and could be unable to use this identifier, unless the chat is already known to the bot by some other means. */
chat_id: number;
/** Title of the chat, if the title was requested by the bot. */
title?: string;
/** Username of the chat, if the username was requested by the bot and available. */
username?: string;
/** Available sizes of the chat photo, if the photo was requested by the bot */
photo?: PhotoSize[];
}
/** This object represents a service message about a user allowing a bot to write messages after adding it to the attachment menu, launching a Web App from a link, or accepting an explicit request from a Web App sent by the method requestWriteAccess. */
export interface WriteAccessAllowed {
/** True, if the access was granted after the user accepted an explicit request from a Web App sent by the method requestWriteAccess */
from_request?: boolean;
/** Name of the Web App, if the access was granted when the Web App was launched from a link */
web_app_name?: string;
/** True, if the access was granted when the bot was added to the attachment or side menu */
from_attachment_menu?: boolean;
}
/** Describes a service message about a change in the price of direct messages sent to a channel chat. */
export interface DirectMessagePriceChanged {
/** True, if direct messages are enabled for the channel chat; false otherwise */
are_direct_messages_enabled: boolean;
/** The new number of Telegram Stars that must be paid by users for each direct message sent to the channel. Defaults to 0. */
direct_message_star_count?: number;
}
/** This object represents a service message about a video chat scheduled in the chat. */
export interface VideoChatScheduled {
/** Point in time (Unix timestamp) when the video chat is supposed to be started by a chat administrator */
start_date: number;
}
/** This object represents a service message about a video chat started in the chat. Currently holds no information. */
export interface VideoChatStarted {
}
/** This object represents a service message about a video chat ended in the chat. */
export interface VideoChatEnded {
/** Video chat duration in seconds */
duration: number;
}
/** This object represents a service message about new members invited to a video chat. */
export interface VideoChatParticipantsInvited {
/** New members that were invited to the video chat */
users: User[];
}
/** This object represents a service message about the creation of a scheduled giveaway. */
export interface GiveawayCreated {
/** The number of Telegram Stars to be split between giveaway winners; for Telegram Star giveaways only */
prize_star_count?: number;
}
/** This object represents a message about a scheduled giveaway. */
export interface Giveaway {
/** The list of chats which the user must join to participate in the giveaway */
chats: Chat[];
/** Point in time (Unix timestamp) when winners of the giveaway will be selected */
winners_selection_date: number;
/** The number of users which are supposed to be selected as winners of the giveaway */
winner_count: number;
/** True, if only users who join the chats after the giveaway started should be eligible to win */
only_new_members?: true;
/** True, if the list of giveaway winners will be visible to everyone */
has_public_winners?: true;
/** Description of additional giveaway prize */
prize_description?: string;
/** A list of two-letter ISO 3166-1 alpha-2 country codes indicating the countries from which eligible users for the giveaway must come. If empty, then all users can participate in the giveaway. Users with a phone number that was bought on Fragment can always participate in giveaways. */
country_codes?: string[];
/** The number of Telegram Stars to be split between giveaway winners; for Telegram Star giveaways only */
prize_star_count?: number;
/** The number of months the Telegram Premium subscription won from the giveaway will be active for; for Telegram Premium giveaways only */
premium_subscription_month_count?: number;
}
/** This object represents a message about the completion of a giveaway with public winners. */
export interface GiveawayWinners {
/** The chat that created the giveaway */
chat: Chat;
/** Identifier of the message with the giveaway in the chat */
giveaway_message_id: number;
/** Point in time (Unix timestamp) when winners of the giveaway were selected */
winners_selection_date: number;
/** Total number of winners in the giveaway */
winner_count: number;
/** List of up to 100 winners of the giveaway */
winners: User[];
/** The number of other chats the user had to join in order to be eligible for the giveaway */
additional_chat_count?: number;
/** The number of Telegram Stars that were split between giveaway winners; for Telegram Star giveaways only */
prize_star_count?: number;
/** The number of months the Telegram Premium subscription won from the giveaway will be active for; for Telegram Premium giveaways only */
premium_subscription_month_count?: number;
/** Number of undistributed prizes */
unclaimed_prize_count?: number;
/** True, if only users who had joined the chats after the giveaway started were eligible to win */
only_new_members?: true;
/** True, if the giveaway was canceled because the payment for it was refunded */
was_refunded?: true;
/** Description of additional giveaway prize */
prize_description?: string;
}
/** This object represents a service message about the completion of a giveaway without public winners. */
export interface GiveawayCompleted {
/** Number of winners in the giveaway */
winner_count: number;
/** Number of undistributed prizes */
unclaimed_prize_count?: number;
/** Message with the giveaway that was completed, if it wasn't deleted */
giveaway_message?: Message;
/** True, if the giveaway is a Telegram Star giveaway. Otherwise, currently, the giveaway is a Telegram Premium giveaway. */
is_star_giveaway?: true;
}
/** Describes the options used for link preview generation. */
export interface LinkPreviewOptions {
/** True, if the link preview is disabled */
is_disabled?: boolean;
/** URL to use for the link preview. If empty, then the first URL found in the message text will be used */
url?: string;
/** True, if the media in the link preview is supposed to be shrunk; ignored if the URL isn't explicitly specified or media size change isn't supported for the preview */
prefer_small_media?: boolean;
/** True, if the media in the link preview is supposed to be enlarged; ignored if the URL isn't explicitly specified or media size change isn't supported for the preview */
prefer_large_media?: boolean;
/** True, if the link preview must be shown above the message text; otherwise, the link preview will be shown below the message text */
show_above_text?: boolean;
}
/** This object represents a sticker. */
export interface Sticker {
/** Identifier for this file, which can be used to download or reuse the file */
file_id: string;
/** 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. */
file_unique_id: string;
/** Type of the sticker, currently one of “regular”, “mask”, “custom_emoji”. The type of the sticker is independent from its format, which is determined by the fields is_animated and is_video. */
type: "regular" | "mask" | "custom_emoji";
/** Sticker width */
width: number;
/** Sticker height */
height: number;
/** True, if the sticker is animated */
is_animated: boolean;
/** True, if the sticker is a video sticker */
is_video: boolean;
/** Sticker thumbnail in the .WEBP or .JPG format */
thumbnail?: PhotoSize;
/** Emoji associated with the sticker */
emoji?: string;
/** Name of the sticker set to which the sticker belongs */
set_name?: string;
/** For premium regular stickers, premium animation for the sticker */
premium_animation?: File;
/** For mask stickers, the position where the mask should be placed */
mask_position?: MaskPosition;
/** For custom emoji stickers, unique identifier of the custom emoji */
custom_emoji_id?: string;
/** File size in bytes */
file_size?: number;
}
/** This object represents a sticker set. */
export interface StickerSet {
/** Sticker set name */
name: string;
/** Sticker set title */
title: string;
/** Type of stickers in the set, currently one of “regular”, “mask”, “custom_emoji” */
sticker_type: "regular" | "mask" | "custom_emoji";
/** List of all set stickers */
stickers: Sticker[];
/** Sticker set thumbnail in the .WEBP, .TGS, or .WEBM format */
thumbnail?: PhotoSize;
}
/** This object describes the position on faces where a mask should be placed by default. */
export interface MaskPosition {
/** The part of the face relative to which the mask should be placed. One of “forehead”, “eyes”, “mouth”, or “chin”. */
point: "forehead" | "eyes" | "mouth" | "chin";
/** Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. For example, choosing -1.0 will place mask just to the left of the default mask position. */
x_shift: number;
/** Shift by Y-axis measured in heights of the mask scaled to the face size, from top to bottom. For example, 1.0 will place the mask just below the default mask position. */
y_shift: number;
/** Mask scaling coefficient. For example, 2.0 means double size. */
scale: number;
}
/** This object represents a game. Use BotFather to create and edit games, their short names will act as unique identifiers. */
export interface Game {
/** Title of the game */
title: string;
/** Description of the game */
description: string;
/** Photo that will be displayed in the game message in chats. */
photo: PhotoSize[];
/** 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. */
text: string;
/** Special entities that appear in text, such as usernames, URLs, bot commands, etc. */
text_entities: MessageEntity[];
/** Animation that will be displayed in the game message in chats. Upload via BotFather */
animation: Animation;
}
/** This object represents one row of the high scores table for a game. */
export interface GameHighScore {
/** Position in high score table for the game */
position: number;
/** User */
user: User;
/** Score */
score: number;
}
/** This object represents a file ready to be downloaded. The file can be downloaded via the link https://api.telegram.org/file/bot