diff --git a/packages/core/src/highlevel/client.ts b/packages/core/src/highlevel/client.ts index cbb4ff1a..055ef912 100644 --- a/packages/core/src/highlevel/client.ts +++ b/packages/core/src/highlevel/client.ts @@ -13,7 +13,7 @@ import type { BaseTelegramClientOptions } from './base.js' import { BaseTelegramClient } from './base.js' import type { ITelegramClient } from './client.types.js' import type { RawUpdateInfo } from './updates/types.js' -import type { AllStories, ArrayPaginated, ArrayWithTotal, Boost, BoostSlot, BoostStats, BotChatJoinRequestUpdate, BotCommands, BotReactionCountUpdate, BotReactionUpdate, BotStoppedUpdate, BusinessCallbackQuery, BusinessChatLink, BusinessConnection, BusinessMessage, BusinessWorkHoursDay, CallbackQuery, Chat, ChatEvent, ChatInviteLink, ChatInviteLinkMember, ChatJoinRequestUpdate, ChatMember, ChatMemberUpdate, ChatPreview, ChatlistPreview, ChosenInlineResult, CollectibleInfo, DeleteBusinessMessageUpdate, DeleteMessageUpdate, DeleteStoryUpdate, Dialog, FactCheck, FileDownloadLocation, FileDownloadParameters, ForumTopic, FullChat, GameHighScore, HistoryReadUpdate, InlineCallbackQuery, InlineQuery, InputChatEventFilters, InputDialogFolder, InputFileLike, InputInlineResult, InputMediaLike, InputMediaSticker, InputMessageId, InputPeerLike, InputPrivacyRule, InputReaction, InputStickerSet, InputStickerSetItem, InputText, MaybeDynamic, Message, MessageEffect, MessageMedia, MessageReactions, ParametersSkip2, ParsedUpdate, PeerReaction, PeerStories, Photo, Poll, PollUpdate, PollVoteUpdate, PreCheckoutQuery, RawDocument, ReplyMarkup, SentCode, StarsStatus, StarsTransaction, Sticker, StickerSet, StickerSourceType, StickerType, StoriesStealthMode, Story, StoryInteractions, StoryUpdate, StoryViewer, StoryViewersList, TakeoutSession, TextWithEntities, TypingStatus, UploadFileLike, UploadedFile, User, UserStatusUpdate, UserTypingUpdate } from './types/index.js' +import type { AllStories, ArrayPaginated, ArrayWithTotal, Boost, BoostSlot, BoostStats, BotChatJoinRequestUpdate, BotCommands, BotReactionCountUpdate, BotReactionUpdate, BotStoppedUpdate, BusinessCallbackQuery, BusinessChatLink, BusinessConnection, BusinessMessage, BusinessWorkHoursDay, CallbackQuery, Chat, ChatEvent, ChatInviteLink, ChatInviteLinkMember, ChatJoinRequestUpdate, ChatMember, ChatMemberUpdate, ChatPreview, ChatlistPreview, ChosenInlineResult, CollectibleInfo, DeleteBusinessMessageUpdate, DeleteMessageUpdate, DeleteStoryUpdate, Dialog, FactCheck, FileDownloadLocation, FileDownloadParameters, ForumTopic, FullChat, GameHighScore, HistoryReadUpdate, InlineCallbackQuery, InlineQuery, InputChatEventFilters, InputDialogFolder, InputFileLike, InputInlineResult, InputMediaLike, InputMediaSticker, InputMessageId, InputPeerLike, InputPrivacyRule, InputReaction, InputStickerSet, InputStickerSetItem, InputText, MaybeDynamic, Message, MessageEffect, MessageMedia, MessageReactions, ParametersSkip2, ParsedUpdate, PeerReaction, PeerStories, Photo, Poll, PollUpdate, PollVoteUpdate, PreCheckoutQuery, RawDocument, ReplyMarkup, SentCode, StarGift, StarsStatus, StarsTransaction, Sticker, StickerSet, StickerType, StoriesStealthMode, Story, StoryInteractions, StoryUpdate, StoryViewer, StoryViewersList, TakeoutSession, TextWithEntities, TypingStatus, UploadFileLike, UploadedFile, User, UserStarGift, UserStatusUpdate, UserTypingUpdate } from './types/index.js' import type { StringSessionData } from './utils/string-session.js' import type { ITelegramStorageProvider } from './storage/provider.js' import { Conversation } from './types/conversation.js' @@ -43,11 +43,13 @@ import { getBotMenuButton } from './methods/bots/get-bot-menu-button.js' import { getCallbackAnswer } from './methods/bots/get-callback-answer.js' import { getGameHighScores, getInlineGameHighScores } from './methods/bots/get-game-high-scores.js' import { getMyCommands } from './methods/bots/get-my-commands.js' +import { prepareInlineMessage } from './methods/bots/prepare-inline-message.js' import { setBotInfo } from './methods/bots/set-bot-info.js' import { setBotMenuButton } from './methods/bots/set-bot-menu-button.js' import { setGameScore, setInlineGameScore } from './methods/bots/set-game-score.js' import { setMyCommands } from './methods/bots/set-my-commands.js' import { setMyDefaultRights } from './methods/bots/set-my-default-rights.js' +import { toggleEmojiStatusPermission } from './methods/bots/toggle-emoji-status-permission.js' import { addChatMembers } from './methods/chats/add-chat-members.js' import { archiveChats } from './methods/chats/archive-chats.js' import { banChatMember } from './methods/chats/ban-chat-member.js' @@ -206,6 +208,7 @@ import { changeCloudPassword } from './methods/password/change-cloud-password.js import { enableCloudPassword } from './methods/password/enable-cloud-password.js' import { cancelPasswordEmail, resendPasswordEmail, verifyPasswordEmail } from './methods/password/password-email.js' import { removeCloudPassword } from './methods/password/remove-cloud-password.js' +import { acceptStarGift } from './methods/premium/accept-star-gift.js' import { applyBoost } from './methods/premium/apply-boost.js' import type { CanApplyBoostResult } from './methods/premium/can-apply-boost.js' import { canApplyBoost } from './methods/premium/can-apply-boost.js' @@ -216,9 +219,13 @@ import { getBoosts } from './methods/premium/get-boosts.js' import { getBusinessChatLinks } from './methods/premium/get-business-chat-links.js' import { getBusinessConnection } from './methods/premium/get-business-connection.js' import { getMyBoostSlots } from './methods/premium/get-my-boost-slots.js' +import { getStarGiftOptions } from './methods/premium/get-star-gift-options.js' +import { getStarGifts } from './methods/premium/get-star-gifts.js' import { getStarsTransactions } from './methods/premium/get-stars-transactions.js' import { iterBoosters } from './methods/premium/iter-boosters.js' +import { iterStarGifts } from './methods/premium/iter-star-gifts.js' import { iterStarsTransactions } from './methods/premium/iter-stars-transactions.js' +import { sendStarGift } from './methods/premium/send-star-gift.js' import { setBusinessIntro } from './methods/premium/set-business-intro.js' import { setBusinessWorkHours } from './methods/premium/set-business-work-hours.js' import { addStickerToSet } from './methods/stickers/add-sticker-to-set.js' @@ -249,7 +256,6 @@ import { iterAllStories } from './methods/stories/iter-all-stories.js' import { iterProfileStories } from './methods/stories/iter-profile-stories.js' import { iterStoryViewers } from './methods/stories/iter-story-viewers.js' import { readStories } from './methods/stories/read-stories.js' -import { reportStory } from './methods/stories/report-story.js' import { sendStoryReaction } from './methods/stories/send-story-reaction.js' import { sendStory } from './methods/stories/send-story.js' import { togglePeerStoriesArchived } from './methods/stories/toggle-peer-stories-archived.js' @@ -268,9 +274,9 @@ import { isPeerAvailable } from './methods/users/is-peer-available.js' import { iterProfilePhotos } from './methods/users/iter-profile-photos.js' import { resolvePeerMany } from './methods/users/resolve-peer-many.js' import { resolveChannel, resolvePeer, resolveUser } from './methods/users/resolve-peer.js' +import { setEmojiStatus, setMyEmojiStatus } from './methods/users/set-emoji-status.js' import { setGlobalTtl } from './methods/users/set-global-ttl.js' import { setMyBirthday } from './methods/users/set-my-birthday.js' -import { setMyEmojiStatus } from './methods/users/set-my-emoji-status.js' import { setMyProfilePhoto } from './methods/users/set-my-profile-photo.js' import { setMyUsername } from './methods/users/set-my-username.js' import { setOffline } from './methods/users/set-offline.js' @@ -981,6 +987,26 @@ export interface TelegramClient extends ITelegramClient { */ langCode?: string }): Promise + /** + * Prepare an inline message result to be sent later via the + * `shareMessage` [mini-app api method](https://core.telegram.org/bots/webapps#initializing-mini-apps). + */ + prepareInlineMessage( + params: { + userId: InputPeerLike + result: InputInlineResult + filter?: tl.TypeInlineQueryPeerType[] | { + /** private chat with the bot itself */ + botSelf?: boolean + /** private chats */ + private?: boolean + /** private chats with other bots */ + bots?: boolean + chats?: boolean + supergroups?: boolean + channels?: boolean + } + }): Promise /** * Sets information about a bot the current uzer owns (or the current bot) * **Available**: ✅ both users and bots @@ -1119,6 +1145,16 @@ export interface TelegramClient extends ITelegramClient { /** The default chat permissions. */ rights: Omit }): Promise + /** + * Give or revoke permission for a bot to update emoji status for your account + */ + toggleEmojiStatusPermission( + params: { + /** Bot to which the permission should be granted/revoked */ + userId: InputPeerLike + /** Whether to grant or revoke permission */ + allow: boolean + }): Promise /** * Add one or more new members to a group, supergroup or channel. * @@ -2423,6 +2459,15 @@ export interface TelegramClient extends ITelegramClient { * the stream will be buffered in memory and the file size will be inferred from the buffer. */ requireFileSize?: boolean + + /** + * When using `inputMediaUploadedPhoto` (e.g. when sending an uploaded photo) require + * the file extension to be known beforehand. + * + * This will make the library try to guess the file extension from the file mime type, + * or throw an error if it cannot be guessed. + */ + requireExtension?: boolean }): Promise /** * Upload a media to Telegram servers, without actually @@ -2728,6 +2773,13 @@ export interface TelegramClient extends ITelegramClient { * approved by an admin */ withApproval?: boolean + + /** + * When a pricing plan is passed, this link will become a paid subscription link + * + * Currently the only allowed `.period` is 1 month, i.e. `2592000` + */ + subscriptionPricing?: tl.TypeStarsSubscriptionPricing }): Promise /** * Edit an invite link. You can only edit non-primary @@ -3212,13 +3264,13 @@ export interface TelegramClient extends ITelegramClient { */ getCallbackQueryMessage( id: - | CallbackQuery - | tl.RawUpdateBotCallbackQuery - | { - messageId: number - queryId: tl.Long - peer: InputPeerLike - }): Promise + | CallbackQuery + | tl.RawUpdateBotCallbackQuery + | { + messageId: number + queryId: tl.Long + peer: InputPeerLike + }): Promise // public version of the same method because why not /** * Get discussion message for some channel post. @@ -3890,14 +3942,14 @@ export interface TelegramClient extends ITelegramClient { */ sendCopyGroup( params: SendCopyGroupParams & - ( - | { + ( + | { /** Source chat ID */ - fromChatId: InputPeerLike - /** Message IDs to forward */ - messages: number[] - } - | { messages: Message[] } + fromChatId: InputPeerLike + /** Message IDs to forward */ + messages: number[] + } + | { messages: Message[] } )): Promise /** * Copy a message (i.e. send the same message, but do not forward it). @@ -3911,14 +3963,14 @@ export interface TelegramClient extends ITelegramClient { */ sendCopy( params: SendCopyParams & - ( - | { + ( + | { /** Source chat ID */ - fromChatId: InputPeerLike - /** Message ID to forward */ - message: number - } - | { message: Message } + fromChatId: InputPeerLike + /** Message ID to forward */ + message: number + } + | { message: Message } )): Promise /** * Send a group of media. @@ -4325,6 +4377,24 @@ export interface TelegramClient extends ITelegramClient { * @param password 2FA password as plaintext */ removeCloudPassword(password: string): Promise + + /** + * Accept, hide or convert a star gift. + * + * **Available**: 👤 users only + * + * @returns Whether the action was successful + */ + acceptStarGift( + params: InputMessageId & { + /** + * Action to perform on the gift. + * - `save` - save the gift to your profile + * - `hide` - hide the gift from your profile + * - `convert` - convert the gift to stars (can't be undone) + */ + action: 'save' | 'hide' | 'convert' + }): Promise /** * Boost a given channel * @@ -4442,6 +4512,37 @@ export interface TelegramClient extends ITelegramClient { * */ getMyBoostSlots(): Promise + + /** + * Get the list of available star gifts. + * **Available**: 👤 users only + * + */ + getStarGiftOptions(): Promise + + /** + * Get a list of gifts sent to a user. + * + * **Available**: 👤 users only + * + * @param userId User whose gifts to fetch + * @returns Gifts sent to the user + */ + getStarGifts( + userId: InputPeerLike, + params?: { + /** + * Offset for pagination. + */ + offset?: string + + /** + * Maximum number of gifts to fetch. + * + * @default 100 + */ + limit?: number + }): Promise> /** * Get Telegram Stars transactions for a given peer. * @@ -4502,6 +4603,35 @@ export interface TelegramClient extends ITelegramClient { */ chunkSize?: number }): AsyncIterableIterator + + /** + * Iterate over gifts sent to a given user. + * + * Wrapper over {@link getStarGifts} + * + * **Available**: 👤 users only + * + * @param peerId Peer ID + * @param params Additional parameters + */ + iterStarGifts( + peerId: InputPeerLike, + params?: Parameters[2] & { + /** + * Total number of gifts to fetch + * + * @default Infinity, i.e. fetch all gifts + */ + limit?: number + + /** + * Number of gifts to fetch per request + * Usually you don't need to change this + * + * @default 100 + */ + chunkSize?: number + }): AsyncIterableIterator /** * Iterate over Telegram Stars transactions for a given peer. * @@ -4533,6 +4663,42 @@ export interface TelegramClient extends ITelegramClient { */ chunkSize?: number }): AsyncIterableIterator + /** + * Send a star gift to a user. + * + * > **Note**: this method is not indended to be used by full-fledged clients, + * > as this method hides the actual invoice and payment form from the user. + * > For GUI clients, you should refer to the method's source code and + * > present the payment form to the user. + * + * **Available**: 👤 users only + * + * @returns Service message about the sent gift + */ + sendStarGift( + params: { + /** ID of the user to send the gift to */ + userId: InputPeerLike + + /** ID of the gift to send */ + gift: Long | StarGift + + /** + * Whether to send the gift anonymously + * (i.e. if the recipient chooses to display the gift + * on their profile, your name won't be visible) + */ + anonymous?: boolean + + /** Message to send along with the gift */ + message?: InputText + + /** + * Whether to dispatch the new message event + * to the client's update handler. + */ + shouldDispatch?: true + }): Promise /** * Set current user's business introduction. @@ -4645,13 +4811,6 @@ export interface TelegramClient extends ITelegramClient { */ type?: StickerType - /** - * File source type for the stickers in this set. - * - * @default `static`, i.e. regular WEBP stickers. - */ - sourceType?: StickerSourceType - /** * Whether to create "adaptive" emoji set. * @@ -5141,27 +5300,6 @@ export interface TelegramClient extends ITelegramClient { * @returns IDs of the stores that were marked as read */ readStories(peerId: InputPeerLike, maxId: number): Promise - /** - * Report a story (or multiple stories) to the moderation team - * **Available**: 👤 users only - * - */ - reportStory( - peerId: InputPeerLike, - storyIds: MaybeArray, - params?: { - /** - * Reason for reporting - * - * @default inputReportReasonSpam - */ - reason?: tl.TypeReportReason - - /** - * Additional comment to the report - */ - message?: string - }): Promise /** * Send (or remove) a reaction to a story * **Available**: 👤 users only @@ -5480,6 +5618,40 @@ export interface TelegramClient extends ITelegramClient { */ resolveChannel( peerId: InputPeerLike, force?: boolean): Promise + /** + * Set an emoji status for the current user + * + * **Available**: ✅ both users and bots + * + * @deprecated – use {@link setEmojiStatus} with `self` instead + */ + setMyEmojiStatus( + emoji: tl.Long | null, + params?: { + /** + * Date when the emoji status should expire (only if `emoji` is not `null`) + */ + until?: number | Date + }): Promise + /** + * Set an emoji status for the given user/chat + * + * You can change emoji status of: + * - yourself (`self`) + * - supergroups or channels with enough boosts which you are an admin of + * - for bots – users who gave you the appropriate permissions + */ + setEmojiStatus( + params: { + /** User or chat where the emoji status should be set */ + peerId: InputPeerLike + /** Custom emoji ID or `null` to remove the emoji */ + emoji: tl.Long | null + /** + * Date when the emoji status should expire (only if `emoji` is not `null`) + */ + until?: number | Date + }): Promise /** * Changes the current default value of the Time-To-Live setting, * applied to all new chats. @@ -5504,21 +5676,6 @@ export interface TelegramClient extends ITelegramClient { /** Birthday year (optional) */ year?: number } | null): Promise - /** - * Set an emoji status for the current user - * - * **Available**: 👤 users only - * - * @param emoji Custom emoji ID or `null` to remove the emoji - */ - setMyEmojiStatus( - emoji: tl.Long | null, - params?: { - /** - * Date when the emoji status should expire (only if `emoji` is not `null`) - */ - until?: number | Date - }): Promise /** * Set a new profile photo or video for the current user. * @@ -5646,6 +5803,7 @@ export class TelegramClient implements ITelegramClient { Object.defineProperty(this, 'onServerUpdate', { value: this._client.onServerUpdate }) Object.defineProperty(this, 'onRawUpdate', { value: this._client.onServerUpdate }) Object.defineProperty(this, 'onConnectionState', { value: this._client.onConnectionState }) + Object.defineProperty(this, 'onError', { value: this._client.onError }) if (!opts.disableUpdates) { const skipConversationUpdates = opts.skipConversationUpdates ?? true @@ -5826,6 +5984,9 @@ TelegramClient.prototype.getInlineGameHighScores = function (...args) { TelegramClient.prototype.getMyCommands = function (...args) { return getMyCommands(this._client, ...args) } +TelegramClient.prototype.prepareInlineMessage = function (...args) { + return prepareInlineMessage(this._client, ...args) +} TelegramClient.prototype.setBotInfo = function (...args) { return setBotInfo(this._client, ...args) } @@ -5844,6 +6005,9 @@ TelegramClient.prototype.setMyCommands = function (...args) { TelegramClient.prototype.setMyDefaultRights = function (...args) { return setMyDefaultRights(this._client, ...args) } +TelegramClient.prototype.toggleEmojiStatusPermission = function (...args) { + return toggleEmojiStatusPermission(this._client, ...args) +} TelegramClient.prototype.addChatMembers = function (...args) { return addChatMembers(this._client, ...args) } @@ -6327,6 +6491,9 @@ TelegramClient.prototype.cancelPasswordEmail = function (...args) { TelegramClient.prototype.removeCloudPassword = function (...args) { return removeCloudPassword(this._client, ...args) } +TelegramClient.prototype.acceptStarGift = function (...args) { + return acceptStarGift(this._client, ...args) +} TelegramClient.prototype.applyBoost = function (...args) { return applyBoost(this._client, ...args) } @@ -6357,15 +6524,27 @@ TelegramClient.prototype.getBusinessConnection = function (...args) { TelegramClient.prototype.getMyBoostSlots = function (...args) { return getMyBoostSlots(this._client, ...args) } +TelegramClient.prototype.getStarGiftOptions = function (...args) { + return getStarGiftOptions(this._client, ...args) +} +TelegramClient.prototype.getStarGifts = function (...args) { + return getStarGifts(this._client, ...args) +} TelegramClient.prototype.getStarsTransactions = function (...args) { return getStarsTransactions(this._client, ...args) } TelegramClient.prototype.iterBoosters = function (...args) { return iterBoosters(this._client, ...args) } +TelegramClient.prototype.iterStarGifts = function (...args) { + return iterStarGifts(this._client, ...args) +} TelegramClient.prototype.iterStarsTransactions = function (...args) { return iterStarsTransactions(this._client, ...args) } +TelegramClient.prototype.sendStarGift = function (...args) { + return sendStarGift(this._client, ...args) +} TelegramClient.prototype.setBusinessIntro = function (...args) { return setBusinessIntro(this._client, ...args) } @@ -6456,9 +6635,6 @@ TelegramClient.prototype.iterStoryViewers = function (...args) { TelegramClient.prototype.readStories = function (...args) { return readStories(this._client, ...args) } -TelegramClient.prototype.reportStory = function (...args) { - return reportStory(this._client, ...args) -} TelegramClient.prototype.sendStoryReaction = function (...args) { return sendStoryReaction(this._client, ...args) } @@ -6524,15 +6700,18 @@ TelegramClient.prototype.resolveUser = function (...args) { TelegramClient.prototype.resolveChannel = function (...args) { return resolveChannel(this._client, ...args) } +TelegramClient.prototype.setMyEmojiStatus = function (...args) { + return setMyEmojiStatus(this._client, ...args) +} +TelegramClient.prototype.setEmojiStatus = function (...args) { + return setEmojiStatus(this._client, ...args) +} TelegramClient.prototype.setGlobalTtl = function (...args) { return setGlobalTtl(this._client, ...args) } TelegramClient.prototype.setMyBirthday = function (...args) { return setMyBirthday(this._client, ...args) } -TelegramClient.prototype.setMyEmojiStatus = function (...args) { - return setMyEmojiStatus(this._client, ...args) -} TelegramClient.prototype.setMyProfilePhoto = function (...args) { return setMyProfilePhoto(this._client, ...args) } diff --git a/packages/core/src/highlevel/methods.ts b/packages/core/src/highlevel/methods.ts index e0b11150..122f6074 100644 --- a/packages/core/src/highlevel/methods.ts +++ b/packages/core/src/highlevel/methods.ts @@ -24,12 +24,14 @@ export { getCallbackAnswer } from './methods/bots/get-callback-answer.js' export { getGameHighScores } from './methods/bots/get-game-high-scores.js' export { getInlineGameHighScores } from './methods/bots/get-game-high-scores.js' export { getMyCommands } from './methods/bots/get-my-commands.js' +export { prepareInlineMessage } from './methods/bots/prepare-inline-message.js' export { setBotInfo } from './methods/bots/set-bot-info.js' export { setBotMenuButton } from './methods/bots/set-bot-menu-button.js' export { setGameScore } from './methods/bots/set-game-score.js' export { setInlineGameScore } from './methods/bots/set-game-score.js' export { setMyCommands } from './methods/bots/set-my-commands.js' export { setMyDefaultRights } from './methods/bots/set-my-default-rights.js' +export { toggleEmojiStatusPermission } from './methods/bots/toggle-emoji-status-permission.js' export { addChatMembers } from './methods/chats/add-chat-members.js' export { archiveChats } from './methods/chats/archive-chats.js' export { banChatMember } from './methods/chats/ban-chat-member.js' @@ -273,9 +275,10 @@ export { resolvePeerMany } from './methods/users/resolve-peer-many.js' export { resolvePeer } from './methods/users/resolve-peer.js' export { resolveUser } from './methods/users/resolve-peer.js' export { resolveChannel } from './methods/users/resolve-peer.js' +export { setMyEmojiStatus } from './methods/users/set-emoji-status.js' +export { setEmojiStatus } from './methods/users/set-emoji-status.js' export { setGlobalTtl } from './methods/users/set-global-ttl.js' export { setMyBirthday } from './methods/users/set-my-birthday.js' -export { setMyEmojiStatus } from './methods/users/set-my-emoji-status.js' export { setMyProfilePhoto } from './methods/users/set-my-profile-photo.js' export { setMyUsername } from './methods/users/set-my-username.js' export { setOffline } from './methods/users/set-offline.js' diff --git a/packages/core/src/highlevel/methods/bots/prepare-inline-message.ts b/packages/core/src/highlevel/methods/bots/prepare-inline-message.ts new file mode 100644 index 00000000..bd92587b --- /dev/null +++ b/packages/core/src/highlevel/methods/bots/prepare-inline-message.ts @@ -0,0 +1,86 @@ +import type { tl } from '@mtcute/tl' +import { objectKeys } from '@fuman/utils' + +import type { ITelegramClient } from '../../client.types.js' +import type { InputInlineResult } from '../../types/bots/inline-result/types.js' +import { BotInline, type InputPeerLike } from '../../types/index.js' +import { assertNever } from '../../../types/utils.js' +import { resolveUser } from '../users/resolve-peer.js' + +/** + * Prepare an inline message result to be sent later via the + * `shareMessage` [mini-app api method](https://core.telegram.org/bots/webapps#initializing-mini-apps). + */ +export async function prepareInlineMessage( + client: ITelegramClient, + params: { + userId: InputPeerLike + result: InputInlineResult + + /** + * Filters for the client to use when prompting the user for the + * chat to send the inline message to. + * + * Note that this is just a hint for the client, and the client is free to ignore it. + */ + filter?: tl.TypeInlineQueryPeerType[] | { + /** private chat with the bot itself */ + botSelf?: boolean + /** private chats */ + private?: boolean + /** private chats with other bots */ + bots?: boolean + /** "basic" chats */ + chats?: boolean + /** supergroups */ + supergroups?: boolean + /** broadcast channels */ + channels?: boolean + } + }, +): Promise { + let peerTypes: tl.TypeInlineQueryPeerType[] | undefined + + if (params.filter) { + if (Array.isArray(params.filter)) { + peerTypes = params.filter + } else { + peerTypes = [] + + for (const key of objectKeys(params.filter)) { + if (!params.filter[key]) continue + switch (key) { + case 'botSelf': + peerTypes.push({ _: 'inlineQueryPeerTypeBotPM' }) + break + case 'private': + peerTypes.push({ _: 'inlineQueryPeerTypePM' }) + break + case 'bots': + peerTypes.push({ _: 'inlineQueryPeerTypeBroadcast' }) + break + case 'chats': + peerTypes.push({ _: 'inlineQueryPeerTypeChat' }) + break + case 'supergroups': + peerTypes.push({ _: 'inlineQueryPeerTypeMegagroup' }) + break + case 'channels': + peerTypes.push({ _: 'inlineQueryPeerTypeBroadcast' }) + break + default: + assertNever(key) + } + } + } + } + + const [, tlResult] = await BotInline._convertToTl(client, [params.result]) + + return client.call({ + _: 'messages.savePreparedInlineMessage', + userId: await resolveUser(client, params.userId), + result: tlResult[0], + peerTypes, + }) +} diff --git a/packages/core/src/highlevel/methods/bots/toggle-emoji-status-permission.ts b/packages/core/src/highlevel/methods/bots/toggle-emoji-status-permission.ts new file mode 100644 index 00000000..b2647896 --- /dev/null +++ b/packages/core/src/highlevel/methods/bots/toggle-emoji-status-permission.ts @@ -0,0 +1,30 @@ +import { assertTrue } from '../../../utils/type-assertions.js' +import type { ITelegramClient } from '../../client.types.js' +import type { InputPeerLike } from '../../types/index.js' +import { resolveUser } from '../users/resolve-peer.js' + +/** + * Give or revoke permission for a bot to update emoji status for your account + */ +export async function toggleEmojiStatusPermission( + client: ITelegramClient, + params: { + /** Bot to which the permission should be granted/revoked */ + userId: InputPeerLike + /** Whether to grant or revoke permission */ + allow: boolean + }, +): Promise { + const { + userId, + allow, + } = params + + const r = await client.call({ + _: 'bots.toggleUserEmojiStatusPermission', + bot: await resolveUser(client, userId), + enabled: allow, + }) + + assertTrue('bots.toggleUserEmojiStatusPermission', r) +} diff --git a/packages/core/src/highlevel/methods/invite-links/create-invite-link.ts b/packages/core/src/highlevel/methods/invite-links/create-invite-link.ts index d068b015..eb02e4f4 100644 --- a/packages/core/src/highlevel/methods/invite-links/create-invite-link.ts +++ b/packages/core/src/highlevel/methods/invite-links/create-invite-link.ts @@ -1,3 +1,5 @@ +import type { tl } from '@mtcute/tl' + import type { ITelegramClient } from '../../client.types.js' import type { InputPeerLike } from '../../types/index.js' import { ChatInviteLink } from '../../types/index.js' @@ -37,6 +39,13 @@ export async function createInviteLink( * approved by an admin */ withApproval?: boolean + + /** + * When a pricing plan is passed, this link will become a paid subscription link + * + * Currently the only allowed `.period` is 1 month, i.e. `2592000` + */ + subscriptionPricing?: tl.TypeStarsSubscriptionPricing }, ): Promise { if (!params) params = {} @@ -47,6 +56,7 @@ export async function createInviteLink( expireDate: normalizeDate(params.expires), usageLimit: params.usageLimit, requestNeeded: params.withApproval, + subscriptionPricing: params.subscriptionPricing, }) return new ChatInviteLink(res) diff --git a/packages/core/src/highlevel/methods/messages/forward-messages.ts b/packages/core/src/highlevel/methods/messages/forward-messages.ts index 62f300c3..8fd81a8f 100644 --- a/packages/core/src/highlevel/methods/messages/forward-messages.ts +++ b/packages/core/src/highlevel/methods/messages/forward-messages.ts @@ -70,6 +70,13 @@ export interface ForwardMessageOptions { * to the client's update handler. */ shouldDispatch?: true + + /** + * Bots only: if set, allows sending up to 1000 messages per second, + * ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. + * The Stars will be withdrawn from the bot's balance. + */ + allowPaidFloodskip?: boolean } /** @@ -91,7 +98,18 @@ export async function forwardMessagesById( messages: number[] }, ): Promise { - const { messages, toChatId, fromChatId, silent, schedule, forbidForwards, sendAs, noAuthor, noCaption } = params + const { + messages, + toChatId, + fromChatId, + silent, + schedule, + forbidForwards, + sendAs, + noAuthor, + noCaption, + allowPaidFloodskip, + } = params // sending more than 100 will not result in a server-sent // error, instead only first 100 IDs will be forwarded, @@ -115,6 +133,7 @@ export async function forwardMessagesById( noforwards: forbidForwards, sendAs: sendAs ? await resolvePeer(client, sendAs) : undefined, quickReplyShortcut: _normalizeQuickReplyShortcut(params.quickReply), + allowPaidFloodskip, }) assertIsUpdatesGroup('messages.forwardMessages', res) diff --git a/packages/core/src/highlevel/methods/messages/send-common.ts b/packages/core/src/highlevel/methods/messages/send-common.ts index 76a42cb6..f3fd3e09 100644 --- a/packages/core/src/highlevel/methods/messages/send-common.ts +++ b/packages/core/src/highlevel/methods/messages/send-common.ts @@ -118,6 +118,13 @@ export interface CommonSendParams { */ businessConnectionId?: string + /** + * Bots only: if set, allows sending up to 1000 messages per second, + * ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. + * The Stars will be withdrawn from the bot's balance. + */ + allowPaidFloodskip?: boolean + /** * ID of a message effect to use when sending the message * (see {@link TelegramClient.getAvailableMessageEffects}) diff --git a/packages/core/src/highlevel/methods/messages/send-media-group.ts b/packages/core/src/highlevel/methods/messages/send-media-group.ts index 394b21dd..32ed0b64 100644 --- a/packages/core/src/highlevel/methods/messages/send-media-group.ts +++ b/packages/core/src/highlevel/methods/messages/send-media-group.ts @@ -117,6 +117,7 @@ export async function sendMediaGroup( invertMedia: params.invertMedia, quickReplyShortcut, effect: params.effect, + allowPaidFloodskip: params.allowPaidFloodskip, }, { chainId }, ) diff --git a/packages/core/src/highlevel/methods/messages/send-media.ts b/packages/core/src/highlevel/methods/messages/send-media.ts index 76c9fb07..25c44736 100644 --- a/packages/core/src/highlevel/methods/messages/send-media.ts +++ b/packages/core/src/highlevel/methods/messages/send-media.ts @@ -113,6 +113,7 @@ export async function sendMedia( invertMedia: params.invert, quickReplyShortcut, effect: params.effect, + allowPaidFloodskip: params.allowPaidFloodskip, }, { chainId }, ) diff --git a/packages/core/src/highlevel/methods/messages/send-text.ts b/packages/core/src/highlevel/methods/messages/send-text.ts index c6ef394b..0e02ccb2 100644 --- a/packages/core/src/highlevel/methods/messages/send-text.ts +++ b/packages/core/src/highlevel/methods/messages/send-text.ts @@ -85,6 +85,7 @@ export async function sendText( invertMedia: params.invertMedia, quickReplyShortcut, effect: params.effect, + allowPaidFloodskip: params.allowPaidFloodskip, }, { chainId }, ) diff --git a/packages/core/src/highlevel/methods/users/set-emoji-status.ts b/packages/core/src/highlevel/methods/users/set-emoji-status.ts new file mode 100644 index 00000000..def016f0 --- /dev/null +++ b/packages/core/src/highlevel/methods/users/set-emoji-status.ts @@ -0,0 +1,106 @@ +import type { tl } from '@mtcute/tl' + +import { assertTrue } from '../../../utils/type-assertions.js' +import type { ITelegramClient } from '../../client.types.js' +import { isInputPeerChannel, isInputPeerUser, normalizeDate, toInputChannel, toInputUser } from '../../utils/index.js' +import type { InputPeerLike } from '../../types/peers/peer.js' +import { isSelfPeer } from '../auth/utils.js' +import { MtInvalidPeerTypeError } from '../../types/errors.js' + +import { resolvePeer } from './resolve-peer.js' + +/** + * Set an emoji status for the current user + * + * @deprecated – use {@link setEmojiStatus} with `self` instead + */ +export async function setMyEmojiStatus( + client: ITelegramClient, + emoji: tl.Long | null, + params?: { + /** + * Date when the emoji status should expire (only if `emoji` is not `null`) + */ + until?: number | Date + }, +): Promise { + return setEmojiStatus(client, { + peerId: 'self', + emoji, + until: params?.until, + }) +} + +/** + * Set an emoji status for the given user/chat + * + * You can change emoji status of: + * - yourself (`self`) + * - supergroups or channels with enough boosts which you are an admin of + * - for bots – users who gave you the appropriate permissions + */ +export async function setEmojiStatus( + client: ITelegramClient, + params: { + /** User or chat where the emoji status should be set */ + peerId: InputPeerLike + /** Custom emoji ID or `null` to remove the emoji */ + emoji: tl.Long | null + /** + * Date when the emoji status should expire (only if `emoji` is not `null`) + */ + until?: number | Date + }, +): Promise { + const { + peerId, + emoji, + until, + } = params + + const peer = await resolvePeer(client, peerId) + + let emojiStatus: tl.TypeEmojiStatus + + if (emoji === null) { + emojiStatus = { _: 'emojiStatusEmpty' } + } else if (until) { + emojiStatus = { + _: 'emojiStatusUntil', + documentId: emoji, + until: normalizeDate(until), + } + } else { + emojiStatus = { + _: 'emojiStatus', + documentId: emoji, + } + } + + if (isSelfPeer(client, peer)) { + const r = await client.call({ + _: 'account.updateEmojiStatus', + emojiStatus, + }) + + assertTrue('account.updateEmojiStatus', r) + } else if (isInputPeerChannel(peer)) { + const r = await client.call({ + _: 'channels.updateEmojiStatus', + channel: toInputChannel(peer), + emojiStatus, + }) + + client.handleClientUpdate(r) + } else if (isInputPeerUser(peer)) { + const r = await client.call({ + _: 'bots.updateUserEmojiStatus', + userId: toInputUser(peer), + emojiStatus, + }) + + assertTrue('bots.updateUserEmojiStatus', r) + } else { + throw new MtInvalidPeerTypeError(peerId, 'user or channel') + } +} diff --git a/packages/core/src/highlevel/methods/users/set-my-emoji-status.ts b/packages/core/src/highlevel/methods/users/set-my-emoji-status.ts deleted file mode 100644 index b62d8de8..00000000 --- a/packages/core/src/highlevel/methods/users/set-my-emoji-status.ts +++ /dev/null @@ -1,47 +0,0 @@ -import type { tl } from '@mtcute/tl' - -import { assertTrue } from '../../../utils/type-assertions.js' -import type { ITelegramClient } from '../../client.types.js' -import { normalizeDate } from '../../utils/index.js' - -/** - * Set an emoji status for the current user - * - * @param emoji Custom emoji ID or `null` to remove the emoji - */ -export async function setMyEmojiStatus( - client: ITelegramClient, - emoji: tl.Long | null, - params?: { - /** - * Date when the emoji status should expire (only if `emoji` is not `null`) - */ - until?: number | Date - }, -): Promise { - const { until } = params ?? {} - - let emojiStatus: tl.TypeEmojiStatus - - if (emoji === null) { - emojiStatus = { _: 'emojiStatusEmpty' } - } else if (until) { - emojiStatus = { - _: 'emojiStatusUntil', - documentId: emoji, - until: normalizeDate(until), - } - } else { - emojiStatus = { - _: 'emojiStatus', - documentId: emoji, - } - } - - const r = await client.call({ - _: 'account.updateEmojiStatus', - emojiStatus, - }) - - assertTrue('account.updateEmojiStatus', r) -} diff --git a/packages/core/src/highlevel/types/messages/message-action.ts b/packages/core/src/highlevel/types/messages/message-action.ts index d9d9a2ed..93b97e7f 100644 --- a/packages/core/src/highlevel/types/messages/message-action.ts +++ b/packages/core/src/highlevel/types/messages/message-action.ts @@ -1,4 +1,5 @@ import type { tl } from '@mtcute/tl' +import Long from 'long' import { getMarkedPeerId } from '../../../utils/peer-utils.js' import type { CallDiscardReason } from '../calls/index.js' @@ -162,6 +163,9 @@ export interface ActionPaymentReceived { /** Payment provider ID */ readonly charge?: tl.TypePaymentCharge + + /** If this is a subscription being bought, the date when the subscription will expire */ + readonly subscriptionUntilDate?: Date } /** A payment was sent to a user */ @@ -177,6 +181,9 @@ export interface ActionPaymentSent { * `US$ 1.45`, `amount = 145` */ readonly amount: tl.Long + + /** If this is a subscription being bought, the date when the subscription will expire */ + readonly subscriptionUntilDate?: Date } /** A phone call */ @@ -368,6 +375,9 @@ export interface ActionPremiumGifted { /** Price in the smallest units */ amount: number } + + /** Message attached to the gift */ + message?: TextWithEntities } /** A photo has been suggested as a profile photo */ @@ -433,6 +443,9 @@ export interface ActionGiftCode { /** Information about the gift code */ raw: tl.RawMessageActionGiftCode + + /** Message attached to the gift */ + message?: TextWithEntities } /** A Telergam Premium giveaway was started */ @@ -530,7 +543,10 @@ export interface ActionStarGift { saved: boolean /** Whether this gift was converted to stars */ converted: boolean - /** Amount of stars the gift can be converted to by the recipient */ + /** + * Amount of stars the gift can be converted to by the recipient + * (0 if the gift cannot be converted) + */ convertStars: tl.Long /** The gift itself */ gift: StarGift @@ -679,12 +695,20 @@ export function _messageActionFromTl(this: Message, act: tl.TypeMessageAction): info: act.info, shippingOptionId: act.shippingOptionId, charge: act.charge, + subscriptionUntilDate: + act.subscriptionUntilDate + ? new Date(act.subscriptionUntilDate * 1000) + : undefined, } case 'messageActionPaymentSent': return { type: 'payment_sent', currency: act.currency, amount: act.totalAmount, + subscriptionUntilDate: + act.subscriptionUntilDate + ? new Date(act.subscriptionUntilDate * 1000) + : undefined, } case 'messageActionPhoneCall': return { @@ -797,6 +821,7 @@ export function _messageActionFromTl(this: Message, act: tl.TypeMessageAction): amount: act.cryptoAmount.toNumber(), } : undefined, + message: act.message, } case 'messageActionSuggestProfilePhoto': return { @@ -826,6 +851,7 @@ export function _messageActionFromTl(this: Message, act: tl.TypeMessageAction): return { type: 'gift_code', raw: act, + message: act.message, } case 'messageActionGiveawayLaunch': return { @@ -875,7 +901,7 @@ export function _messageActionFromTl(this: Message, act: tl.TypeMessageAction): nameHidden: act.nameHidden!, saved: act.saved!, converted: act.converted!, - convertStars: act.convertStars, + convertStars: act.convertStars ?? Long.ZERO, gift: new StarGift(act.gift), message: act.message ?? null, } diff --git a/packages/core/src/highlevel/types/messages/message.ts b/packages/core/src/highlevel/types/messages/message.ts index 8183f9e1..01cf0aa6 100644 --- a/packages/core/src/highlevel/types/messages/message.ts +++ b/packages/core/src/highlevel/types/messages/message.ts @@ -498,6 +498,11 @@ export class Message { return this.raw.effect ?? null } + /** Whether this message has a video that is still being processed */ + get videoProcessingPending(): boolean { + return this.raw._ === 'message' && this.raw.videoProcessingPending! + } + /** * Generated permalink to this message, only for groups and channels * diff --git a/packages/core/src/highlevel/types/peers/full-chat.ts b/packages/core/src/highlevel/types/peers/full-chat.ts index b779780e..628c6692 100644 --- a/packages/core/src/highlevel/types/peers/full-chat.ts +++ b/packages/core/src/highlevel/types/peers/full-chat.ts @@ -201,9 +201,26 @@ export class FullChat extends Chat { return this.fullPeer?.boostsUnrestrict ?? 0 } + /** Number of star gifts the user has chosen to display on their profile */ + get starGiftsCount(): number { + if (this.fullPeer._ !== 'userFull') return 0 + + return this.fullPeer?.stargiftsCount ?? 0 + } + /** Whether the current user can view Telegram Stars revenue for this chat */ get canViewStarsRevenue(): boolean { - return this.fullPeer._ === 'channelFull' && this.fullPeer.canViewStats! + return this.fullPeer._ === 'channelFull' && this.fullPeer.canViewStarsRevenue! + } + + /** Whether the current user can view ad revenue for this chat */ + get canViewAdRevenue(): boolean { + return this.fullPeer._ === 'channelFull' && this.fullPeer.canViewRevenue! + } + + /** If this chat is a bot, whether the current user can manage its emoji status */ + get canManageBotEmojiStatus(): boolean { + return this.fullPeer._ === 'userFull' && this.fullPeer.botCanManageEmojiStatus! } /** diff --git a/packages/core/src/highlevel/types/premium/stars-gift.ts b/packages/core/src/highlevel/types/premium/stars-gift.ts index 89e4eacf..6c1ca0c7 100644 --- a/packages/core/src/highlevel/types/premium/stars-gift.ts +++ b/packages/core/src/highlevel/types/premium/stars-gift.ts @@ -23,6 +23,33 @@ export class StarGift { return this.raw.id } + /** Whether this gift sold out and cannot be bought anymore */ + get isSoldOut(): boolean { + return this.raw.soldOut! + } + + /** Whether this gift has limited availability */ + get isLimited(): boolean { + return this.raw.limited! + } + + /** Additional information for sold-out gifts */ + get soldOutInfo(): { + /** Date when the first gift was bought */ + firstSale: Date + /** Date when the last gift was bought */ + lastSale: Date + } | null { + if (this.raw.firstSaleDate == null || this.raw.lastSaleDate == null) { + return null + } + + return { + firstSale: new Date(this.raw.firstSaleDate * 1000), + lastSale: new Date(this.raw.lastSaleDate * 1000), + } + } + /** Sticker associated with the gift */ get sticker(): Sticker { assertTypeIs('StarGift#sticker', this.raw.sticker, 'document') @@ -52,7 +79,7 @@ export class StarGift { * the number of remaining and total gifts available */ get availability(): { remains: number, total: number } | null { - if (!this.raw.availabilityRemains || !this.raw.availabilityTotal) { + if (this.raw.availabilityRemains == null || this.raw.availabilityTotal == null) { return null } diff --git a/packages/core/src/highlevel/types/premium/stars-transaction.ts b/packages/core/src/highlevel/types/premium/stars-transaction.ts index 2c68abfa..54b75c58 100644 --- a/packages/core/src/highlevel/types/premium/stars-transaction.ts +++ b/packages/core/src/highlevel/types/premium/stars-transaction.ts @@ -26,6 +26,8 @@ import { StarGift } from './stars-gift.js' * - `bot_purchase`: This transaction is a purchase at a bot-operated store * - `channel_subscription`: This transaction is a subscription to a channel * - `star_gift`: This transaction is either a star gift to a user (if outgoing), or converting a star gift to stars (if incoming) + * - `api_*`: This transaction is a payment for paid API features + * - `api_floodskip`: This transaction is a payment for a paid bot broadcast */ export type StarsTransactionType = | { type: 'unsupported' } @@ -123,6 +125,11 @@ export type StarsTransactionType = /** The gift */ gift: StarGift } + | { + type: 'api_floodskip' + /** The number of billed API calls */ + count: number + } export class StarsTransaction { constructor( @@ -200,6 +207,15 @@ export class StarsTransaction { } case 'starsTransactionPeerAds': return { type: 'ads' } + case 'starsTransactionPeerAPI': + if (this.raw.floodskipNumber != null) { + return { + type: 'api_floodskip', + count: this.raw.floodskipNumber, + } + } + + return { type: 'unsupported' } case 'starsTransactionPeer': { const peer = parsePeer(this.raw.peer.peer, this.peers) diff --git a/packages/tl/README.md b/packages/tl/README.md index e8818803..c11ee6ce 100644 --- a/packages/tl/README.md +++ b/packages/tl/README.md @@ -2,7 +2,7 @@ TL schema and related utils used for mtcute. -Generated from TL layer **189** (last updated on 05.10.2024). +Generated from TL layer **194** (last updated on 20.11.2024). ## About diff --git a/packages/tl/api-schema.json b/packages/tl/api-schema.json index 4aae1a10..15ad1c99 100644 --- a/packages/tl/api-schema.json +++ b/packages/tl/api-schema.json @@ -1 +1 @@ -{"l":189,"e":[{"kind":"class","name":"error","type":"Error","id":3300522427,"comment":"Error.","arguments":[{"name":"code","type":"int","comment":"Error code"},{"name":"text","type":"string","comment":"Message"}]},{"kind":"class","name":"ipPort","id":3560156531,"type":"IpPort","arguments":[{"name":"ipv4","type":"int"},{"name":"port","type":"int"}]},{"kind":"class","name":"ipPortSecret","id":932718150,"type":"IpPort","arguments":[{"name":"ipv4","type":"int"},{"name":"port","type":"int"},{"name":"secret","type":"bytes"}]},{"kind":"class","name":"accessPointRule","id":1182381663,"type":"AccessPointRule","arguments":[{"name":"phone_prefix_rules","type":"string"},{"name":"dc_id","type":"int"},{"name":"ips","type":"IpPort","typeModifiers":{"isBareVector":true}}]},{"kind":"class","name":"help.configSimple","id":1515793004,"type":"help.ConfigSimple","arguments":[{"name":"date","type":"int"},{"name":"expires","type":"int"},{"name":"rules","type":"AccessPointRule","typeModifiers":{"isBareVector":true}}]},{"kind":"class","name":"inputPeerPhotoFileLocationLegacy","id":668375447,"type":"InputFileLocation","arguments":[{"name":"flags","type":"#"},{"name":"big","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"peer","type":"InputPeer"},{"name":"volume_id","type":"long"},{"name":"local_id","type":"int"}]},{"kind":"class","name":"inputStickerSetThumbLegacy","id":230353641,"type":"InputFileLocation","arguments":[{"name":"stickerset","type":"InputStickerSet"},{"name":"volume_id","type":"long"},{"name":"local_id","type":"int"}]},{"kind":"class","name":"inputPeerEmpty","type":"InputPeer","id":2134579434,"comment":"An empty constructor, no user or chat is defined.","arguments":[]},{"kind":"class","name":"inputPeerSelf","type":"InputPeer","id":2107670217,"comment":"Defines the current user.","arguments":[]},{"kind":"class","name":"inputPeerChat","type":"InputPeer","id":900291769,"comment":"Defines a chat for further interaction.","arguments":[{"name":"chat_id","type":"int53","comment":"Chat identifier"}]},{"kind":"class","name":"inputPeerUser","type":"InputPeer","id":3723011404,"comment":"Defines a user for further interaction.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"access_hash","type":"long","comment":"access_hash value from the {@link RawUser} constructor"}]},{"kind":"class","name":"inputPeerChannel","type":"InputPeer","id":666680316,"comment":"Defines a channel for further interaction.","arguments":[{"name":"channel_id","type":"int53","comment":"Channel identifier"},{"name":"access_hash","type":"long","comment":"access_hash value from the {@link RawChannel} constructor"}]},{"kind":"class","name":"inputPeerUserFromMessage","type":"InputPeer","id":2826635804,"comment":"Defines a min user that was seen in a certain message of a certain chat.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where the user was seen"},{"name":"msg_id","type":"int","comment":"The message ID"},{"name":"user_id","type":"int53","comment":"The identifier of the user that was seen"}]},{"kind":"class","name":"inputPeerChannelFromMessage","type":"InputPeer","id":3173648448,"comment":"Defines a min channel that was seen in a certain message of a certain chat.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where the channel's message was seen"},{"name":"msg_id","type":"int","comment":"The message ID"},{"name":"channel_id","type":"int53","comment":"The identifier of the channel that was seen"}]},{"kind":"class","name":"inputUserEmpty","type":"InputUser","id":3112732367,"comment":"Empty constructor, does not define a user.","arguments":[]},{"kind":"class","name":"inputUserSelf","type":"InputUser","id":4156666175,"comment":"Defines the current user.","arguments":[]},{"kind":"class","name":"inputUser","type":"InputUser","id":4061223110,"comment":"Defines a user for further interaction.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"access_hash","type":"long","comment":"access_hash value from the {@link RawUser} constructor"}]},{"kind":"class","name":"inputUserFromMessage","type":"InputUser","id":497305826,"comment":"Defines a min user that was seen in a certain message of a certain chat.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where the user was seen"},{"name":"msg_id","type":"int","comment":"The message ID"},{"name":"user_id","type":"int53","comment":"The identifier of the user that was seen"}]},{"kind":"class","name":"inputPhoneContact","type":"InputContact","id":4086478836,"comment":"Phone contact.","arguments":[{"name":"client_id","type":"long","comment":"An arbitrary 64-bit integer: it should be set, for example, to an incremental number when using {@link contacts.RawImportContactsRequest}, in order to retry importing only the contacts that weren't imported successfully, according to the client_ids returned in {@link contacts.RawImportedContacts}.retry_contacts."},{"name":"phone","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"Contact's first name"},{"name":"last_name","type":"string","comment":"Contact's last name"}]},{"kind":"class","name":"inputFile","type":"InputFile","id":4113560191,"comment":"Defines a file saved in parts using the method {@link upload.RawSaveFilePartRequest}.","arguments":[{"name":"id","type":"long","comment":"Random file identifier created by the client"},{"name":"parts","type":"int","comment":"Number of parts saved"},{"name":"name","type":"string","comment":"Full name of the file"},{"name":"md5_checksum","type":"string","comment":"In case the file's md5-hash was passed, contents of the file will be checked prior to use"}]},{"kind":"class","name":"inputFileBig","type":"InputFile","id":4199484341,"comment":"Assigns a big file (over 10 MB in size), saved in part using the method {@link upload.RawSaveBigFilePartRequest}.","arguments":[{"name":"id","type":"long","comment":"Random file id, created by the client"},{"name":"parts","type":"int","comment":"Number of parts saved"},{"name":"name","type":"string","comment":"Full file name"}]},{"kind":"class","name":"inputFileStoryDocument","type":"InputFile","id":1658620744,"comment":"Used to edit the thumbnail/static preview of a story, see here » for more info on the full flow.","arguments":[{"name":"id","type":"InputDocument","comment":"The old story video."}]},{"kind":"class","name":"inputMediaEmpty","type":"InputMedia","id":2523198847,"comment":"Empty media content of a message.","arguments":[]},{"kind":"class","name":"inputMediaUploadedPhoto","type":"InputMedia","id":505969924,"comment":"Photo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"file","type":"InputFile","comment":"The uploaded file"},{"name":"stickers","type":"InputDocument","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Attached mask stickers"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Time to live in seconds of self-destructing photo"}]},{"kind":"class","name":"inputMediaPhoto","type":"InputMedia","id":3015312949,"comment":"Forwarded photo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"id","type":"InputPhoto","comment":"Photo to be forwarded"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Time to live in seconds of self-destructing photo"}]},{"kind":"class","name":"inputMediaGeoPoint","type":"InputMedia","id":4190388548,"comment":"Map.","arguments":[{"name":"geo_point","type":"InputGeoPoint","comment":"GeoPoint"}]},{"kind":"class","name":"inputMediaContact","type":"InputMedia","id":4171988475,"comment":"Phone book contact","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"Contact's first name"},{"name":"last_name","type":"string","comment":"Contact's last name"},{"name":"vcard","type":"string","comment":"Contact vcard"}]},{"kind":"class","name":"inputMediaUploadedDocument","type":"InputMedia","id":1530447553,"comment":"New document","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"nosound_video","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the specified document is a video file with no audio tracks (a GIF animation (even as MPEG4), for example)"},{"name":"force_file","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Force the media file to be uploaded as document"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"file","type":"InputFile","comment":"The uploaded file"},{"name":"thumb","type":"InputFile","typeModifiers":{"predicate":"flags.2"},"comment":"Thumbnail of the document, uploaded as for the file"},{"name":"mime_type","type":"string","comment":"MIME type of document"},{"name":"attributes","type":"DocumentAttribute","typeModifiers":{"isVector":true},"comment":"Attributes that specify the type of the document (video, audio, voice, sticker, etc.)"},{"name":"stickers","type":"InputDocument","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Attached stickers"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Time to live in seconds of self-destructing document"}]},{"kind":"class","name":"inputMediaDocument","type":"InputMedia","id":860303448,"comment":"Forwarded document","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"id","type":"InputDocument","comment":"The document to be forwarded."},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Time to live of self-destructing document"},{"name":"query","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Text query or emoji that was used by the user to find this sticker or GIF: used to improve search result relevance."}]},{"kind":"class","name":"inputMediaVenue","type":"InputMedia","id":3242007569,"comment":"Can be used to send a venue geolocation.","arguments":[{"name":"geo_point","type":"InputGeoPoint","comment":"Geolocation"},{"name":"title","type":"string","comment":"Venue name"},{"name":"address","type":"string","comment":"Physical address of the venue"},{"name":"provider","type":"string","comment":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported"},{"name":"venue_id","type":"string","comment":"Venue ID in the provider's database"},{"name":"venue_type","type":"string","comment":"Venue type in the provider's database"}]},{"kind":"class","name":"inputMediaPhotoExternal","type":"InputMedia","id":3854302746,"comment":"New photo that will be uploaded by the server using the specified URL","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"url","type":"string","comment":"URL of the photo"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Self-destruct time to live of photo"}]},{"kind":"class","name":"inputMediaDocumentExternal","type":"InputMedia","id":4216511641,"comment":"Document that will be downloaded by the telegram servers","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"url","type":"string","comment":"URL of the document"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Self-destruct time to live of document"}]},{"kind":"class","name":"inputMediaGame","type":"InputMedia","id":3544138739,"comment":"A game","arguments":[{"name":"id","type":"InputGame","comment":"The game to forward"}]},{"kind":"class","name":"inputMediaInvoice","type":"InputMedia","id":1080028941,"comment":"Generated invoice of a bot payment","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Product name, 1-32 characters"},{"name":"description","type":"string","comment":"Product description, 1-255 characters"},{"name":"photo","type":"InputWebDocument","typeModifiers":{"predicate":"flags.0"},"comment":"URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for."},{"name":"invoice","type":"Invoice","comment":"The actual invoice"},{"name":"payload","type":"bytes","comment":"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes."},{"name":"provider","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Payments provider token, obtained via Botfather"},{"name":"provider_data","type":"DataJSON","comment":"JSON-encoded data about the invoice, which will be shared with the payment provider. A detailed description of required fields should be provided by the payment provider."},{"name":"start_param","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Unique bot deep links start parameter. If present, forwarded copies of the sent message will have a URL button with a deep link to the bot (instead of a Pay button), with the value used as the start parameter. If absent, forwarded copies of the sent message will have a Pay button, allowing multiple users to pay directly from the forwarded message, using the same invoice."},{"name":"extended_media","type":"InputMedia","typeModifiers":{"predicate":"flags.2"},"comment":"Deprecated"}]},{"kind":"class","name":"inputMediaGeoLive","type":"InputMedia","id":2535434307,"comment":"Live geolocation","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"stopped","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether sending of the geolocation was stopped"},{"name":"geo_point","type":"InputGeoPoint","comment":"Current geolocation"},{"name":"heading","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"For live locations, a direction in which the location moves, in degrees; 1-360."},{"name":"period","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Validity period of the current location"},{"name":"proximity_notification_radius","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)"}]},{"kind":"class","name":"inputMediaPoll","type":"InputMedia","id":261416433,"comment":"A poll","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"poll","type":"Poll","comment":"The poll to send"},{"name":"correct_answers","type":"bytes","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Correct answer IDs (for quiz polls)"},{"name":"solution","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Explanation of quiz solution"},{"name":"solution_entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"}]},{"kind":"class","name":"inputMediaDice","type":"InputMedia","id":3866083195,"comment":"Send a dice-based animated sticker","arguments":[{"name":"emoticon","type":"string","comment":"The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported"}]},{"kind":"class","name":"inputMediaStory","type":"InputMedia","id":2315114360,"comment":"Forwarded story","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the story was posted"},{"name":"id","type":"int","comment":"Story ID"}]},{"kind":"class","name":"inputMediaWebPage","type":"InputMedia","id":3256584265,"comment":"Specifies options that will be used to generate the link preview for the caption, or even a standalone link preview without an attached message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force_large_media","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, specifies that a large media preview should be used."},{"name":"force_small_media","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, specifies that a small media preview should be used."},{"name":"optional","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If not set, a WEBPAGE_NOT_FOUND RPC error will be emitted if a webpage preview cannot be generated for the specified url; otherwise, no error will be emitted (unless the provided message is also empty, in which case a MESSAGE_EMPTY will be emitted, instead)."},{"name":"url","type":"string","comment":"The URL to use for the link preview."}]},{"kind":"class","name":"inputMediaPaidMedia","id":3289396102,"type":"InputMedia","arguments":[{"name":"flags","type":"#"},{"name":"stars_amount","type":"long","comment":"The price of the media in Telegram Stars."},{"name":"extended_media","type":"InputMedia","typeModifiers":{"isVector":true},"comment":"Photos or videos."},{"name":"payload","type":"string","typeModifiers":{"predicate":"flags.0"}}],"comment":"Paid media, see here » for more info."},{"kind":"class","name":"inputChatPhotoEmpty","type":"InputChatPhoto","id":480546647,"comment":"Empty constructor, remove group photo.","arguments":[]},{"kind":"class","name":"inputChatUploadedPhoto","type":"InputChatPhoto","id":3184373440,"comment":"New photo to be set as group profile photo.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"file","type":"InputFile","typeModifiers":{"predicate":"flags.0"},"comment":"File saved in parts using the method {@link upload.RawSaveFilePartRequest}"},{"name":"video","type":"InputFile","typeModifiers":{"predicate":"flags.1"},"comment":"Square video for animated profile picture"},{"name":"video_start_ts","type":"double","typeModifiers":{"predicate":"flags.2"},"comment":"Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set."},{"name":"video_emoji_markup","type":"VideoSize","typeModifiers":{"predicate":"flags.3"},"comment":"Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor."}]},{"kind":"class","name":"inputChatPhoto","type":"InputChatPhoto","id":2303962423,"comment":"Existing photo to be set as a chat profile photo.","arguments":[{"name":"id","type":"InputPhoto","comment":"Existing photo"}]},{"kind":"class","name":"inputGeoPointEmpty","type":"InputGeoPoint","id":3837862870,"comment":"Empty GeoPoint constructor.","arguments":[]},{"kind":"class","name":"inputGeoPoint","type":"InputGeoPoint","id":1210199983,"comment":"Defines a GeoPoint by its coordinates.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"lat","type":"double","comment":"Latitude"},{"name":"long","type":"double","comment":"Longitude"},{"name":"accuracy_radius","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"The estimated horizontal accuracy of the location, in meters; as defined by the sender."}]},{"kind":"class","name":"inputPhotoEmpty","type":"InputPhoto","id":483901197,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"inputPhoto","type":"InputPhoto","id":1001634122,"comment":"Defines a photo for further interaction.","arguments":[{"name":"id","type":"long","comment":"Photo identifier"},{"name":"access_hash","type":"long","comment":"access_hash value from the {@link RawPhoto} constructor"},{"name":"file_reference","type":"bytes","comment":"File reference"}]},{"kind":"class","name":"inputFileLocation","type":"InputFileLocation","id":3755650017,"comment":"DEPRECATED location of a photo","arguments":[{"name":"volume_id","type":"long","comment":"Server volume"},{"name":"local_id","type":"int","comment":"File identifier"},{"name":"secret","type":"long","comment":"Check sum to access the file"},{"name":"file_reference","type":"bytes","comment":"File reference"}]},{"kind":"class","name":"inputEncryptedFileLocation","type":"InputFileLocation","id":4112735573,"comment":"Location of encrypted secret chat file.","arguments":[{"name":"id","type":"long","comment":"File ID, id parameter value from {@link RawEncryptedFile}"},{"name":"access_hash","type":"long","comment":"Checksum, access_hash parameter value from {@link RawEncryptedFile}"}]},{"kind":"class","name":"inputDocumentFileLocation","type":"InputFileLocation","id":3134223748,"comment":"Document location (video, voice, audio, basically every type except photo)","arguments":[{"name":"id","type":"long","comment":"Document ID"},{"name":"access_hash","type":"long","comment":"access_hash parameter from the {@link RawDocument} constructor"},{"name":"file_reference","type":"bytes","comment":"File reference"},{"name":"thumb_size","type":"string","comment":"Thumbnail size to download the thumbnail"}]},{"kind":"class","name":"inputSecureFileLocation","type":"InputFileLocation","id":3418877480,"comment":"Location of encrypted telegram passport file.","arguments":[{"name":"id","type":"long","comment":"File ID, id parameter value from {@link RawSecureFile}"},{"name":"access_hash","type":"long","comment":"Checksum, access_hash parameter value from {@link RawSecureFile}"}]},{"kind":"class","name":"inputTakeoutFileLocation","type":"InputFileLocation","id":700340377,"comment":"Used to download a JSON file that will contain all personal data related to features that do not have a specialized takeout method yet, see here » for more info on the takeout API.","arguments":[]},{"kind":"class","name":"inputPhotoFileLocation","type":"InputFileLocation","id":1075322878,"comment":"Use this object to download a photo with {@link upload.RawGetFileRequest} method","arguments":[{"name":"id","type":"long","comment":"Photo ID, obtained from the {@link RawPhoto} object"},{"name":"access_hash","type":"long","comment":"Photo's access hash, obtained from the {@link RawPhoto} object"},{"name":"file_reference","type":"bytes","comment":"File reference"},{"name":"thumb_size","type":"string","comment":"The PhotoSize to download: must be set to the type field of the desired PhotoSize object of the {@link RawPhoto}"}]},{"kind":"class","name":"inputPhotoLegacyFileLocation","type":"InputFileLocation","id":3627312883,"comment":"DEPRECATED legacy photo file location","arguments":[{"name":"id","type":"long","comment":"Photo ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"file_reference","type":"bytes","comment":"File reference"},{"name":"volume_id","type":"long","comment":"Volume ID"},{"name":"local_id","type":"int","comment":"Local ID"},{"name":"secret","type":"long","comment":"Secret"}]},{"kind":"class","name":"inputPeerPhotoFileLocation","type":"InputFileLocation","id":925204121,"comment":"Location of profile photo of channel/group/supergroup/user","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"big","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to download the high-quality version of the picture"},{"name":"peer","type":"InputPeer","comment":"The peer whose profile picture should be downloaded"},{"name":"photo_id","type":"long","comment":"Photo ID"}]},{"kind":"class","name":"inputStickerSetThumb","type":"InputFileLocation","id":2642736091,"comment":"Location of stickerset thumbnail (see files)","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Sticker set"},{"name":"thumb_version","type":"int","comment":"Thumbnail version"}]},{"kind":"class","name":"inputGroupCallStream","type":"InputFileLocation","id":93890858,"comment":"Chunk of a livestream","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"call","type":"InputGroupCall","comment":"Livestream info"},{"name":"time_ms","type":"long","comment":"Timestamp in milliseconds"},{"name":"scale","type":"int","comment":"Specifies the duration of the video segment to fetch in milliseconds, by bitshifting 1000 to the right scale times: duration_ms := 1000 >> scale"},{"name":"video_channel","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Selected video channel"},{"name":"video_quality","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Selected video quality (0 = lowest, 1 = medium, 2 = best)"}]},{"kind":"class","name":"peerUser","type":"Peer","id":1498486562,"comment":"Chat partner","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"}]},{"kind":"class","name":"peerChat","type":"Peer","id":918946202,"comment":"Group.","arguments":[{"name":"chat_id","type":"int53","comment":"Group identifier"}]},{"kind":"class","name":"peerChannel","type":"Peer","id":2728736542,"comment":"Channel/supergroup","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"}]},{"kind":"class","name":"storage.fileUnknown","type":"storage.FileType","id":2861972229,"comment":"Unknown type.","arguments":[]},{"kind":"class","name":"storage.filePartial","type":"storage.FileType","id":1086091090,"comment":"Part of a bigger file.","arguments":[]},{"kind":"class","name":"storage.fileJpeg","type":"storage.FileType","id":8322574,"comment":"JPEG image. MIME type: image/jpeg.","arguments":[]},{"kind":"class","name":"storage.fileGif","type":"storage.FileType","id":3403786975,"comment":"GIF image. MIME type: image/gif.","arguments":[]},{"kind":"class","name":"storage.filePng","type":"storage.FileType","id":172975040,"comment":"PNG image. MIME type: image/png.","arguments":[]},{"kind":"class","name":"storage.filePdf","type":"storage.FileType","id":2921222285,"comment":"PDF document image. MIME type: application/pdf.","arguments":[]},{"kind":"class","name":"storage.fileMp3","type":"storage.FileType","id":1384777335,"comment":"Mp3 audio. MIME type: audio/mpeg.","arguments":[]},{"kind":"class","name":"storage.fileMov","type":"storage.FileType","id":1258941372,"comment":"Quicktime video. MIME type: video/quicktime.","arguments":[]},{"kind":"class","name":"storage.fileMp4","type":"storage.FileType","id":3016663268,"comment":"MPEG-4 video. MIME type: video/mp4.","arguments":[]},{"kind":"class","name":"storage.fileWebp","type":"storage.FileType","id":276907596,"comment":"WEBP image. MIME type: image/webp.","arguments":[]},{"kind":"class","name":"userEmpty","type":"User","id":3552332666,"comment":"Empty constructor, non-existent user.","arguments":[{"name":"id","type":"int53","comment":"User identifier or 0"}]},{"kind":"class","name":"user","type":"User","id":2201046986,"comment":"Indicates info about a certain user.\n\nUnless specified otherwise, when updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nSee here » for an implementation of the logic to use when updating the local user peer database.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"self","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Whether this user indicates the currently logged in user"},{"name":"contact","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether this user is a contact
When updating the local peer database, do not apply changes to this field if the min flag is set."},{"name":"mutual_contact","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether this user is a mutual contact.
When updating the local peer database, do not apply changes to this field if the min flag is set."},{"name":"deleted","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether the account of this user was deleted.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info."},{"name":"bot","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Is this user a bot?
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info."},{"name":"bot_chat_history","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Can the bot see all messages in groups?"},{"name":"bot_nochats","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"Can the bot be added to groups?"},{"name":"verified","type":"true","typeModifiers":{"predicate":"flags.17"},"comment":"Whether this user is verified"},{"name":"restricted","type":"true","typeModifiers":{"predicate":"flags.18"},"comment":"Access to this user must be restricted for the reason specified in restriction_reason"},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.20"},"comment":"See min"},{"name":"bot_inline_geo","type":"true","typeModifiers":{"predicate":"flags.21"},"comment":"Whether the bot can request our geolocation in inline mode"},{"name":"support","type":"true","typeModifiers":{"predicate":"flags.23"},"comment":"Whether this is an official support user"},{"name":"scam","type":"true","typeModifiers":{"predicate":"flags.24"},"comment":"This may be a scam user"},{"name":"apply_min_photo","type":"true","typeModifiers":{"predicate":"flags.25"},"comment":"If set and min is set, the value of photo can be used to update the local database, see the documentation of that flag for more info."},{"name":"fake","type":"true","typeModifiers":{"predicate":"flags.26"},"comment":"If set, this user was reported by many users as a fake or scam user: be careful when interacting with them."},{"name":"bot_attach_menu","type":"true","typeModifiers":{"predicate":"flags.27"},"comment":"Whether this bot offers an attachment menu web app"},{"name":"premium","type":"true","typeModifiers":{"predicate":"flags.28"},"comment":"Whether this user is a Telegram Premium user
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info.
Changes to this flag if the self flag is set should also trigger the following calls, to refresh the respective caches:
- The {@link help.RawGetConfigRequest} cache
- The {@link messages.RawGetTopReactionsRequest} cache if the bot flag is not set"},{"name":"attach_menu_enabled","type":"true","typeModifiers":{"predicate":"flags.29"},"comment":"Whether we installed the attachment menu web app offered by this bot.
When updating the local peer database, do not apply changes to this field if the min flag is set."},{"name":"flags2","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bot_can_edit","type":"true","typeModifiers":{"predicate":"flags2.1"},"comment":"Whether we can edit the profile picture, name, about text and description of this bot because we own it.
When updating the local peer database, do not apply changes to this field if the min flag is set.
Changes to this flag (if min is not set) should invalidate the local {@link RawUserFull} cache for this user ID."},{"name":"close_friend","type":"true","typeModifiers":{"predicate":"flags2.2"},"comment":"Whether we marked this user as a close friend, see here » for more info.
When updating the local peer database, do not apply changes to this field if the min flag is set."},{"name":"stories_hidden","type":"true","typeModifiers":{"predicate":"flags2.3"},"comment":"Whether we have hidden » all active stories of this user.
When updating the local peer database, do not apply changes to this field if the min flag is set."},{"name":"stories_unavailable","type":"true","typeModifiers":{"predicate":"flags2.4"},"comment":"No stories from this user are visible."},{"name":"contact_require_premium","type":"true","typeModifiers":{"predicate":"flags2.10"},"comment":"If set, we can only write to this user if they have already sent some messages to us, if we are subscribed to Telegram Premium, or if they're a mutual contact ({@link RawUser}.mutual_contact).
All the secondary conditions listed above must be checked separately to verify whether we can still write to the user, even if this flag is set (i.e. a mutual contact will have this flag set even if we can still write to them, and so on...); to avoid doing these extra checks if we haven't yet cached all the required information (for example while displaying the chat list in the sharing UI) the {@link users.RawGetIsPremiumRequiredToContactRequest} method may be invoked instead, passing the list of users currently visible in the UI, returning a list of booleans that directly specify whether we can or cannot write to each user; alternatively, the {@link RawUserFull}.contact_require_premium flag contains the same (fully checked, i.e. it's not just a copy of this flag) info returned by {@link users.RawGetIsPremiumRequiredToContactRequest}.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.new_noncontact_peers_require_premium flag."},{"name":"bot_business","type":"true","typeModifiers":{"predicate":"flags2.11"},"comment":"Whether this bot can be connected to a user as specified here »."},{"name":"bot_has_main_app","type":"true","typeModifiers":{"predicate":"flags2.13"},"comment":"If set, this bot has configured a Main Mini App »."},{"name":"id","type":"int53","comment":"ID of the user, see here » for more info."},{"name":"access_hash","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"Access hash of the user, see here » for more info.
If this flag is set, when updating the local peer database, generate a virtual flag called min_access_hash, which is:
- Set to true if min is set AND
- The phone flag is not set OR
- The phone flag is set and the associated phone number string is non-empty
- Set to false otherwise.

Then, apply both access_hash and min_access_hash to the local database if:
- min_access_hash is false OR
- min_access_hash is true AND
- There is no locally cached object for this user OR
- There is no access_hash in the local cache OR
- The cached object's min_access_hash is also true
If the final merged object stored to the database has the min_access_hash field set to true, the related access_hash is only suitable to use in {@link RawInputPeerPhotoFileLocation}, to directly download the profile pictures of users, everywhere else a inputPeer*FromMessage constructor will have to be generated as specified here ».
Bots can also use min access hashes in some conditions, by passing 0 instead of the min access hash."},{"name":"first_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"First name.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set."},{"name":"last_name","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Last name.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set."},{"name":"username","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Main active username.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID if the above conditions are respected and the bot_can_edit flag is also set."},{"name":"phone","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Phone number.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set."},{"name":"photo","type":"UserProfilePhoto","typeModifiers":{"predicate":"flags.5"},"comment":"Profile picture of user.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The apply_min_photo flag is set OR
- The min flag of the locally cached user entry is set."},{"name":"status","type":"UserStatus","typeModifiers":{"predicate":"flags.6"},"comment":"Online status of user.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set OR
- The locally cached user entry is equal to {@link RawUserStatusEmpty}."},{"name":"bot_info_version","type":"int","typeModifiers":{"predicate":"flags.14"},"comment":"Version of the {@link RawUserFull}, incremented every time it changes.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info."},{"name":"restriction_reason","type":"RestrictionReason","typeModifiers":{"predicate":"flags.18","isVector":true},"comment":"Contains the reason why access to this user must be restricted."},{"name":"bot_inline_placeholder","type":"string","typeModifiers":{"predicate":"flags.19"},"comment":"Inline placeholder for this inline bot"},{"name":"lang_code","type":"string","typeModifiers":{"predicate":"flags.22"},"comment":"Language code of the user"},{"name":"emoji_status","type":"EmojiStatus","typeModifiers":{"predicate":"flags.30"},"comment":"Emoji status"},{"name":"usernames","type":"Username","typeModifiers":{"predicate":"flags2.0","isVector":true},"comment":"Additional usernames.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set.
Changes to this flag (if the above conditions are respected) should invalidate the local {@link RawUserFull} cache for this user ID."},{"name":"stories_max_id","type":"int","typeModifiers":{"predicate":"flags2.5"},"comment":"ID of the maximum read story.
When updating the local peer database, do not apply changes to this field if the min flag of the incoming constructor is set."},{"name":"color","type":"PeerColor","typeModifiers":{"predicate":"flags2.8"},"comment":"The user's accent color."},{"name":"profile_color","type":"PeerColor","typeModifiers":{"predicate":"flags2.9"},"comment":"The user's profile color."},{"name":"bot_active_users","type":"int","typeModifiers":{"predicate":"flags2.12"},"comment":"Monthly Active Users (MAU) of this bot (may be absent for small bots)."}]},{"kind":"class","name":"userProfilePhotoEmpty","type":"UserProfilePhoto","id":1326562017,"comment":"Profile photo has not been set, or was hidden.","arguments":[]},{"kind":"class","name":"userProfilePhoto","type":"UserProfilePhoto","id":2194798342,"comment":"User profile photo.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_video","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether an animated profile picture is available for this user"},{"name":"personal","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this profile photo is only visible to us (i.e. it was set using {@link photos.RawUploadContactProfilePhotoRequest})."},{"name":"photo_id","type":"long","comment":"Identifier of the respective photo"},{"name":"stripped_thumb","type":"bytes","typeModifiers":{"predicate":"flags.1"},"comment":"Stripped thumbnail"},{"name":"dc_id","type":"int","comment":"DC ID where the photo is stored"}]},{"kind":"class","name":"userStatusEmpty","type":"UserStatus","id":164646985,"comment":"User status has not been set yet.","arguments":[]},{"kind":"class","name":"userStatusOnline","type":"UserStatus","id":3988339017,"comment":"Online status of the user.","arguments":[{"name":"expires","type":"int","comment":"Time to expiration of the current online status"}]},{"kind":"class","name":"userStatusOffline","type":"UserStatus","id":9203775,"comment":"The user's offline status.","arguments":[{"name":"was_online","type":"int","comment":"Time the user was last seen online"}]},{"kind":"class","name":"userStatusRecently","type":"UserStatus","id":2065268168,"comment":"Online status: last seen recently","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"by_me","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info."}]},{"kind":"class","name":"userStatusLastWeek","type":"UserStatus","id":1410997530,"comment":"Online status: last seen last week","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"by_me","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info."}]},{"kind":"class","name":"userStatusLastMonth","type":"UserStatus","id":1703516023,"comment":"Online status: last seen last month","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"by_me","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info."}]},{"kind":"class","name":"chatEmpty","type":"Chat","id":693512293,"comment":"Empty constructor, group doesn't exist","arguments":[{"name":"id","type":"int53","comment":"Group identifier"}]},{"kind":"class","name":"chat","type":"Chat","id":1103884886,"comment":"Info about a group.\n\nWhen updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nSee here » for an implementation of the logic to use when updating the local user peer database.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the current user is the creator of the group"},{"name":"left","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the current user has left the group"},{"name":"deactivated","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the group was migrated"},{"name":"call_active","type":"true","typeModifiers":{"predicate":"flags.23"},"comment":"Whether a group call is currently active"},{"name":"call_not_empty","type":"true","typeModifiers":{"predicate":"flags.24"},"comment":"Whether there's anyone in the group call"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.25"},"comment":"Whether this group is protected, thus does not allow forwarding messages from it"},{"name":"id","type":"int53","comment":"ID of the group, see here » for more info"},{"name":"title","type":"string","comment":"Title"},{"name":"photo","type":"ChatPhoto","comment":"Chat photo"},{"name":"participants_count","type":"int","comment":"Participant count"},{"name":"date","type":"int","comment":"Date of creation of the group"},{"name":"version","type":"int","comment":"Used in basic groups to reorder updates and make sure that all of them were received."},{"name":"migrated_to","type":"InputChannel","typeModifiers":{"predicate":"flags.6"},"comment":"Means this chat was upgraded to a supergroup"},{"name":"admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.14"},"comment":"Admin rights of the user in the group"},{"name":"default_banned_rights","type":"ChatBannedRights","typeModifiers":{"predicate":"flags.18"},"comment":"Default banned rights of all users in the group"}]},{"kind":"class","name":"chatForbidden","type":"Chat","id":1704108455,"comment":"A group to which the user has no access. E.g., because the user was kicked from the group.","arguments":[{"name":"id","type":"int53","comment":"User identifier"},{"name":"title","type":"string","comment":"Group name"}]},{"kind":"class","name":"channel","id":4265900221,"type":"Chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the current user is the creator of this channel"},{"name":"left","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the current user has left or is not a member of this channel"},{"name":"broadcast","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Is this a channel?"},{"name":"verified","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Is this channel verified by telegram?"},{"name":"megagroup","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Is this a supergroup?
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"restricted","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether viewing/writing in this channel for a reason (see restriction_reason)"},{"name":"signatures","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether signatures are enabled (channels)"},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"See min"},{"name":"scam","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"This channel/supergroup is probably a scam
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"has_link","type":"true","typeModifiers":{"predicate":"flags.20"},"comment":"Whether this channel has a linked discussion group » (or this supergroup is a channel's discussion group). The actual ID of the linked channel/supergroup is contained in {@link RawChannelFull}.linked_chat_id.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"has_geo","type":"true","typeModifiers":{"predicate":"flags.21"},"comment":"Whether this channel has a geo position"},{"name":"slowmode_enabled","type":"true","typeModifiers":{"predicate":"flags.22"},"comment":"Whether slow mode is enabled for groups to prevent flood in chat.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"call_active","type":"true","typeModifiers":{"predicate":"flags.23"},"comment":"Whether a group call or livestream is currently active"},{"name":"call_not_empty","type":"true","typeModifiers":{"predicate":"flags.24"},"comment":"Whether there's anyone in the group call or livestream"},{"name":"fake","type":"true","typeModifiers":{"predicate":"flags.25"},"comment":"If set, this supergroup/channel was reported by many users as a fake or scam: be careful when interacting with it.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"gigagroup","type":"true","typeModifiers":{"predicate":"flags.26"},"comment":"Whether this supergroup is a gigagroup
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.27"},"comment":"Whether this channel or group is protected, thus does not allow forwarding messages from it"},{"name":"join_to_send","type":"true","typeModifiers":{"predicate":"flags.28"},"comment":"Whether a user needs to join the supergroup before they can send messages: can be false only for discussion groups », toggle using {@link channels.RawToggleJoinToSendRequest}
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"join_request","type":"true","typeModifiers":{"predicate":"flags.29"},"comment":"Whether a user's join request will have to be approved by administrators, toggle using {@link channels.RawToggleJoinRequestRequest}
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"forum","type":"true","typeModifiers":{"predicate":"flags.30"},"comment":"Whether this supergroup is a forum.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"flags2","type":"#","comment":"Flags, see TL conditional fields"},{"name":"stories_hidden","type":"true","typeModifiers":{"predicate":"flags2.1"},"comment":"Whether we have hidden all stories posted by this channel »."},{"name":"stories_hidden_min","type":"true","typeModifiers":{"predicate":"flags2.2"},"comment":"If set, indicates that the stories_hidden flag was not populated, and its value must cannot be relied on; use the previously cached value, or re-fetch the constructor using {@link channels.RawGetChannelsRequest} to obtain the latest value of the stories_hidden flag."},{"name":"stories_unavailable","type":"true","typeModifiers":{"predicate":"flags2.3"},"comment":"No stories from the channel are visible."},{"name":"signature_profiles","type":"true","typeModifiers":{"predicate":"flags2.12"}},{"name":"id","type":"int53","comment":"ID of the channel, see here » for more info"},{"name":"access_hash","type":"long","typeModifiers":{"predicate":"flags.13"},"comment":"Access hash, see here » for more info"},{"name":"title","type":"string","comment":"Title"},{"name":"username","type":"string","typeModifiers":{"predicate":"flags.6"},"comment":"Main active username."},{"name":"photo","type":"ChatPhoto","comment":"Profile photo"},{"name":"date","type":"int","comment":"Date when the user joined the supergroup/channel, or if the user isn't a member, its creation date"},{"name":"restriction_reason","type":"RestrictionReason","typeModifiers":{"predicate":"flags.9","isVector":true},"comment":"Contains the reason why access to this channel must be restricted.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.14"},"comment":"Admin rights of the user in this channel (see rights)"},{"name":"banned_rights","type":"ChatBannedRights","typeModifiers":{"predicate":"flags.15"},"comment":"Banned rights of the user in this channel (see rights)"},{"name":"default_banned_rights","type":"ChatBannedRights","typeModifiers":{"predicate":"flags.18"},"comment":"Default chat rights (see rights)"},{"name":"participants_count","type":"int","typeModifiers":{"predicate":"flags.17"},"comment":"Participant count"},{"name":"usernames","type":"Username","typeModifiers":{"predicate":"flags2.0","isVector":true},"comment":"Additional usernames"},{"name":"stories_max_id","type":"int","typeModifiers":{"predicate":"flags2.4"},"comment":"ID of the maximum read story."},{"name":"color","type":"PeerColor","typeModifiers":{"predicate":"flags2.7"},"comment":"The channel's accent color."},{"name":"profile_color","type":"PeerColor","typeModifiers":{"predicate":"flags2.8"},"comment":"The channel's profile color."},{"name":"emoji_status","type":"EmojiStatus","typeModifiers":{"predicate":"flags2.9"},"comment":"Emoji status"},{"name":"level","type":"int","typeModifiers":{"predicate":"flags2.10"},"comment":"Boost level.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"subscription_until_date","type":"int","typeModifiers":{"predicate":"flags2.11"}}],"comment":"Channel/supergroup info\n\nWhen updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nThe only exception to the above rule is when the min flag is set, in which case only the following fields must be applied over any locally stored version:\n\nSee here » for an implementation of the logic to use when updating the local user peer database."},{"kind":"class","name":"channelForbidden","type":"Chat","id":399807445,"comment":"Indicates a channel/supergroup we can't access because we were banned, or for some other reason.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"broadcast","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Is this a channel"},{"name":"megagroup","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Is this a supergroup"},{"name":"id","type":"int53","comment":"Channel ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"title","type":"string","comment":"Title"},{"name":"until_date","type":"int","typeModifiers":{"predicate":"flags.16"},"comment":"The ban is valid until the specified date"}]},{"kind":"class","name":"chatFull","type":"ChatFull","id":640893467,"comment":"Full info about a basic group.\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_set_username","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Can we change the username of this chat"},{"name":"has_scheduled","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Whether scheduled messages are available"},{"name":"translations_disabled","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"Whether the real-time chat translation popup should be hidden."},{"name":"id","type":"int53","comment":"ID of the chat"},{"name":"about","type":"string","comment":"About string for this chat"},{"name":"participants","type":"ChatParticipants","comment":"Participant list"},{"name":"chat_photo","type":"Photo","typeModifiers":{"predicate":"flags.2"},"comment":"Chat photo"},{"name":"notify_settings","type":"PeerNotifySettings","comment":"Notification settings"},{"name":"exported_invite","type":"ExportedChatInvite","typeModifiers":{"predicate":"flags.13"},"comment":"Chat invite"},{"name":"bot_info","type":"BotInfo","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Info about bots that are in this chat"},{"name":"pinned_msg_id","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Message ID of the last pinned message"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.11"},"comment":"Peer folder ID, for more info click here"},{"name":"call","type":"InputGroupCall","typeModifiers":{"predicate":"flags.12"},"comment":"Group call information"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.14"},"comment":"Time-To-Live of messages sent by the current user to this chat"},{"name":"groupcall_default_join_as","type":"Peer","typeModifiers":{"predicate":"flags.15"},"comment":"When using {@link phone.RawGetGroupCallJoinAsRequest} to get a list of peers that can be used to join a group call, this field indicates the peer that should be selected by default."},{"name":"theme_emoticon","type":"string","typeModifiers":{"predicate":"flags.16"},"comment":"Emoji representing a specific chat theme"},{"name":"requests_pending","type":"int","typeModifiers":{"predicate":"flags.17"},"comment":"Pending join requests »"},{"name":"recent_requesters","type":"long","typeModifiers":{"predicate":"flags.17","isVector":true},"comment":"IDs of users who requested to join recently"},{"name":"available_reactions","type":"ChatReactions","typeModifiers":{"predicate":"flags.18"},"comment":"Allowed message reactions »"},{"name":"reactions_limit","type":"int","typeModifiers":{"predicate":"flags.20"},"comment":"This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max)."}]},{"kind":"class","name":"channelFull","type":"ChatFull","id":3148559501,"comment":"Full info about a channel, supergroup or gigagroup.\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_view_participants","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Can we view the participant list?"},{"name":"can_set_username","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Can we set the channel's username?"},{"name":"can_set_stickers","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Can we {@link channels.RawSetStickersRequest} a stickerpack to the supergroup?"},{"name":"hidden_prehistory","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Is the history before we joined hidden to us?"},{"name":"can_set_location","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"Can we set the geolocation of this group (for geogroups)"},{"name":"has_scheduled","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"Whether scheduled messages are available"},{"name":"can_view_stats","type":"true","typeModifiers":{"predicate":"flags.20"},"comment":"Can the user view channel/supergroup statistics"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.22"},"comment":"Whether any anonymous admin of this supergroup was blocked: if set, you won't receive messages from anonymous group admins in discussion replies via @replies"},{"name":"flags2","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_delete_channel","type":"true","typeModifiers":{"predicate":"flags2.0"},"comment":"Can we delete this channel?"},{"name":"antispam","type":"true","typeModifiers":{"predicate":"flags2.1"},"comment":"Whether native antispam functionality is enabled in this supergroup."},{"name":"participants_hidden","type":"true","typeModifiers":{"predicate":"flags2.2"},"comment":"Whether the participant list is hidden."},{"name":"translations_disabled","type":"true","typeModifiers":{"predicate":"flags2.3"},"comment":"Whether the real-time chat translation popup should be hidden."},{"name":"stories_pinned_available","type":"true","typeModifiers":{"predicate":"flags2.5"},"comment":"Whether this user has some pinned stories."},{"name":"view_forum_as_messages","type":"true","typeModifiers":{"predicate":"flags2.6"},"comment":"Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
This setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of this flag."},{"name":"restricted_sponsored","type":"true","typeModifiers":{"predicate":"flags2.11"},"comment":"Whether ads on this channel were disabled as specified here » (this flag is only visible to the owner of the channel)."},{"name":"can_view_revenue","type":"true","typeModifiers":{"predicate":"flags2.12"},"comment":"If set, this user can view ad revenue statistics » for this channel."},{"name":"paid_media_allowed","type":"true","typeModifiers":{"predicate":"flags2.14"},"comment":"Whether the current user can send or forward paid media » to this channel."},{"name":"can_view_stars_revenue","type":"true","typeModifiers":{"predicate":"flags2.15"},"comment":"If set, this user can view Telegram Star revenue statistics » for this channel."},{"name":"paid_reactions_available","type":"true","typeModifiers":{"predicate":"flags2.16"}},{"name":"id","type":"int53","comment":"ID of the channel"},{"name":"about","type":"string","comment":"Info about the channel"},{"name":"participants_count","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Number of participants of the channel"},{"name":"admins_count","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Number of channel admins"},{"name":"kicked_count","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Number of users kicked from the channel"},{"name":"banned_count","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Number of users banned from the channel"},{"name":"online_count","type":"int","typeModifiers":{"predicate":"flags.13"},"comment":"Number of users currently online"},{"name":"read_inbox_max_id","type":"int","comment":"Position up to which all incoming messages are read."},{"name":"read_outbox_max_id","type":"int","comment":"Position up to which all outgoing messages are read."},{"name":"unread_count","type":"int","comment":"Count of unread messages"},{"name":"chat_photo","type":"Photo","comment":"Channel picture"},{"name":"notify_settings","type":"PeerNotifySettings","comment":"Notification settings"},{"name":"exported_invite","type":"ExportedChatInvite","typeModifiers":{"predicate":"flags.23"},"comment":"Invite link"},{"name":"bot_info","type":"BotInfo","typeModifiers":{"isVector":true},"comment":"Info about bots in the channel/supergroup"},{"name":"migrated_from_chat_id","type":"long","typeModifiers":{"predicate":"flags.4"},"comment":"The chat ID from which this group was migrated"},{"name":"migrated_from_max_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"The message ID in the original chat at which this group was migrated"},{"name":"pinned_msg_id","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Message ID of the last pinned message"},{"name":"stickerset","type":"StickerSet","typeModifiers":{"predicate":"flags.8"},"comment":"Associated stickerset"},{"name":"available_min_id","type":"int","typeModifiers":{"predicate":"flags.9"},"comment":"Identifier of a maximum unavailable message in a channel due to hidden history."},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.11"},"comment":"Peer folder ID, for more info click here"},{"name":"linked_chat_id","type":"int53","typeModifiers":{"predicate":"flags.14"},"comment":"ID of the linked discussion chat for channels (and vice versa, the ID of the linked channel for discussion chats)."},{"name":"location","type":"ChannelLocation","typeModifiers":{"predicate":"flags.15"},"comment":"Location of the geo group"},{"name":"slowmode_seconds","type":"int","typeModifiers":{"predicate":"flags.17"},"comment":"If specified, users in supergroups will only be able to send one message every slowmode_seconds seconds"},{"name":"slowmode_next_send_date","type":"int","typeModifiers":{"predicate":"flags.18"},"comment":"Indicates when the user will be allowed to send another message in the supergroup (unixtime)"},{"name":"stats_dc","type":"int","typeModifiers":{"predicate":"flags.12"},"comment":"If set, specifies the DC to use for fetching channel statistics"},{"name":"pts","type":"int","comment":"Latest PTS for this channel"},{"name":"call","type":"InputGroupCall","typeModifiers":{"predicate":"flags.21"},"comment":"Livestream or group call information"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.24"},"comment":"Time-To-Live of messages in this channel or supergroup"},{"name":"pending_suggestions","type":"string","typeModifiers":{"predicate":"flags.25","isVector":true},"comment":"A list of suggested actions for the supergroup admin, see here for more info »."},{"name":"groupcall_default_join_as","type":"Peer","typeModifiers":{"predicate":"flags.26"},"comment":"When using {@link phone.RawGetGroupCallJoinAsRequest} to get a list of peers that can be used to join a group call, this field indicates the peer that should be selected by default."},{"name":"theme_emoticon","type":"string","typeModifiers":{"predicate":"flags.27"},"comment":"Emoji representing a specific chat theme"},{"name":"requests_pending","type":"int","typeModifiers":{"predicate":"flags.28"},"comment":"Pending join requests »"},{"name":"recent_requesters","type":"long","typeModifiers":{"predicate":"flags.28","isVector":true},"comment":"IDs of users who requested to join recently"},{"name":"default_send_as","type":"Peer","typeModifiers":{"predicate":"flags.29"},"comment":"Default peer used for sending messages to this channel"},{"name":"available_reactions","type":"ChatReactions","typeModifiers":{"predicate":"flags.30"},"comment":"Allowed message reactions »"},{"name":"reactions_limit","type":"int","typeModifiers":{"predicate":"flags2.13"},"comment":"This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max)."},{"name":"stories","type":"PeerStories","typeModifiers":{"predicate":"flags2.4"},"comment":"Channel stories"},{"name":"wallpaper","type":"WallPaper","typeModifiers":{"predicate":"flags2.7"},"comment":"Wallpaper"},{"name":"boosts_applied","type":"int","typeModifiers":{"predicate":"flags2.8"},"comment":"The number of boosts the current user has applied to the current supergroup."},{"name":"boosts_unrestrict","type":"int","typeModifiers":{"predicate":"flags2.9"},"comment":"The number of boosts this supergroup requires to bypass slowmode and other restrictions, see here » for more info."},{"name":"emojiset","type":"StickerSet","typeModifiers":{"predicate":"flags2.10"},"comment":"Custom emoji stickerset associated to the current supergroup, set using {@link channels.RawSetEmojiStickersRequest} after reaching the appropriate boost level, see here » for more info."}]},{"kind":"class","name":"chatParticipant","type":"ChatParticipant","id":3224190983,"comment":"Group member.","arguments":[{"name":"user_id","type":"int53","comment":"Member user ID"},{"name":"inviter_id","type":"int53","comment":"ID of the user that added the member to the group"},{"name":"date","type":"int","comment":"Date added to the group"}]},{"kind":"class","name":"chatParticipantCreator","type":"ChatParticipant","id":3832270564,"comment":"Represents the creator of the group","arguments":[{"name":"user_id","type":"int53","comment":"ID of the user that created the group"}]},{"kind":"class","name":"chatParticipantAdmin","type":"ChatParticipant","id":2694004571,"comment":"Chat admin","arguments":[{"name":"user_id","type":"int53","comment":"ID of a group member that is admin"},{"name":"inviter_id","type":"int53","comment":"ID of the user that added the member to the group"},{"name":"date","type":"int","comment":"Date when the user was added"}]},{"kind":"class","name":"chatParticipantsForbidden","type":"ChatParticipants","id":2271466465,"comment":"Info on members is unavailable","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chat_id","type":"int53","comment":"Group ID"},{"name":"self_participant","type":"ChatParticipant","typeModifiers":{"predicate":"flags.0"},"comment":"Info about the group membership of the current user"}]},{"kind":"class","name":"chatParticipants","type":"ChatParticipants","id":1018991608,"comment":"Group members.","arguments":[{"name":"chat_id","type":"int53","comment":"Group identifier"},{"name":"participants","type":"ChatParticipant","typeModifiers":{"isVector":true},"comment":"List of group members"},{"name":"version","type":"int","comment":"Group version number"}]},{"kind":"class","name":"chatPhotoEmpty","type":"ChatPhoto","id":935395612,"comment":"Group photo is not set.","arguments":[]},{"kind":"class","name":"chatPhoto","type":"ChatPhoto","id":476978193,"comment":"Group profile photo.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_video","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user has an animated profile picture"},{"name":"photo_id","type":"long","comment":"Photo ID"},{"name":"stripped_thumb","type":"bytes","typeModifiers":{"predicate":"flags.1"},"comment":"Stripped thumbnail"},{"name":"dc_id","type":"int","comment":"DC where this photo is stored"}]},{"kind":"class","name":"messageEmpty","type":"Message","id":2426849924,"comment":"Empty constructor, non-existent message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"int","comment":"Message identifier"},{"name":"peer_id","type":"Peer","typeModifiers":{"predicate":"flags.0"},"comment":"Peer ID, the chat where this message was sent"}]},{"kind":"class","name":"message","type":"Message","id":2486456898,"comment":"A message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Is this an outgoing message"},{"name":"mentioned","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether we were mentioned in this message"},{"name":"media_unread","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether there are unread media attachments in this message"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether this is a silent message (no notification triggered)"},{"name":"post","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Whether this is a channel post"},{"name":"from_scheduled","type":"true","typeModifiers":{"predicate":"flags.18"},"comment":"Whether this is a scheduled message"},{"name":"legacy","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"This is a legacy message: it has to be refetched with the new layer"},{"name":"edit_hide","type":"true","typeModifiers":{"predicate":"flags.21"},"comment":"Whether the message should be shown as not modified to the user, even if an edit date is present"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.24"},"comment":"Whether this message is pinned"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.26"},"comment":"Whether this message is protected and thus cannot be forwarded; clients should also prevent users from saving attached media (i.e. videos should only be streamed, photos should be kept in RAM, et cetera)."},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.27"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"flags2","type":"#","comment":"Flags, see TL conditional fields"},{"name":"offline","type":"true","typeModifiers":{"predicate":"flags2.1"},"comment":"If set, the message was sent because of a scheduled action by the message sender, for example, as away, or a greeting service message."},{"name":"id","type":"int","comment":"ID of the message"},{"name":"from_id","type":"Peer","typeModifiers":{"predicate":"flags.8"},"comment":"ID of the sender of the message"},{"name":"from_boosts_applied","type":"int","typeModifiers":{"predicate":"flags.29"},"comment":"Supergroups only, contains the number of boosts this user has given the current supergroup, and should be shown in the UI in the header of the message.
Only present for incoming messages from non-anonymous supergroup members that have boosted the supergroup.
Note that this counter should be locally overridden for non-anonymous outgoing messages, according to the current value of {@link RawChannelFull}.boosts_applied, to ensure the value is correct even for messages sent by the current user before a supergroup was boosted (or after a boost has expired or the number of boosts has changed); do not update this value for incoming messages from other users, even if their boosts have changed."},{"name":"peer_id","type":"Peer","comment":"Peer ID, the chat where this message was sent"},{"name":"saved_peer_id","type":"Peer","typeModifiers":{"predicate":"flags.28"},"comment":"Messages fetched from a saved messages dialog » will have peer={@link RawInputPeerSelf} and the saved_peer_id flag set to the ID of the saved dialog.
"},{"name":"fwd_from","type":"MessageFwdHeader","typeModifiers":{"predicate":"flags.2"},"comment":"Info about forwarded messages"},{"name":"via_bot_id","type":"int53","typeModifiers":{"predicate":"flags.11"},"comment":"ID of the inline bot that generated the message"},{"name":"via_business_bot_id","type":"int53","typeModifiers":{"predicate":"flags2.0"},"comment":"Whether the message was sent by the business bot specified in via_bot_id on behalf of the user."},{"name":"reply_to","type":"MessageReplyHeader","typeModifiers":{"predicate":"flags.3"},"comment":"Reply information"},{"name":"date","type":"int","comment":"Date of the message"},{"name":"message","type":"string","comment":"The message"},{"name":"media","type":"MessageMedia","typeModifiers":{"predicate":"flags.9"},"comment":"Media attachment"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.6"},"comment":"Reply markup (bot/inline keyboards)"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.7","isVector":true},"comment":"Message entities for styled text"},{"name":"views","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"View count for channel posts"},{"name":"forwards","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Forward counter"},{"name":"replies","type":"MessageReplies","typeModifiers":{"predicate":"flags.23"},"comment":"Info about post comments (for channels) or message replies (for groups)"},{"name":"edit_date","type":"int","typeModifiers":{"predicate":"flags.15"},"comment":"Last edit date of this message"},{"name":"post_author","type":"string","typeModifiers":{"predicate":"flags.16"},"comment":"Name of the author of this message for channel posts (with signatures enabled)"},{"name":"grouped_id","type":"long","typeModifiers":{"predicate":"flags.17"},"comment":"Multiple media messages sent using {@link messages.RawSendMultiMediaRequest} with the same grouped ID indicate an album or media group"},{"name":"reactions","type":"MessageReactions","typeModifiers":{"predicate":"flags.20"},"comment":"Reactions to this message"},{"name":"restriction_reason","type":"RestrictionReason","typeModifiers":{"predicate":"flags.22","isVector":true},"comment":"Contains the reason why access to this message must be restricted."},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.25"},"comment":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."},{"name":"quick_reply_shortcut_id","type":"int","typeModifiers":{"predicate":"flags.30"},"comment":"If set, this message is a quick reply shortcut message » (note that quick reply shortcut messages sent to a private chat will not have this field set)."},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags2.2"},"comment":"A message effect that should be played as specified here »."},{"name":"factcheck","type":"FactCheck","typeModifiers":{"predicate":"flags2.3"},"comment":"Represents a fact-check »."}]},{"kind":"class","name":"messageService","type":"Message","id":721967202,"comment":"Indicates a service message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the message is outgoing"},{"name":"mentioned","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether we were mentioned in the message"},{"name":"media_unread","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the message contains unread media"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether the message is silent"},{"name":"post","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Whether it's a channel post"},{"name":"legacy","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"This is a legacy message: it has to be refetched with the new layer"},{"name":"id","type":"int","comment":"Message ID"},{"name":"from_id","type":"Peer","typeModifiers":{"predicate":"flags.8"},"comment":"ID of the sender of this message"},{"name":"peer_id","type":"Peer","comment":"Sender of service message"},{"name":"reply_to","type":"MessageReplyHeader","typeModifiers":{"predicate":"flags.3"},"comment":"Reply (thread) information"},{"name":"date","type":"int","comment":"Message date"},{"name":"action","type":"MessageAction","comment":"Event connected with the service message"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.25"},"comment":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}]},{"kind":"class","name":"messageMediaEmpty","type":"MessageMedia","id":1038967584,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"messageMediaPhoto","type":"MessageMedia","id":1766936791,"comment":"Attached photo.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.0"},"comment":"Photo"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Time to live in seconds of self-destructing photo"}]},{"kind":"class","name":"messageMediaGeo","type":"MessageMedia","id":1457575028,"comment":"Attached map.","arguments":[{"name":"geo","type":"GeoPoint","comment":"GeoPoint"}]},{"kind":"class","name":"messageMediaContact","type":"MessageMedia","id":1882335561,"comment":"Attached contact.","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"Contact's first name"},{"name":"last_name","type":"string","comment":"Contact's last name"},{"name":"vcard","type":"string","comment":"VCARD of contact"},{"name":"user_id","type":"int53","comment":"User identifier or 0, if the user with the given phone number is not registered"}]},{"kind":"class","name":"messageMediaUnsupported","type":"MessageMedia","id":2676290718,"comment":"Current version of the client does not support this media type.","arguments":[]},{"kind":"class","name":"messageMediaDocument","id":3713469397,"type":"MessageMedia","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"nopremium","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is a normal sticker, if not set this is a premium sticker and a premium sticker animation must be played."},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether this is a video."},{"name":"round","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether this is a round video."},{"name":"voice","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Whether this is a voice message."},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.0"},"comment":"Attached document"},{"name":"alt_documents","type":"Document","typeModifiers":{"predicate":"flags.5","isVector":true}},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Time to live of self-destructing document"}],"comment":"Document (video, audio, voice, sticker, any media type except photo)"},{"kind":"class","name":"messageMediaWebPage","type":"MessageMedia","id":3723562043,"comment":"Preview of webpage","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force_large_media","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, specifies that a large media preview should be used."},{"name":"force_small_media","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, specifies that a small media preview should be used."},{"name":"manual","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, indicates that the URL used for the webpage preview was specified manually using {@link RawInputMediaWebPage}, and may not be related to any of the URLs specified in the message."},{"name":"safe","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, the webpage can be opened directly without user confirmation; otherwise, user confirmation is required, showing the exact URL that will be opened."},{"name":"webpage","type":"WebPage","comment":"Webpage preview"}]},{"kind":"class","name":"messageMediaVenue","type":"MessageMedia","id":784356159,"comment":"Venue","arguments":[{"name":"geo","type":"GeoPoint","comment":"Geolocation of venue"},{"name":"title","type":"string","comment":"Venue name"},{"name":"address","type":"string","comment":"Address"},{"name":"provider","type":"string","comment":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported"},{"name":"venue_id","type":"string","comment":"Venue ID in the provider's database"},{"name":"venue_type","type":"string","comment":"Venue type in the provider's database"}]},{"kind":"class","name":"messageMediaGame","type":"MessageMedia","id":4256272392,"comment":"Telegram game","arguments":[{"name":"game","type":"Game","comment":"Game"}]},{"kind":"class","name":"messageMediaInvoice","type":"MessageMedia","id":4138027219,"comment":"Invoice","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"shipping_address_requested","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the shipping address was requested"},{"name":"test","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is an example invoice"},{"name":"title","type":"string","comment":"Product name, 1-32 characters"},{"name":"description","type":"string","comment":"Product description, 1-255 characters"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.0"},"comment":"URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for."},{"name":"receipt_msg_id","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Message ID of receipt: if set, clients should change the text of the first {@link RawKeyboardButtonBuy} button always attached to the {@link RawMessage} to a localized version of the word Receipt"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"start_param","type":"string","comment":"Unique bot deep-linking parameter that can be used to generate this invoice"},{"name":"extended_media","type":"MessageExtendedMedia","typeModifiers":{"predicate":"flags.4"},"comment":"Deprecated"}]},{"kind":"class","name":"messageMediaGeoLive","type":"MessageMedia","id":3108030054,"comment":"Indicates a live geolocation","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo","type":"GeoPoint","comment":"Geolocation"},{"name":"heading","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"For live locations, a direction in which the location moves, in degrees; 1-360"},{"name":"period","type":"int","comment":"Validity period of provided geolocation"},{"name":"proximity_notification_radius","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)."}]},{"kind":"class","name":"messageMediaPoll","type":"MessageMedia","id":1272375192,"comment":"Poll","arguments":[{"name":"poll","type":"Poll","comment":"The poll"},{"name":"results","type":"PollResults","comment":"The results of the poll"}]},{"kind":"class","name":"messageMediaDice","type":"MessageMedia","id":1065280907,"comment":"Dice-based animated sticker","arguments":[{"name":"value","type":"int","comment":"Dice value"},{"name":"emoticon","type":"string","comment":"The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported"}]},{"kind":"class","name":"messageMediaStory","type":"MessageMedia","id":1758159491,"comment":"Represents a forwarded story or a story mention.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_mention","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, indicates that this someone has mentioned us in this story (i.e. by tagging us in the description) or vice versa, we have mentioned the other peer (if the message is outgoing)."},{"name":"peer","type":"Peer","comment":"Peer that posted the story."},{"name":"id","type":"int","comment":"Story ID"},{"name":"story","type":"StoryItem","typeModifiers":{"predicate":"flags.0"},"comment":"The story itself, if absent fetch it using {@link stories.RawGetStoriesByIDRequest} and the peer/id parameters specified above."}]},{"kind":"class","name":"messageMediaGiveaway","id":2852600811,"type":"MessageMedia","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"only_new_subscribers","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, only new subscribers starting from the giveaway creation date will be able to participate to the giveaway."},{"name":"winners_are_visible","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, giveaway winners are public and will be listed in a {@link RawMessageMediaGiveawayResults} message that will be automatically sent to the channel once the giveaway ends."},{"name":"channels","type":"int53","typeModifiers":{"isVector":true},"comment":"The channels that the user must join to participate in the giveaway."},{"name":"countries_iso2","type":"string","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"If set, only users residing in these countries can participate in the giveaway, (specified as a list of two-letter ISO 3166-1 alpha-2 country codes); otherwise there are no country-based limitations."},{"name":"prize_description","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Can contain a textual description of additional giveaway prizes."},{"name":"quantity","type":"int","comment":"Number of Telegram Premium subscriptions given away."},{"name":"months","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Duration in months of each Telegram Premium subscription in the giveaway."},{"name":"stars","type":"long","typeModifiers":{"predicate":"flags.5"}},{"name":"until_date","type":"int","comment":"The end date of the giveaway."}],"comment":"Contains info about a giveaway, see here » for more info."},{"kind":"class","name":"messageMediaGiveawayResults","id":3467263649,"type":"MessageMedia","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"only_new_subscribers","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, only new subscribers starting from the giveaway creation date participated in the giveaway."},{"name":"refunded","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the giveaway was canceled and was fully refunded."},{"name":"channel_id","type":"long","comment":"ID of the channel/supergroup that was automatically boosted by the winners of the giveaway for duration of the Premium subscription."},{"name":"additional_peers_count","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Number of other channels that participated in the giveaway."},{"name":"launch_msg_id","type":"int","comment":"Identifier of the message with the giveaway in channel_id."},{"name":"winners_count","type":"int","comment":"Total number of winners in the giveaway."},{"name":"unclaimed_count","type":"int","comment":"Number of not-yet-claimed prizes."},{"name":"winners","type":"long","typeModifiers":{"isVector":true},"comment":"Up to 100 user identifiers of the winners of the giveaway."},{"name":"months","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Duration in months of each Telegram Premium subscription in the giveaway."},{"name":"stars","type":"long","typeModifiers":{"predicate":"flags.5"}},{"name":"prize_description","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Can contain a textual description of additional giveaway prizes."},{"name":"until_date","type":"int","comment":"Point in time (UNIX timestamp in seconds) when the winners were selected. May be bigger than winners selection date specified in initial parameters of the giveaway."}],"comment":"A giveaway with public winners has finished, this constructor contains info about the winners."},{"kind":"class","name":"messageMediaPaidMedia","type":"MessageMedia","id":2827297937,"comment":"Paid media, see here » for more info.","arguments":[{"name":"stars_amount","type":"long","comment":"The price of the media in Telegram Stars."},{"name":"extended_media","type":"MessageExtendedMedia","typeModifiers":{"isVector":true},"comment":"Either the paid-for media, or super low resolution media previews if the media wasn't purchased yet, see here » for more info."}]},{"kind":"class","name":"messageActionEmpty","type":"MessageAction","id":3064919984,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"messageActionChatCreate","type":"MessageAction","id":3175599021,"comment":"Group created","arguments":[{"name":"title","type":"string","comment":"Group name"},{"name":"users","type":"int53","typeModifiers":{"isVector":true},"comment":"List of group members"}]},{"kind":"class","name":"messageActionChatEditTitle","type":"MessageAction","id":3047280218,"comment":"Group name changed.","arguments":[{"name":"title","type":"string","comment":"New group name"}]},{"kind":"class","name":"messageActionChatEditPhoto","type":"MessageAction","id":2144015272,"comment":"Group profile changed","arguments":[{"name":"photo","type":"Photo","comment":"New group profile photo"}]},{"kind":"class","name":"messageActionChatDeletePhoto","type":"MessageAction","id":2514746351,"comment":"Group profile photo removed.","arguments":[]},{"kind":"class","name":"messageActionChatAddUser","type":"MessageAction","id":365886720,"comment":"New member in the group","arguments":[{"name":"users","type":"int53","typeModifiers":{"isVector":true},"comment":"Users that were invited to the chat"}]},{"kind":"class","name":"messageActionChatDeleteUser","type":"MessageAction","id":2755604684,"comment":"User left the group.","arguments":[{"name":"user_id","type":"int53","comment":"Leaving user ID"}]},{"kind":"class","name":"messageActionChatJoinedByLink","type":"MessageAction","id":51520707,"comment":"A user joined the chat via an invite link","arguments":[{"name":"inviter_id","type":"int53","comment":"ID of the user that created the invite link"}]},{"kind":"class","name":"messageActionChannelCreate","type":"MessageAction","id":2513611922,"comment":"The channel was created","arguments":[{"name":"title","type":"string","comment":"Original channel/supergroup title"}]},{"kind":"class","name":"messageActionChatMigrateTo","type":"MessageAction","id":3775102866,"comment":"Indicates the chat was migrated to the specified supergroup","arguments":[{"name":"channel_id","type":"int53","comment":"The supergroup it was migrated to"}]},{"kind":"class","name":"messageActionChannelMigrateFrom","type":"MessageAction","id":3929622761,"comment":"Indicates the channel was migrated from the specified chat","arguments":[{"name":"title","type":"string","comment":"The old chat title"},{"name":"chat_id","type":"int53","comment":"The old chat ID"}]},{"kind":"class","name":"messageActionPinMessage","type":"MessageAction","id":2495428845,"comment":"A message was pinned","arguments":[]},{"kind":"class","name":"messageActionHistoryClear","type":"MessageAction","id":2679813636,"comment":"Chat history was cleared","arguments":[]},{"kind":"class","name":"messageActionGameScore","type":"MessageAction","id":2460428406,"comment":"Someone scored in a game","arguments":[{"name":"game_id","type":"long","comment":"Game ID"},{"name":"score","type":"int","comment":"Score"}]},{"kind":"class","name":"messageActionPaymentSentMe","type":"MessageAction","id":2402399015,"comment":"A user just sent a payment to me (a bot)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"recurring_init","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this is the first payment of a recurring payment we just subscribed to"},{"name":"recurring_used","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this payment is part of a recurring payment"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"payload","type":"bytes","comment":"Bot specified invoice payload"},{"name":"info","type":"PaymentRequestedInfo","typeModifiers":{"predicate":"flags.0"},"comment":"Order info provided by the user"},{"name":"shipping_option_id","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of the shipping option chosen by the user"},{"name":"charge","type":"PaymentCharge","comment":"Provider payment identifier"}]},{"kind":"class","name":"messageActionPaymentSent","type":"MessageAction","id":2518040406,"comment":"A payment was sent","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"recurring_init","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this is the first payment of a recurring payment we just subscribed to"},{"name":"recurring_used","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this payment is part of a recurring payment"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"invoice_slug","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"An invoice slug taken from an invoice deep link or from the premium_invoice_slug app config parameter »"}]},{"kind":"class","name":"messageActionPhoneCall","type":"MessageAction","id":2162236031,"comment":"A phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is this a video call?"},{"name":"call_id","type":"long","comment":"Call ID"},{"name":"reason","type":"PhoneCallDiscardReason","typeModifiers":{"predicate":"flags.0"},"comment":"If the call has ended, the reason why it ended"},{"name":"duration","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Duration of the call in seconds"}]},{"kind":"class","name":"messageActionScreenshotTaken","type":"MessageAction","id":1200788123,"comment":"A screenshot of the chat was taken","arguments":[]},{"kind":"class","name":"messageActionCustomAction","type":"MessageAction","id":4209418070,"comment":"Custom action (most likely not supported by the current layer, an upgrade might be needed)","arguments":[{"name":"message","type":"string","comment":"Action message"}]},{"kind":"class","name":"messageActionBotAllowed","type":"MessageAction","id":3306608249,"comment":"We have given the bot permission to send us direct messages.\n\nThe optional fields specify how did we authorize the bot to send us messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"attach_menu","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"We have authorized the bot to send us messages by installing the bot's attachment menu."},{"name":"from_request","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"We have allowed the bot to send us messages using {@link bots.RawAllowSendMessageRequest}."},{"name":"domain","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"We have authorized the bot to send us messages by logging into a website via Telegram Login »; this field contains the domain name of the website on which the user has logged in."},{"name":"app","type":"BotApp","typeModifiers":{"predicate":"flags.2"},"comment":"We have authorized the bot to send us messages by opening the specified bot mini app."}]},{"kind":"class","name":"messageActionSecureValuesSentMe","type":"MessageAction","id":455635795,"comment":"Secure telegram passport values were received","arguments":[{"name":"values","type":"SecureValue","typeModifiers":{"isVector":true},"comment":"Vector with information about documents and other Telegram Passport elements that were shared with the bot"},{"name":"credentials","type":"SecureCredentialsEncrypted","comment":"Encrypted credentials required to decrypt the data"}]},{"kind":"class","name":"messageActionSecureValuesSent","type":"MessageAction","id":3646710100,"comment":"Request for secure telegram passport values was sent","arguments":[{"name":"types","type":"SecureValueType","typeModifiers":{"isVector":true},"comment":"Secure value types"}]},{"kind":"class","name":"messageActionContactSignUp","type":"MessageAction","id":4092747638,"comment":"A contact just signed up to telegram","arguments":[]},{"kind":"class","name":"messageActionGeoProximityReached","type":"MessageAction","id":2564871831,"comment":"A user of the chat is now in proximity of another user","arguments":[{"name":"from_id","type":"Peer","comment":"The user or chat that is now in proximity of to_id"},{"name":"to_id","type":"Peer","comment":"The user or chat that subscribed to live geolocation proximity alerts"},{"name":"distance","type":"int","comment":"Distance, in meters (0-100000)"}]},{"kind":"class","name":"messageActionGroupCall","type":"MessageAction","id":2047704898,"comment":"The group call has ended","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"duration","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Group call duration"}]},{"kind":"class","name":"messageActionInviteToGroupCall","type":"MessageAction","id":1345295095,"comment":"A set of users was invited to the group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"users","type":"int53","typeModifiers":{"isVector":true},"comment":"The invited users"}]},{"kind":"class","name":"messageActionSetMessagesTTL","type":"MessageAction","id":1007897979,"comment":"The Time-To-Live of messages in this chat was changed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"period","type":"int","comment":"New Time-To-Live of all messages sent in this chat; if 0, autodeletion was disabled."},{"name":"auto_setting_from","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the chat TTL setting was set not due to a manual change by one of participants, but automatically because one of the participants has the {@link messages.RawSetDefaultHistoryTTLRequest}. For example, when a user writes to us for the first time and we have set a default messages TTL of 1 week, this service message (with auto_setting_from=our_userid) will be emitted before our first message."}]},{"kind":"class","name":"messageActionGroupCallScheduled","type":"MessageAction","id":3013637729,"comment":"A group call was scheduled","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"schedule_date","type":"int","comment":"When is this group call scheduled to start"}]},{"kind":"class","name":"messageActionSetChatTheme","type":"MessageAction","id":2860016453,"comment":"The chat theme was changed","arguments":[{"name":"emoticon","type":"string","comment":"The emoji that identifies a chat theme"}]},{"kind":"class","name":"messageActionChatJoinedByRequest","type":"MessageAction","id":3955008459,"comment":"A user was accepted into the group by an admin","arguments":[]},{"kind":"class","name":"messageActionWebViewDataSentMe","type":"MessageAction","id":1205698681,"comment":"Data from an opened reply keyboard bot mini app was relayed to the bot that owns it (bot side service message).","arguments":[{"name":"text","type":"string","comment":"Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app."},{"name":"data","type":"string","comment":"Relayed data."}]},{"kind":"class","name":"messageActionWebViewDataSent","type":"MessageAction","id":3032714421,"comment":"Data from an opened reply keyboard bot mini app was relayed to the bot that owns it (user side service message).\n\nClients should display a service message with the text Data from the «$text» button was transferred to the bot.","arguments":[{"name":"text","type":"string","comment":"Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app."}]},{"kind":"class","name":"messageActionGiftPremium","type":"MessageAction","id":3359468268,"comment":"Info about a gifted Telegram Premium subscription","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the gift in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"months","type":"int","comment":"Duration of the gifted Telegram Premium subscription"},{"name":"crypto_currency","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If the gift was bought using a cryptocurrency, the cryptocurrency name."},{"name":"crypto_amount","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"If the gift was bought using a cryptocurrency, price of the gift in the smallest units of a cryptocurrency."}]},{"kind":"class","name":"messageActionTopicCreate","type":"MessageAction","id":228168278,"comment":"A forum topic was created.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Topic name."},{"name":"icon_color","type":"int","comment":"If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F."},{"name":"icon_emoji_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the custom emoji used as topic icon."}]},{"kind":"class","name":"messageActionTopicEdit","type":"MessageAction","id":3230943264,"comment":"Forum topic information was edited.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"New topic title."},{"name":"icon_emoji_id","type":"long","typeModifiers":{"predicate":"flags.1"},"comment":"ID of the new custom emoji used as topic icon, or if it was removed."},{"name":"closed","type":"Bool","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the topic was opened or closed."},{"name":"hidden","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the topic was hidden or unhidden (only valid for the \"General\" topic, id=1)."}]},{"kind":"class","name":"messageActionSuggestProfilePhoto","type":"MessageAction","id":1474192222,"comment":"A new profile picture was suggested using {@link photos.RawUploadContactProfilePhotoRequest}.","arguments":[{"name":"photo","type":"Photo","comment":"The photo that the user suggested we set as profile picture."}]},{"kind":"class","name":"messageActionRequestedPeer","type":"MessageAction","id":827428507,"comment":"Contains info about one or more peers that the we (the user) shared with the bot after clicking on a {@link RawKeyboardButtonRequestPeer} button (service message sent by the user).","arguments":[{"name":"button_id","type":"int","comment":"button_id contained in the {@link RawKeyboardButtonRequestPeer}"},{"name":"peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"The shared peers"}]},{"kind":"class","name":"messageActionSetChatWallPaper","type":"MessageAction","id":1348510708,"comment":"The wallpaper » of the current chat was changed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"same","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates the user applied a wallpaper » previously sent by the other user in a {@link RawMessageActionSetChatWallPaper} message."},{"name":"for_both","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, indicates the wallpaper was forcefully applied for both sides, without explicit confirmation from the other side.
If the message is incoming, and we did not like the new wallpaper the other user has chosen for us, we can re-set our previous wallpaper just on our side, by invoking {@link messages.RawSetChatWallPaperRequest}, providing only the revert flag (and obviously the peer parameter)."},{"name":"wallpaper","type":"WallPaper","comment":"New wallpaper"}]},{"kind":"class","name":"messageActionGiftCode","type":"MessageAction","id":1737240073,"comment":"Contains a Telegram Premium giftcode link.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_giveaway","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, this gift code was received from a giveaway » started by a channel/supergroup we're subscribed to."},{"name":"unclaimed","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the link was not redeemed yet."},{"name":"boost_peer","type":"Peer","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of the channel/supergroup that created the gift code either directly or through a giveaway: if we import this giftcode link, we will also automatically boost this channel/supergroup."},{"name":"months","type":"int","comment":"Duration in months of the gifted Telegram Premium subscription."},{"name":"slug","type":"string","comment":"Slug of the Telegram Premium giftcode link"},{"name":"currency","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"crypto_currency","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"If set, the gift was made using the specified cryptocurrency."},{"name":"crypto_amount","type":"long","typeModifiers":{"predicate":"flags.3"},"comment":"If crypto_currency is set, contains the paid amount, in the smallest units of the cryptocurrency."}]},{"kind":"class","name":"messageActionGiveawayLaunch","id":2819576292,"type":"MessageAction","arguments":[{"name":"flags","type":"#"},{"name":"stars","type":"long","typeModifiers":{"predicate":"flags.0"}}],"comment":"A giveaway was started."},{"kind":"class","name":"messageActionGiveawayResults","id":2279797077,"type":"MessageAction","arguments":[{"name":"flags","type":"#"},{"name":"stars","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"winners_count","type":"int","comment":"Number of winners in the giveaway"},{"name":"unclaimed_count","type":"int","comment":"Number of undistributed prizes"}],"comment":"A giveaway has ended."},{"kind":"class","name":"messageActionBoostApply","type":"MessageAction","id":3422726765,"comment":"Some boosts » were applied to the channel or supergroup.","arguments":[{"name":"boosts","type":"int","comment":"Number of applied boosts."}]},{"kind":"class","name":"messageActionRequestedPeerSentMe","type":"MessageAction","id":2477987912,"comment":"Contains info about one or more peers that the a user shared with the me (the bot) after clicking on a {@link RawKeyboardButtonRequestPeer} button (service message received by the bot).","arguments":[{"name":"button_id","type":"int","comment":"button_id contained in the {@link RawKeyboardButtonRequestPeer}"},{"name":"peers","type":"RequestedPeer","typeModifiers":{"isVector":true},"comment":"Info about the shared peers."}]},{"kind":"class","name":"messageActionPaymentRefunded","type":"MessageAction","id":1102307842,"comment":"Describes a payment refund (service message received by both users and bots).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"Identifier of the peer that returned the funds."},{"name":"currency","type":"string","comment":"Currency, XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"payload","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Bot specified invoice payload (only received by bots)."},{"name":"charge","type":"PaymentCharge","comment":"Provider payment identifier"}]},{"kind":"class","name":"messageActionGiftStars","type":"MessageAction","id":1171632161,"comment":"You gifted or were gifted some Telegram Stars.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the gift in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"stars","type":"long","comment":"Amount of gifted stars"},{"name":"crypto_currency","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If the gift was bought using a cryptocurrency, the cryptocurrency name."},{"name":"crypto_amount","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"If the gift was bought using a cryptocurrency, price of the gift in the smallest units of a cryptocurrency."},{"name":"transaction_id","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of the transaction, only visible to the receiver of the gift."}]},{"kind":"class","name":"messageActionPrizeStars","type":"MessageAction","id":2953594786,"arguments":[{"name":"flags","type":"#"},{"name":"unclaimed","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"stars","type":"long"},{"name":"transaction_id","type":"string"},{"name":"boost_peer","type":"Peer"},{"name":"giveaway_msg_id","type":"int"}]},{"kind":"class","name":"messageActionStarGift","id":2612260676,"type":"MessageAction","arguments":[{"name":"flags","type":"#"},{"name":"name_hidden","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"saved","type":"true","typeModifiers":{"predicate":"flags.2"}},{"name":"converted","type":"true","typeModifiers":{"predicate":"flags.3"}},{"name":"gift","type":"StarGift"},{"name":"message","type":"TextWithEntities","typeModifiers":{"predicate":"flags.1"}},{"name":"convert_stars","type":"long"}]},{"kind":"class","name":"dialog","type":"Dialog","id":3582593222,"comment":"Chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is the dialog pinned"},{"name":"unread_mark","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the chat was manually marked as unread"},{"name":"view_forum_as_messages","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
This setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of this flag."},{"name":"peer","type":"Peer","comment":"The chat"},{"name":"top_message","type":"int","comment":"The latest message ID"},{"name":"read_inbox_max_id","type":"int","comment":"Position up to which all incoming messages are read."},{"name":"read_outbox_max_id","type":"int","comment":"Position up to which all outgoing messages are read."},{"name":"unread_count","type":"int","comment":"Number of unread messages"},{"name":"unread_mentions_count","type":"int","comment":"Number of unread mentions"},{"name":"unread_reactions_count","type":"int","comment":"Number of unread reactions to messages you sent"},{"name":"notify_settings","type":"PeerNotifySettings","comment":"Notification settings"},{"name":"pts","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"PTS"},{"name":"draft","type":"DraftMessage","typeModifiers":{"predicate":"flags.1"},"comment":"Message draft"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Peer folder ID, for more info click here"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Time-to-live of all messages sent in this dialog"}]},{"kind":"class","name":"dialogFolder","type":"Dialog","id":1908216652,"comment":"Dialog in folder","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is this folder pinned"},{"name":"folder","type":"Folder","comment":"The folder"},{"name":"peer","type":"Peer","comment":"Peer in folder"},{"name":"top_message","type":"int","comment":"Latest message ID of dialog"},{"name":"unread_muted_peers_count","type":"int","comment":"Number of unread muted peers in folder"},{"name":"unread_unmuted_peers_count","type":"int","comment":"Number of unread unmuted peers in folder"},{"name":"unread_muted_messages_count","type":"int","comment":"Number of unread messages from muted peers in folder"},{"name":"unread_unmuted_messages_count","type":"int","comment":"Number of unread messages from unmuted peers in folder"}]},{"kind":"class","name":"photoEmpty","type":"Photo","id":590459437,"comment":"Empty constructor, non-existent photo","arguments":[{"name":"id","type":"long","comment":"Photo identifier"}]},{"kind":"class","name":"photo","type":"Photo","id":4212750949,"comment":"Photo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_stickers","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the photo has mask stickers attached to it"},{"name":"id","type":"long","comment":"ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"file_reference","type":"bytes","comment":"file reference"},{"name":"date","type":"int","comment":"Date of upload"},{"name":"sizes","type":"PhotoSize","typeModifiers":{"isVector":true},"comment":"Available sizes for download"},{"name":"video_sizes","type":"VideoSize","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"For animated profiles, the MPEG4 videos"},{"name":"dc_id","type":"int","comment":"DC ID to use for download"}]},{"kind":"class","name":"photoSizeEmpty","type":"PhotoSize","id":236446268,"comment":"Empty constructor. Image with this thumbnail is unavailable.","arguments":[{"name":"type","type":"string","comment":"Thumbnail type »"}]},{"kind":"class","name":"photoSize","type":"PhotoSize","id":1976012384,"comment":"Image description.","arguments":[{"name":"type","type":"string","comment":"Thumbnail type »"},{"name":"w","type":"int","comment":"Image width"},{"name":"h","type":"int","comment":"Image height"},{"name":"size","type":"int","comment":"File size"}]},{"kind":"class","name":"photoCachedSize","type":"PhotoSize","id":35527382,"comment":"Description of an image and its content.","arguments":[{"name":"type","type":"string","comment":"Thumbnail type"},{"name":"w","type":"int","comment":"Image width"},{"name":"h","type":"int","comment":"Image height"},{"name":"bytes","type":"bytes","comment":"Binary data, file content"}]},{"kind":"class","name":"photoStrippedSize","type":"PhotoSize","id":3769678894,"comment":"A low-resolution compressed JPG payload","arguments":[{"name":"type","type":"string","comment":"Thumbnail type"},{"name":"bytes","type":"bytes","comment":"Thumbnail data, see here for more info on decompression »"}]},{"kind":"class","name":"photoSizeProgressive","type":"PhotoSize","id":4198431637,"comment":"Progressively encoded photosize","arguments":[{"name":"type","type":"string","comment":"Photosize type »"},{"name":"w","type":"int","comment":"Photo width"},{"name":"h","type":"int","comment":"Photo height"},{"name":"sizes","type":"int","typeModifiers":{"isVector":true},"comment":"Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image."}]},{"kind":"class","name":"photoPathSize","type":"PhotoSize","id":3626061121,"comment":"Messages with animated stickers can have a compressed svg (< 300 bytes) to show the outline of the sticker before fetching the actual lottie animation.","arguments":[{"name":"type","type":"string","comment":"Always j"},{"name":"bytes","type":"bytes","comment":"Compressed SVG path payload, see here for decompression instructions"}]},{"kind":"class","name":"geoPointEmpty","type":"GeoPoint","id":286776671,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"geoPoint","type":"GeoPoint","id":2997024355,"comment":"GeoPoint.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"long","type":"double","comment":"Longitude"},{"name":"lat","type":"double","comment":"Latitude"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"accuracy_radius","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"The estimated horizontal accuracy of the location, in meters; as defined by the sender."}]},{"kind":"class","name":"auth.sentCode","type":"auth.SentCode","id":1577067778,"comment":"Contains info about a sent verification code.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"type","type":"auth.SentCodeType","comment":"Phone code type"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash, to be stored and later re-used with {@link auth.RawSignInRequest}"},{"name":"next_type","type":"auth.CodeType","typeModifiers":{"predicate":"flags.1"},"comment":"Phone code type that will be sent next, if the phone code is not received within timeout seconds: to send it use {@link auth.RawResendCodeRequest}"},{"name":"timeout","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Timeout for reception of the phone code"}]},{"kind":"class","name":"auth.sentCodeSuccess","type":"auth.SentCode","id":596704836,"comment":"The user successfully authorized using future auth tokens","arguments":[{"name":"authorization","type":"auth.Authorization","comment":"Authorization info"}]},{"kind":"class","name":"auth.authorization","type":"auth.Authorization","id":782418132,"comment":"Contains user authorization info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"setup_password_required","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Suggests the user to set up a 2-step verification password to be able to log in again"},{"name":"otherwise_relogin_days","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Iff setup_password_required is set and the user declines to set a 2-step verification password, they will be able to log into their account via SMS again only after this many days pass."},{"name":"tmp_sessions","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Temporary passport sessions"},{"name":"future_auth_token","type":"bytes","typeModifiers":{"predicate":"flags.2"},"comment":"A future auth token"},{"name":"user","type":"User","comment":"Info on authorized user"}]},{"kind":"class","name":"auth.authorizationSignUpRequired","type":"auth.Authorization","id":1148485274,"comment":"An account with this phone number doesn't exist on telegram: the user has to enter basic information and sign up","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"terms_of_service","type":"help.TermsOfService","typeModifiers":{"predicate":"flags.0"},"comment":"Telegram's terms of service: the user must read and accept the terms of service before signing up to telegram"}]},{"kind":"class","name":"auth.exportedAuthorization","type":"auth.ExportedAuthorization","id":3023364792,"comment":"Data for copying of authorization between data centers.","arguments":[{"name":"id","type":"long","comment":"current user identifier"},{"name":"bytes","type":"bytes","comment":"authorizes key"}]},{"kind":"class","name":"inputNotifyPeer","type":"InputNotifyPeer","id":3099351820,"comment":"Notifications generated by a certain user or group.","arguments":[{"name":"peer","type":"InputPeer","comment":"User or group"}]},{"kind":"class","name":"inputNotifyUsers","type":"InputNotifyPeer","id":423314455,"comment":"Notifications generated by all users.","arguments":[]},{"kind":"class","name":"inputNotifyChats","type":"InputNotifyPeer","id":1251338318,"comment":"Notifications generated by all groups.","arguments":[]},{"kind":"class","name":"inputNotifyBroadcasts","type":"InputNotifyPeer","id":2983951486,"comment":"All channels","arguments":[]},{"kind":"class","name":"inputNotifyForumTopic","type":"InputNotifyPeer","id":1548122514,"comment":"Notifications generated by a topic in a forum.","arguments":[{"name":"peer","type":"InputPeer","comment":"Forum ID"},{"name":"top_msg_id","type":"int","comment":"Topic ID"}]},{"kind":"class","name":"inputPeerNotifySettings","type":"InputPeerNotifySettings","id":3402328802,"comment":"Notification settings.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"show_previews","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"If the text of the message shall be displayed in notification"},{"name":"silent","type":"Bool","typeModifiers":{"predicate":"flags.1"},"comment":"Peer was muted?"},{"name":"mute_until","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Date until which all notifications shall be switched off"},{"name":"sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.3"},"comment":"Identifier of an audio file to play for notifications."},{"name":"stories_muted","type":"Bool","typeModifiers":{"predicate":"flags.6"},"comment":"Whether story notifications should be disabled."},{"name":"stories_hide_sender","type":"Bool","typeModifiers":{"predicate":"flags.7"},"comment":"Whether the sender name should be displayed in story notifications."},{"name":"stories_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.8"},"comment":"Identifier of an audio file to play for story notifications."}]},{"kind":"class","name":"peerNotifySettings","type":"PeerNotifySettings","id":2573347852,"comment":"Notification settings.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"show_previews","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"(Ternary value) If set, indicates whether or not to display previews of messages in notifications; otherwise the default behavior should be used."},{"name":"silent","type":"Bool","typeModifiers":{"predicate":"flags.1"},"comment":"(Ternary value) If set, indicates whether to mute or unmute the peer; otherwise the default behavior should be used."},{"name":"mute_until","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Mute all notifications until this date"},{"name":"ios_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.3"},"comment":"Notification sound for the official iOS application"},{"name":"android_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.4"},"comment":"Notification sound for the official android application"},{"name":"other_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.5"},"comment":"Notification sound for other applications"},{"name":"stories_muted","type":"Bool","typeModifiers":{"predicate":"flags.6"},"comment":"Whether story notifications should be disabled."},{"name":"stories_hide_sender","type":"Bool","typeModifiers":{"predicate":"flags.7"},"comment":"Whether the sender name should be displayed in story notifications."},{"name":"stories_ios_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.8"},"comment":"Sound for story notifications on the official iOS application"},{"name":"stories_android_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.9"},"comment":"Sound for story notifications on the official Android application"},{"name":"stories_other_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.10"},"comment":"Sound for story notifications on other applications"}]},{"kind":"class","name":"peerSettings","type":"PeerSettings","id":2899733598,"comment":"List of actions that are possible when interacting with this user, to be shown as suggested actions in the chat action bar », see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"report_spam","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we can still report the user for spam"},{"name":"add_contact","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether we can add the user as contact"},{"name":"block_contact","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether we can block the user"},{"name":"share_contact","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether we can share the user's contact"},{"name":"need_contacts_exception","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether a special exception for contacts is needed"},{"name":"report_geo","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether we can report a geo group as irrelevant for this location"},{"name":"autoarchived","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether this peer was automatically archived according to {@link RawGlobalPrivacySettings} and can be unarchived"},{"name":"invite_members","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"If set, this is a recently created group chat to which new members can be invited"},{"name":"request_chat_broadcast","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"This flag is set if request_chat_title and request_chat_date fields are set and the join request » is related to a channel (otherwise if only the request fields are set, the join request » is related to a chat)."},{"name":"business_bot_paused","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"This flag is set if both business_bot_id and business_bot_manage_url are set and all connected business bots » were paused in this chat using {@link account.RawToggleConnectedBotPausedRequest}."},{"name":"business_bot_can_reply","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"This flag is set if both business_bot_id and business_bot_manage_url are set and connected business bots » can reply to messages in this chat, as specified by the settings during initial configuration."},{"name":"geo_distance","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Distance in meters between us and this peer"},{"name":"request_chat_title","type":"string","typeModifiers":{"predicate":"flags.9"},"comment":"If set, this is a private chat with an administrator of a chat or channel to which the user sent a join request, and this field contains the chat/channel's title."},{"name":"request_chat_date","type":"int","typeModifiers":{"predicate":"flags.9"},"comment":"If set, this is a private chat with an administrator of a chat or channel to which the user sent a join request, and this field contains the timestamp when the join request » was sent."},{"name":"business_bot_id","type":"int53","typeModifiers":{"predicate":"flags.13"},"comment":"Contains the ID of the business bot » managing this chat, used to display info about the bot in the action bar."},{"name":"business_bot_manage_url","type":"string","typeModifiers":{"predicate":"flags.13"},"comment":"Contains a deep link », used to open a management menu in the business bot. This flag is set if and only if business_bot_id is set."}]},{"kind":"class","name":"wallPaper","type":"WallPaper","id":2755118061,"comment":"Represents a wallpaper based on an image.","arguments":[{"name":"id","type":"long","comment":"Identifier"},{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we created this wallpaper"},{"name":"default","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is the default wallpaper"},{"name":"pattern","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is a pattern wallpaper »"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether this wallpaper should be used in dark mode."},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"slug","type":"string","comment":"Unique wallpaper ID, used when generating wallpaper links or importing wallpaper links."},{"name":"document","type":"Document","comment":"The actual wallpaper"},{"name":"settings","type":"WallPaperSettings","typeModifiers":{"predicate":"flags.2"},"comment":"Info on how to generate the wallpaper, according to these instructions »."}]},{"kind":"class","name":"wallPaperNoFile","type":"WallPaper","id":3766501654,"comment":"Represents a wallpaper only based on colors/gradients.","arguments":[{"name":"id","type":"long","comment":"Wallpaper ID"},{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"default","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is the default wallpaper"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether this wallpaper should be used in dark mode."},{"name":"settings","type":"WallPaperSettings","typeModifiers":{"predicate":"flags.2"},"comment":"Info on how to generate the wallpaper."}]},{"kind":"class","name":"inputReportReasonSpam","type":"ReportReason","id":1490799288,"comment":"Report for spam","arguments":[]},{"kind":"class","name":"inputReportReasonViolence","type":"ReportReason","id":505595789,"comment":"Report for violence","arguments":[]},{"kind":"class","name":"inputReportReasonPornography","type":"ReportReason","id":777640226,"comment":"Report for pornography","arguments":[]},{"kind":"class","name":"inputReportReasonChildAbuse","type":"ReportReason","id":2918469347,"comment":"Report for child abuse","arguments":[]},{"kind":"class","name":"inputReportReasonOther","type":"ReportReason","id":3252986545,"comment":"Other","arguments":[]},{"kind":"class","name":"inputReportReasonCopyright","type":"ReportReason","id":2609510714,"comment":"Report for copyrighted content","arguments":[]},{"kind":"class","name":"inputReportReasonGeoIrrelevant","type":"ReportReason","id":3688169197,"comment":"Report an irrelevant geo group","arguments":[]},{"kind":"class","name":"inputReportReasonFake","type":"ReportReason","id":4124956391,"comment":"Report for impersonation","arguments":[]},{"kind":"class","name":"inputReportReasonIllegalDrugs","type":"ReportReason","id":177124030,"comment":"Report for illegal drugs","arguments":[]},{"kind":"class","name":"inputReportReasonPersonalDetails","type":"ReportReason","id":2663876157,"comment":"Report for divulgation of personal details","arguments":[]},{"kind":"class","name":"userFull","id":525919081,"type":"UserFull","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether you have blocked this user"},{"name":"phone_calls_available","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether this user can make VoIP calls"},{"name":"phone_calls_private","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this user's privacy settings allow you to call them"},{"name":"can_pin_message","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether you can pin messages in the chat with this user, you can do this only for a chat with yourself"},{"name":"has_scheduled","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether scheduled messages are available"},{"name":"video_calls_available","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether the user can receive video calls"},{"name":"voice_messages_forbidden","type":"true","typeModifiers":{"predicate":"flags.20"},"comment":"Whether this user doesn't allow sending voice messages in a private chat with them"},{"name":"translations_disabled","type":"true","typeModifiers":{"predicate":"flags.23"},"comment":"Whether the real-time chat translation popup should be hidden."},{"name":"stories_pinned_available","type":"true","typeModifiers":{"predicate":"flags.26"},"comment":"Whether this user has some pinned stories."},{"name":"blocked_my_stories_from","type":"true","typeModifiers":{"predicate":"flags.27"},"comment":"Whether we've blocked this user, preventing them from seeing our stories »."},{"name":"wallpaper_overridden","type":"true","typeModifiers":{"predicate":"flags.28"},"comment":"Whether the other user has chosen a custom wallpaper for us using {@link messages.RawSetChatWallPaperRequest} and the for_both flag, see here » for more info."},{"name":"contact_require_premium","type":"true","typeModifiers":{"predicate":"flags.29"},"comment":"If set, we cannot write to this user: subscribe to Telegram Premium to get permission to write to this user.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.new_noncontact_peers_require_premium flag, see here » for more info."},{"name":"read_dates_private","type":"true","typeModifiers":{"predicate":"flags.30"},"comment":"If set, we cannot fetch the exact read date of messages we send to this user using {@link messages.RawGetOutboxReadDateRequest}.
The exact read date of messages might still be unavailable for other reasons, see {@link messages.RawGetOutboxReadDateRequest} for more info.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.hide_read_marks flag."},{"name":"flags2","type":"#","comment":"Flags, see TL conditional fields"},{"name":"sponsored_enabled","type":"true","typeModifiers":{"predicate":"flags2.7"},"comment":"Whether ads were re-enabled for the current account (only accessible to the currently logged-in user), see here » for more info."},{"name":"id","type":"int53","comment":"User ID"},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Bio of the user"},{"name":"settings","type":"PeerSettings","comment":"Peer settings"},{"name":"personal_photo","type":"Photo","typeModifiers":{"predicate":"flags.21"},"comment":"Personal profile photo, to be shown instead of profile_photo."},{"name":"profile_photo","type":"Photo","typeModifiers":{"predicate":"flags.2"},"comment":"Profile photo"},{"name":"fallback_photo","type":"Photo","typeModifiers":{"predicate":"flags.22"},"comment":"Fallback profile photo, displayed if no photo is present in profile_photo or personal_photo, due to privacy settings."},{"name":"notify_settings","type":"PeerNotifySettings","comment":"Notification settings"},{"name":"bot_info","type":"BotInfo","typeModifiers":{"predicate":"flags.3"},"comment":"For bots, info about the bot (bot commands, etc)"},{"name":"pinned_msg_id","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Message ID of the last pinned message"},{"name":"common_chats_count","type":"int","comment":"Chats in common with this user"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.11"},"comment":"Peer folder ID, for more info click here"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.14"},"comment":"Time To Live of all messages in this chat; once a message is this many seconds old, it must be deleted."},{"name":"theme_emoticon","type":"string","typeModifiers":{"predicate":"flags.15"},"comment":"Emoji associated with chat theme"},{"name":"private_forward_name","type":"string","typeModifiers":{"predicate":"flags.16"},"comment":"Anonymized text to be shown instead of the user's name on forwarded messages"},{"name":"bot_group_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.17"},"comment":"A suggested set of administrator rights for the bot, to be shown when adding the bot as admin to a group, see here for more info on how to handle them »."},{"name":"bot_broadcast_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.18"},"comment":"A suggested set of administrator rights for the bot, to be shown when adding the bot as admin to a channel, see here for more info on how to handle them »."},{"name":"premium_gifts","type":"PremiumGiftOption","typeModifiers":{"predicate":"flags.19","isVector":true},"comment":"Telegram Premium subscriptions gift options"},{"name":"wallpaper","type":"WallPaper","typeModifiers":{"predicate":"flags.24"},"comment":"Wallpaper to use in the private chat with the user."},{"name":"stories","type":"PeerStories","typeModifiers":{"predicate":"flags.25"},"comment":"Active stories »"},{"name":"business_work_hours","type":"BusinessWorkHours","typeModifiers":{"predicate":"flags2.0"},"comment":"Telegram Business working hours »."},{"name":"business_location","type":"BusinessLocation","typeModifiers":{"predicate":"flags2.1"},"comment":"Telegram Business location »."},{"name":"business_greeting_message","type":"BusinessGreetingMessage","typeModifiers":{"predicate":"flags2.2"},"comment":"Telegram Business greeting message »."},{"name":"business_away_message","type":"BusinessAwayMessage","typeModifiers":{"predicate":"flags2.3"},"comment":"Telegram Business away message »."},{"name":"business_intro","type":"BusinessIntro","typeModifiers":{"predicate":"flags2.4"},"comment":"Specifies a custom Telegram Business profile introduction »."},{"name":"birthday","type":"Birthday","typeModifiers":{"predicate":"flags2.5"},"comment":"Contains info about the user's birthday »."},{"name":"personal_channel_id","type":"int53","typeModifiers":{"predicate":"flags2.6"},"comment":"ID of the associated personal channel », that should be shown in the profile page."},{"name":"personal_channel_message","type":"int","typeModifiers":{"predicate":"flags2.6"},"comment":"ID of the latest message of the associated personal channel », that should be previewed in the profile page."},{"name":"stargifts_count","type":"int","typeModifiers":{"predicate":"flags2.8"}}],"comment":"Extended user info\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor)."},{"kind":"class","name":"contact","type":"Contact","id":341499403,"comment":"A contact of the current user that is registered in the system.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"mutual","type":"Bool","comment":"Current user is in the user's contact list"}]},{"kind":"class","name":"importedContact","type":"ImportedContact","id":3242081360,"comment":"Successfully imported contact.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"client_id","type":"long","comment":"The contact's client identifier (passed to one of the InputContact constructors)"}]},{"kind":"class","name":"contactStatus","type":"ContactStatus","id":383348795,"comment":"Contact status: online / offline.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"status","type":"UserStatus","comment":"Online status"}]},{"kind":"class","name":"contacts.contactsNotModified","type":"contacts.Contacts","id":3075189202,"comment":"Contact list on the server is the same as the list on the client.","arguments":[]},{"kind":"class","name":"contacts.contacts","type":"contacts.Contacts","id":3941105218,"comment":"The current user's contact list and info on users.","arguments":[{"name":"contacts","type":"Contact","typeModifiers":{"isVector":true},"comment":"Contact list"},{"name":"saved_count","type":"int","comment":"Number of contacts that were saved successfully"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"User list"}]},{"kind":"class","name":"contacts.importedContacts","type":"contacts.ImportedContacts","id":2010127419,"comment":"Info on successfully imported contacts.","arguments":[{"name":"imported","type":"ImportedContact","typeModifiers":{"isVector":true},"comment":"List of successfully imported contacts"},{"name":"popular_invites","type":"PopularContact","typeModifiers":{"isVector":true},"comment":"Popular contacts"},{"name":"retry_contacts","type":"long","typeModifiers":{"isVector":true},"comment":"List of contact ids that could not be imported due to system limitation and will need to be imported at a later date."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users"}]},{"kind":"class","name":"contacts.blocked","type":"contacts.Blocked","id":182326673,"comment":"Full list of blocked users.","arguments":[{"name":"blocked","type":"PeerBlocked","typeModifiers":{"isVector":true},"comment":"List of blocked users"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Blocked chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users"}]},{"kind":"class","name":"contacts.blockedSlice","type":"contacts.Blocked","id":3781575060,"comment":"Incomplete list of blocked users.","arguments":[{"name":"count","type":"int","comment":"Total number of elements in the list"},{"name":"blocked","type":"PeerBlocked","typeModifiers":{"isVector":true},"comment":"List of blocked users"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Blocked chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users"}]},{"kind":"class","name":"messages.dialogs","type":"messages.Dialogs","id":364538944,"comment":"Full list of chats with messages and auxiliary data.","arguments":[{"name":"dialogs","type":"Dialog","typeModifiers":{"isVector":true},"comment":"List of chats"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of last messages from each chat"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of groups mentioned in the chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in messages and groups"}]},{"kind":"class","name":"messages.dialogsSlice","type":"messages.Dialogs","id":1910543603,"comment":"Incomplete list of dialogs with messages and auxiliary data.","arguments":[{"name":"count","type":"int","comment":"Total number of dialogs"},{"name":"dialogs","type":"Dialog","typeModifiers":{"isVector":true},"comment":"List of dialogs"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of last messages from dialogs"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in dialogs"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in messages and chats"}]},{"kind":"class","name":"messages.dialogsNotModified","type":"messages.Dialogs","id":4041467286,"comment":"Dialogs haven't changed","arguments":[{"name":"count","type":"int","comment":"Number of dialogs found server-side by the query"}]},{"kind":"class","name":"messages.messages","type":"messages.Messages","id":2356252295,"comment":"Full list of messages with auxiliary data.","arguments":[{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in dialogs"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in messages and chats"}]},{"kind":"class","name":"messages.messagesSlice","type":"messages.Messages","id":978610270,"comment":"Incomplete list of messages and auxiliary data.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inexact","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, indicates that the results may be inexact"},{"name":"count","type":"int","comment":"Total number of messages in the list"},{"name":"next_rate","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Rate to use in the offset_rate parameter in the next call to {@link messages.RawSearchGlobalRequest}"},{"name":"offset_id_offset","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if the result was fetched using offset_id, and we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}."},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in messages"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in messages and chats"}]},{"kind":"class","name":"messages.channelMessages","type":"messages.Messages","id":3346446926,"comment":"Channel messages","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inexact","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, returned results may be inexact"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"count","type":"int","comment":"Total number of results were found server-side (may not be all included here)"},{"name":"offset_id_offset","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if the result was fetched using offset_id, and we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}."},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"Found messages"},{"name":"topics","type":"ForumTopic","typeModifiers":{"isVector":true},"comment":"Forum topic information"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"messages.messagesNotModified","type":"messages.Messages","id":1951620897,"comment":"No new messages matching the query were found","arguments":[{"name":"count","type":"int","comment":"Number of results found server-side by the given query"}]},{"kind":"class","name":"messages.chats","type":"messages.Chats","id":1694474197,"comment":"List of chats with auxiliary data.","arguments":[{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats"}]},{"kind":"class","name":"messages.chatsSlice","type":"messages.Chats","id":2631405892,"comment":"Partial list of chats, more would have to be fetched with pagination","arguments":[{"name":"count","type":"int","comment":"Total number of results that were found server-side (not all are included in chats)"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"}]},{"kind":"class","name":"messages.chatFull","type":"messages.ChatFull","id":3856126364,"comment":"Full info about a channel, supergroup, gigagroup or basic group.","arguments":[{"name":"full_chat","type":"ChatFull","comment":"Full info"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.affectedHistory","type":"messages.AffectedHistory","id":3025955281,"comment":"Affected part of communication history with the user or in a chat.","arguments":[{"name":"pts","type":"int","comment":"Number of events occurred in a text box"},{"name":"pts_count","type":"int","comment":"Number of affected events"},{"name":"offset","type":"int","comment":"If a parameter contains positive value, it is necessary to repeat the method call using the given value; during the proceeding of all the history the value itself shall gradually decrease"}]},{"kind":"class","name":"inputMessagesFilterEmpty","type":"MessagesFilter","id":1474492012,"comment":"Filter is absent.","arguments":[]},{"kind":"class","name":"inputMessagesFilterPhotos","type":"MessagesFilter","id":2517214492,"comment":"Filter for messages containing photos.","arguments":[]},{"kind":"class","name":"inputMessagesFilterVideo","type":"MessagesFilter","id":2680163941,"comment":"Filter for messages containing videos.","arguments":[]},{"kind":"class","name":"inputMessagesFilterPhotoVideo","type":"MessagesFilter","id":1458172132,"comment":"Filter for messages containing photos or videos.","arguments":[]},{"kind":"class","name":"inputMessagesFilterDocument","type":"MessagesFilter","id":2665345416,"comment":"Filter for messages containing documents.","arguments":[]},{"kind":"class","name":"inputMessagesFilterUrl","type":"MessagesFilter","id":2129714567,"comment":"Return only messages containing URLs","arguments":[]},{"kind":"class","name":"inputMessagesFilterGif","type":"MessagesFilter","id":4291323271,"comment":"Return only messages containing gifs","arguments":[]},{"kind":"class","name":"inputMessagesFilterVoice","type":"MessagesFilter","id":1358283666,"comment":"Return only messages containing voice notes","arguments":[]},{"kind":"class","name":"inputMessagesFilterMusic","type":"MessagesFilter","id":928101534,"comment":"Return only messages containing audio files","arguments":[]},{"kind":"class","name":"inputMessagesFilterChatPhotos","type":"MessagesFilter","id":975236280,"comment":"Return only chat photo changes","arguments":[]},{"kind":"class","name":"inputMessagesFilterPhoneCalls","type":"MessagesFilter","id":2160695144,"comment":"Return only phone calls","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"missed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Return only missed phone calls"}]},{"kind":"class","name":"inputMessagesFilterRoundVoice","type":"MessagesFilter","id":2054952868,"comment":"Return only round videos and voice notes","arguments":[]},{"kind":"class","name":"inputMessagesFilterRoundVideo","type":"MessagesFilter","id":3041516115,"comment":"Return only round videos","arguments":[]},{"kind":"class","name":"inputMessagesFilterMyMentions","type":"MessagesFilter","id":3254314650,"comment":"Return only messages where the current user was mentioned.","arguments":[]},{"kind":"class","name":"inputMessagesFilterGeo","type":"MessagesFilter","id":3875695885,"comment":"Return only messages containing geolocations","arguments":[]},{"kind":"class","name":"inputMessagesFilterContacts","type":"MessagesFilter","id":3764575107,"comment":"Return only messages containing contacts","arguments":[]},{"kind":"class","name":"inputMessagesFilterPinned","type":"MessagesFilter","id":464520273,"comment":"Fetch only pinned messages","arguments":[]},{"kind":"class","name":"updateNewMessage","type":"Update","id":522914557,"comment":"New message in a private chat or in a basic group.","arguments":[{"name":"message","type":"Message","comment":"Message"},{"name":"pts","type":"int","comment":"New quantity of actions in a message box"},{"name":"pts_count","type":"int","comment":"Number of generated events"}]},{"kind":"class","name":"updateMessageID","type":"Update","id":1318109142,"comment":"Sent message with random_id client identifier was assigned an identifier.","arguments":[{"name":"id","type":"int","comment":"id identifier of a respective Message"},{"name":"random_id","type":"long","comment":"Previously transferred client random_id identifier"}]},{"kind":"class","name":"updateDeleteMessages","type":"Update","id":2718806245,"comment":"Messages were deleted.","arguments":[{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"List of identifiers of deleted messages"},{"name":"pts","type":"int","comment":"New quality of actions in a message box"},{"name":"pts_count","type":"int","comment":"Number of generated events"}]},{"kind":"class","name":"updateUserTyping","type":"Update","id":3223225727,"comment":"The user is preparing a message; typing, recording, uploading, etc. This update is valid for 6 seconds. If no further updates of this kind are received after 6 seconds, it should be considered that the user stopped doing whatever they were doing","arguments":[{"name":"user_id","type":"int53","comment":"User id"},{"name":"action","type":"SendMessageAction","comment":"Action type"}]},{"kind":"class","name":"updateChatUserTyping","type":"Update","id":2202565360,"comment":"The user is preparing a message in a group; typing, recording, uploading, etc. This update is valid for 6 seconds. If no further updates of this kind are received after 6 seconds, it should be considered that the user stopped doing whatever they were doing","arguments":[{"name":"chat_id","type":"int53","comment":"Group id"},{"name":"from_id","type":"Peer","comment":"Peer that started typing (can be the chat itself, in case of anonymous admins)."},{"name":"action","type":"SendMessageAction","comment":"Type of action"}]},{"kind":"class","name":"updateChatParticipants","type":"Update","id":125178264,"comment":"Composition of chat participants changed.","arguments":[{"name":"participants","type":"ChatParticipants","comment":"Updated chat participants"}]},{"kind":"class","name":"updateUserStatus","type":"Update","id":3854432478,"comment":"Contact status update.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"status","type":"UserStatus","comment":"New status"}]},{"kind":"class","name":"updateUserName","type":"Update","id":2810480932,"comment":"Changes the user's first name, last name and username.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"first_name","type":"string","comment":"New first name. Corresponds to the new value of real_first_name field of the {@link RawUserFull} constructor."},{"name":"last_name","type":"string","comment":"New last name. Corresponds to the new value of real_last_name field of the {@link RawUserFull} constructor."},{"name":"usernames","type":"Username","typeModifiers":{"isVector":true},"comment":"Usernames."}]},{"kind":"class","name":"updateNewAuthorization","type":"Update","id":2303831023,"comment":"A new session logged into the current user's account through an unknown device.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"unconfirmed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the session is unconfirmed, see here » for more info."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Authorization date"},{"name":"device","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Name of device, for example Android"},{"name":"location","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Location, for example USA, NY (IP=1.2.3.4)"}]},{"kind":"class","name":"updateNewEncryptedMessage","type":"Update","id":314359194,"comment":"New encrypted message.","arguments":[{"name":"message","type":"EncryptedMessage","comment":"Message"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateEncryptedChatTyping","type":"Update","id":386986326,"comment":"Interlocutor is typing a message in an encrypted chat. Update period is 6 second. If upon this time there is no repeated update, it shall be considered that the interlocutor stopped typing.","arguments":[{"name":"chat_id","type":"int","comment":"Chat ID"}]},{"kind":"class","name":"updateEncryption","type":"Update","id":3030575245,"comment":"Change of state in an encrypted chat.","arguments":[{"name":"chat","type":"EncryptedChat","comment":"Encrypted chat"},{"name":"date","type":"int","comment":"Date of change"}]},{"kind":"class","name":"updateEncryptedMessagesRead","type":"Update","id":956179895,"comment":"Communication history in an encrypted chat was marked as read.","arguments":[{"name":"chat_id","type":"int","comment":"Chat ID"},{"name":"max_date","type":"int","comment":"Maximum value of data for read messages"},{"name":"date","type":"int","comment":"Time when messages were read"}]},{"kind":"class","name":"updateChatParticipantAdd","type":"Update","id":1037718609,"comment":"New group member.","arguments":[{"name":"chat_id","type":"int53","comment":"Group ID"},{"name":"user_id","type":"int53","comment":"ID of the new member"},{"name":"inviter_id","type":"int53","comment":"ID of the user, who added member to the group"},{"name":"date","type":"int","comment":"When was the participant added"},{"name":"version","type":"int","comment":"Chat version number"}]},{"kind":"class","name":"updateChatParticipantDelete","type":"Update","id":3811523959,"comment":"A member has left the group.","arguments":[{"name":"chat_id","type":"int53","comment":"Group ID"},{"name":"user_id","type":"int53","comment":"ID of the user"},{"name":"version","type":"int","comment":"Used in basic groups to reorder updates and make sure that all of them was received."}]},{"kind":"class","name":"updateDcOptions","type":"Update","id":2388564083,"comment":"Changes in the data center configuration options.","arguments":[{"name":"dc_options","type":"DcOption","typeModifiers":{"isVector":true},"comment":"New connection options"}]},{"kind":"class","name":"updateNotifySettings","type":"Update","id":3200411887,"comment":"Changes in notification settings.","arguments":[{"name":"peer","type":"NotifyPeer","comment":"Notification source"},{"name":"notify_settings","type":"PeerNotifySettings","comment":"New notification settings"}]},{"kind":"class","name":"updateServiceNotification","type":"Update","id":3957614617,"comment":"A service message for the user.\n\nThe app must show the message to the user upon receiving this update. In case the popup parameter was passed, the text message must be displayed in a popup alert immediately upon receipt. It is recommended to handle the text as you would an ordinary message in terms of highlighting links, etc. The message must also be stored locally as part of the message history with the user id 777000 (Telegram Notifications).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"popup","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the message must be displayed in a popup."},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"inbox_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"When was the notification received
The message must also be stored locally as part of the message history with the user id 777000 (Telegram Notifications)."},{"name":"type","type":"string","comment":"String, identical in format and contents to the type field in API errors. Describes type of service message. It is acceptable to ignore repeated messages of the same type within a short period of time (15 minutes)."},{"name":"message","type":"string","comment":"Message text"},{"name":"media","type":"MessageMedia","comment":"Media content (optional)"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"}]},{"kind":"class","name":"updatePrivacy","type":"Update","id":3996854058,"comment":"Privacy rules were changed","arguments":[{"name":"key","type":"PrivacyKey","comment":"Peers to which the privacy rules apply"},{"name":"rules","type":"PrivacyRule","typeModifiers":{"isVector":true},"comment":"New privacy rules"}]},{"kind":"class","name":"updateUserPhone","type":"Update","id":88680979,"comment":"A user's phone number was changed","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"phone","type":"string","comment":"New phone number"}]},{"kind":"class","name":"updateReadHistoryInbox","type":"Update","id":2627162079,"comment":"Incoming messages were read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Peer folder ID, for more info click here"},{"name":"peer","type":"Peer","comment":"Peer"},{"name":"max_id","type":"int","comment":"Maximum ID of messages read"},{"name":"still_unread_count","type":"int","comment":"Number of messages that are still unread"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateReadHistoryOutbox","type":"Update","id":791617983,"comment":"Outgoing messages were read","arguments":[{"name":"peer","type":"Peer","comment":"Peer"},{"name":"max_id","type":"int","comment":"Maximum ID of read outgoing messages"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateWebPage","type":"Update","id":2139689491,"comment":"An instant view webpage preview was generated","arguments":[{"name":"webpage","type":"WebPage","comment":"Webpage preview"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateReadMessagesContents","type":"Update","id":4163006849,"comment":"Contents of messages in the common message box were read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of read messages"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"},{"name":"date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"When was the last message in messages marked as read."}]},{"kind":"class","name":"updateChannelTooLong","type":"Update","id":277713951,"comment":"There are new updates in the specified channel, the client must fetch them.
\nIf the difference is too long or if the channel isn't currently in the states, start fetching from the specified pts.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"The channel"},{"name":"pts","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"The PTS."}]},{"kind":"class","name":"updateChannel","type":"Update","id":1666927625,"comment":"Channel/supergroup ({@link RawChannel} and/or {@link RawChannelFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawChannel}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawChannelFull}) must be invalidated for channel_id when receiving this update.","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"}]},{"kind":"class","name":"updateNewChannelMessage","type":"Update","id":1656358105,"comment":"A new message was sent in a channel/supergroup","arguments":[{"name":"message","type":"Message","comment":"New message"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateReadChannelInbox","type":"Update","id":2452516368,"comment":"Incoming messages in a channel/supergroup were read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Peer folder ID, for more info click here"},{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID"},{"name":"max_id","type":"int","comment":"Position up to which all incoming messages are read."},{"name":"still_unread_count","type":"int","comment":"Count of messages weren't read yet"},{"name":"pts","type":"int","comment":"Event count after generation"}]},{"kind":"class","name":"updateDeleteChannelMessages","type":"Update","id":3274529554,"comment":"Some messages in a supergroup/channel were deleted","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages that were deleted"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateChannelMessageViews","type":"Update","id":4062620680,"comment":"The view counter of a message in a channel has changed","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"id","type":"int","comment":"ID of the message"},{"name":"views","type":"int","comment":"New view counter"}]},{"kind":"class","name":"updateChatParticipantAdmin","type":"Update","id":3620364706,"comment":"Admin permissions of a user in a basic group were changed","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"user_id","type":"int53","comment":"ID of the (de)admined user"},{"name":"is_admin","type":"Bool","comment":"Whether the user was rendered admin"},{"name":"version","type":"int","comment":"Used in basic groups to reorder updates and make sure that all of them was received."}]},{"kind":"class","name":"updateNewStickerSet","type":"Update","id":1753886890,"comment":"A new stickerset was installed","arguments":[{"name":"stickerset","type":"messages.StickerSet","comment":"The installed stickerset"}]},{"kind":"class","name":"updateStickerSetsOrder","type":"Update","id":196268545,"comment":"The order of stickersets was changed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the updated stickers are mask stickers"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the updated stickers are custom emoji stickers"},{"name":"order","type":"long","typeModifiers":{"isVector":true},"comment":"New sticker order by sticker ID"}]},{"kind":"class","name":"updateStickerSets","type":"Update","id":834816008,"comment":"Installed stickersets have changed, the client should refetch them as described in the docs.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether mask stickersets have changed"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the list of installed custom emoji stickersets has changed"}]},{"kind":"class","name":"updateSavedGifs","type":"Update","id":2473931806,"comment":"The saved gif list has changed, the client should refetch it using {@link messages.RawGetSavedGifsRequest}","arguments":[]},{"kind":"class","name":"updateBotInlineQuery","type":"Update","id":1232025500,"comment":"An incoming inline query","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"user_id","type":"int53","comment":"User that sent the query"},{"name":"query","type":"string","comment":"Text of query"},{"name":"geo","type":"GeoPoint","typeModifiers":{"predicate":"flags.0"},"comment":"Attached geolocation"},{"name":"peer_type","type":"InlineQueryPeerType","typeModifiers":{"predicate":"flags.1"},"comment":"Type of the chat from which the inline query was sent."},{"name":"offset","type":"string","comment":"Offset to navigate through results"}]},{"kind":"class","name":"updateBotInlineSend","type":"Update","id":317794823,"comment":"The result of an inline query that was chosen by a user and sent to their chat partner. Please see our documentation on the feedback collecting for details on how to enable these updates for your bot.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"user_id","type":"int53","comment":"The user that chose the result"},{"name":"query","type":"string","comment":"The query that was used to obtain the result"},{"name":"geo","type":"GeoPoint","typeModifiers":{"predicate":"flags.0"},"comment":"Optional. Sender location, only for bots that require user location"},{"name":"id","type":"string","comment":"The unique identifier for the result that was chosen"},{"name":"msg_id","type":"InputBotInlineMessageID","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of the sent inline message. Available only if there is an inline keyboard attached to the message. Will be also received in callback queries and can be used to edit the message."}]},{"kind":"class","name":"updateEditChannelMessage","type":"Update","id":457133559,"comment":"A message was edited in a channel/supergroup","arguments":[{"name":"message","type":"Message","comment":"The new message"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateBotCallbackQuery","type":"Update","id":3117401229,"comment":"A callback button was pressed, and the button data was sent to the bot that created the button","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"user_id","type":"int53","comment":"ID of the user that pressed the button"},{"name":"peer","type":"Peer","comment":"Chat where the inline keyboard was sent"},{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"chat_instance","type":"long","comment":"Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games."},{"name":"data","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Callback data"},{"name":"game_short_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Short name of a Game to be returned, serves as the unique identifier for the game"}]},{"kind":"class","name":"updateEditMessage","type":"Update","id":3825430691,"comment":"A message was edited","arguments":[{"name":"message","type":"Message","comment":"The new edited message"},{"name":"pts","type":"int","comment":"PTS"},{"name":"pts_count","type":"int","comment":"PTS count"}]},{"kind":"class","name":"updateInlineBotCallbackQuery","type":"Update","id":1763610706,"comment":"This notification is received by bots when a button is pressed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"user_id","type":"int53","comment":"ID of the user that pressed the button"},{"name":"msg_id","type":"InputBotInlineMessageID","comment":"ID of the inline message with the button"},{"name":"chat_instance","type":"long","comment":"Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games."},{"name":"data","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Data associated with the callback button. Be aware that a bad client can send arbitrary data in this field."},{"name":"game_short_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Short name of a Game to be returned, serves as the unique identifier for the game"}]},{"kind":"class","name":"updateReadChannelOutbox","type":"Update","id":3076495785,"comment":"Outgoing messages in a channel/supergroup were read","arguments":[{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID"},{"name":"max_id","type":"int","comment":"Position up to which all outgoing messages are read."}]},{"kind":"class","name":"updateDraftMessage","type":"Update","id":457829485,"comment":"Notifies a change of a message draft.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"The peer to which the draft is associated"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the forum topic to which the draft is associated"},{"name":"draft","type":"DraftMessage","comment":"The draft"}]},{"kind":"class","name":"updateReadFeaturedStickers","type":"Update","id":1461528386,"comment":"Some featured stickers were marked as read","arguments":[]},{"kind":"class","name":"updateRecentStickers","type":"Update","id":2588027936,"comment":"The recent sticker list was updated","arguments":[]},{"kind":"class","name":"updateConfig","type":"Update","id":2720652550,"comment":"The server-side configuration has changed; the client should re-fetch the config using {@link help.RawGetConfigRequest} and {@link help.RawGetAppConfigRequest}.","arguments":[]},{"kind":"class","name":"updatePtsChanged","type":"Update","id":861169551,"comment":"Common message box sequence PTS has changed, state has to be refetched using updates.getState","arguments":[]},{"kind":"class","name":"updateChannelWebPage","type":"Update","id":791390623,"comment":"A webpage preview of a link in a channel/supergroup message was generated","arguments":[{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID"},{"name":"webpage","type":"WebPage","comment":"Generated webpage preview"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateDialogPinned","type":"Update","id":1852826908,"comment":"A dialog was pinned/unpinned","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the dialog was pinned"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Peer folder ID, for more info click here"},{"name":"peer","type":"DialogPeer","comment":"The dialog"}]},{"kind":"class","name":"updatePinnedDialogs","type":"Update","id":4195302562,"comment":"Pinned dialogs were updated","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Peer folder ID, for more info click here"},{"name":"order","type":"DialogPeer","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"New order of pinned dialogs"}]},{"kind":"class","name":"updateBotWebhookJSON","type":"Update","id":2199371971,"comment":"A new incoming event; for bots only","arguments":[{"name":"data","type":"DataJSON","comment":"The event"}]},{"kind":"class","name":"updateBotWebhookJSONQuery","type":"Update","id":2610053286,"comment":"A new incoming query; for bots only","arguments":[{"name":"query_id","type":"long","comment":"Query identifier"},{"name":"data","type":"DataJSON","comment":"Query data"},{"name":"timeout","type":"int","comment":"Query timeout"}]},{"kind":"class","name":"updateBotShippingQuery","type":"Update","id":3048144253,"comment":"This object contains information about an incoming shipping query.","arguments":[{"name":"query_id","type":"long","comment":"Unique query identifier"},{"name":"user_id","type":"int53","comment":"User who sent the query"},{"name":"payload","type":"bytes","comment":"Bot specified invoice payload"},{"name":"shipping_address","type":"PostAddress","comment":"User specified shipping address"}]},{"kind":"class","name":"updateBotPrecheckoutQuery","type":"Update","id":2359990934,"comment":"This object contains information about an incoming pre-checkout query.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Unique query identifier"},{"name":"user_id","type":"int53","comment":"User who sent the query"},{"name":"payload","type":"bytes","comment":"Bot specified invoice payload"},{"name":"info","type":"PaymentRequestedInfo","typeModifiers":{"predicate":"flags.0"},"comment":"Order info provided by the user"},{"name":"shipping_option_id","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of the shipping option chosen by the user"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Total amount in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"updatePhoneCall","type":"Update","id":2869914398,"comment":"An incoming phone call","arguments":[{"name":"phone_call","type":"PhoneCall","comment":"Phone call"}]},{"kind":"class","name":"updateLangPackTooLong","type":"Update","id":1180041828,"comment":"A language pack has changed, the client should manually fetch the changed strings using {@link langpack.RawGetDifferenceRequest}","arguments":[{"name":"lang_code","type":"string","comment":"Language code"}]},{"kind":"class","name":"updateLangPack","type":"Update","id":1442983757,"comment":"Language pack updated","arguments":[{"name":"difference","type":"LangPackDifference","comment":"Changed strings"}]},{"kind":"class","name":"updateFavedStickers","type":"Update","id":3843135853,"comment":"The list of favorited stickers was changed, the client should call {@link messages.RawGetFavedStickersRequest} to refetch the new list","arguments":[]},{"kind":"class","name":"updateChannelReadMessagesContents","type":"Update","id":3928556893,"comment":"The specified channel/supergroup messages were read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Forum topic ID."},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages that were read"}]},{"kind":"class","name":"updateContactsReset","type":"Update","id":1887741886,"comment":"All contacts were deleted","arguments":[]},{"kind":"class","name":"updateChannelAvailableMessages","type":"Update","id":2990524056,"comment":"The history of a channel/supergroup was hidden.","arguments":[{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID"},{"name":"available_min_id","type":"int","comment":"Identifier of a maximum unavailable message in a channel due to hidden history."}]},{"kind":"class","name":"updateDialogUnreadMark","type":"Update","id":3781450179,"comment":"The manual unread mark of a chat was changed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"unread","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Was the chat marked or unmarked as read"},{"name":"peer","type":"DialogPeer","comment":"The dialog"}]},{"kind":"class","name":"updateMessagePoll","type":"Update","id":2896258427,"comment":"The results of a poll have changed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"poll_id","type":"long","comment":"Poll ID"},{"name":"poll","type":"Poll","typeModifiers":{"predicate":"flags.0"},"comment":"If the server knows the client hasn't cached this poll yet, the poll itself"},{"name":"results","type":"PollResults","comment":"New poll results"}]},{"kind":"class","name":"updateChatDefaultBannedRights","type":"Update","id":1421875280,"comment":"Default banned rights in a normal chat were updated","arguments":[{"name":"peer","type":"Peer","comment":"The chat"},{"name":"default_banned_rights","type":"ChatBannedRights","comment":"New default banned rights"},{"name":"version","type":"int","comment":"Version"}]},{"kind":"class","name":"updateFolderPeers","type":"Update","id":422972864,"comment":"The peer list of a peer folder was updated","arguments":[{"name":"folder_peers","type":"FolderPeer","typeModifiers":{"isVector":true},"comment":"New peer list"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updatePeerSettings","type":"Update","id":1786671974,"comment":"Settings of a certain peer have changed","arguments":[{"name":"peer","type":"Peer","comment":"The peer"},{"name":"settings","type":"PeerSettings","comment":"Associated peer settings"}]},{"kind":"class","name":"updatePeerLocated","type":"Update","id":3031420848,"comment":"List of peers near you was updated","arguments":[{"name":"peers","type":"PeerLocated","typeModifiers":{"isVector":true},"comment":"Geolocated peer list update"}]},{"kind":"class","name":"updateNewScheduledMessage","type":"Update","id":967122427,"comment":"A message was added to the schedule queue of a chat","arguments":[{"name":"message","type":"Message","comment":"Message"}]},{"kind":"class","name":"updateDeleteScheduledMessages","type":"Update","id":2424728814,"comment":"Some scheduled messages were deleted from the schedule queue of a chat","arguments":[{"name":"peer","type":"Peer","comment":"Peer"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"Deleted scheduled messages"}]},{"kind":"class","name":"updateTheme","type":"Update","id":2182544291,"comment":"A cloud theme was updated","arguments":[{"name":"theme","type":"Theme","comment":"Theme"}]},{"kind":"class","name":"updateGeoLiveViewed","type":"Update","id":2267003193,"comment":"Live geo position message was viewed","arguments":[{"name":"peer","type":"Peer","comment":"The user that viewed the live geo position"},{"name":"msg_id","type":"int","comment":"Message ID of geo position message"}]},{"kind":"class","name":"updateLoginToken","type":"Update","id":1448076945,"comment":"A login token (for login via QR code) was accepted.","arguments":[]},{"kind":"class","name":"updateMessagePollVote","type":"Update","id":619974263,"comment":"A specific peer has voted in a poll","arguments":[{"name":"poll_id","type":"long","comment":"Poll ID"},{"name":"peer","type":"Peer","comment":"The peer that voted in the poll"},{"name":"options","type":"bytes","typeModifiers":{"isVector":true},"comment":"Chosen option(s)"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateDialogFilter","type":"Update","id":654302845,"comment":"A new folder was added","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"int","comment":"Folder ID"},{"name":"filter","type":"DialogFilter","typeModifiers":{"predicate":"flags.0"},"comment":"Folder info"}]},{"kind":"class","name":"updateDialogFilterOrder","type":"Update","id":2782339333,"comment":"New folder order","arguments":[{"name":"order","type":"int","typeModifiers":{"isVector":true},"comment":"Ordered folder IDs"}]},{"kind":"class","name":"updateDialogFilters","type":"Update","id":889491791,"comment":"Clients should update folder info","arguments":[]},{"kind":"class","name":"updatePhoneCallSignalingData","type":"Update","id":643940105,"comment":"Incoming phone call signaling payload","arguments":[{"name":"phone_call_id","type":"long","comment":"Phone call ID"},{"name":"data","type":"bytes","comment":"Signaling payload"}]},{"kind":"class","name":"updateChannelMessageForwards","type":"Update","id":3533318132,"comment":"The forward counter of a message in a channel has changed","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"id","type":"int","comment":"ID of the message"},{"name":"forwards","type":"int","comment":"New forward counter"}]},{"kind":"class","name":"updateReadChannelDiscussionInbox","type":"Update","id":3601962310,"comment":"Incoming comments in a discussion thread were marked as read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"Discussion group ID"},{"name":"top_msg_id","type":"int","comment":"ID of the group message that started the thread (message in linked discussion group)"},{"name":"read_max_id","type":"int","comment":"Message ID of latest read incoming message for this thread"},{"name":"broadcast_id","type":"int53","typeModifiers":{"predicate":"flags.0"},"comment":"If set, contains the ID of the channel that contains the post that started the comment thread in the discussion group (channel_id)"},{"name":"broadcast_post","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, contains the ID of the channel post that started the comment thread"}]},{"kind":"class","name":"updateReadChannelDiscussionOutbox","type":"Update","id":1767677564,"comment":"Outgoing comments in a discussion thread were marked as read","arguments":[{"name":"channel_id","type":"int53","comment":"Supergroup ID"},{"name":"top_msg_id","type":"int","comment":"ID of the group message that started the thread"},{"name":"read_max_id","type":"int","comment":"Message ID of latest read outgoing message for this thread"}]},{"kind":"class","name":"updatePeerBlocked","type":"Update","id":3957356370,"comment":"We blocked a peer, see here » for more info on blocklists.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the peer was blocked or unblocked"},{"name":"blocked_my_stories_from","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the peer was added/removed to/from the story blocklist; if not set, this update affects the main blocklist, see here » for more info."},{"name":"peer_id","type":"Peer","comment":"The (un)blocked peer"}]},{"kind":"class","name":"updateChannelUserTyping","type":"Update","id":2357774627,"comment":"A user is typing in a supergroup, channel or message thread","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Thread ID"},{"name":"from_id","type":"Peer","comment":"The peer that is typing"},{"name":"action","type":"SendMessageAction","comment":"Whether the user is typing, sending a media or doing something else"}]},{"kind":"class","name":"updatePinnedMessages","type":"Update","id":3984976565,"comment":"Some messages were pinned in a chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the messages were pinned or unpinned"},{"name":"peer","type":"Peer","comment":"Peer"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"Message IDs"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updatePinnedChannelMessages","type":"Update","id":1538885128,"comment":"Messages were pinned/unpinned in a channel/supergroup","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the messages were pinned or unpinned"},{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"Messages"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateChat","type":"Update","id":4170869326,"comment":"Chat ({@link RawChat} and/or {@link RawChatFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawChat}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawChatFull}) must be invalidated for chat_id when receiving this update.","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"}]},{"kind":"class","name":"updateGroupCallParticipants","type":"Update","id":4075543374,"comment":"The participant list of a certain group call has changed","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"participants","type":"GroupCallParticipant","typeModifiers":{"isVector":true},"comment":"New participant list"},{"name":"version","type":"int","comment":"Version"}]},{"kind":"class","name":"updateGroupCall","type":"Update","id":347227392,"comment":"A new groupcall was started","arguments":[{"name":"chat_id","type":"int53","comment":"The channel/supergroup where this group call or livestream takes place"},{"name":"call","type":"GroupCall","comment":"Info about the group call or livestream"}]},{"kind":"class","name":"updatePeerHistoryTTL","type":"Update","id":3147544997,"comment":"The Time-To-Live for messages sent by the current user in a specific chat has changed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"The chat"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"The new Time-To-Live"}]},{"kind":"class","name":"updateChatParticipant","type":"Update","id":3498534458,"comment":"A user has joined or left a specific chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"date","type":"int","comment":"When did this event occur"},{"name":"actor_id","type":"int53","comment":"User that triggered the change (inviter, admin that kicked the user, or the even the user_id itself)"},{"name":"user_id","type":"int53","comment":"User that was affected by the change"},{"name":"prev_participant","type":"ChatParticipant","typeModifiers":{"predicate":"flags.0"},"comment":"Previous participant info (empty if this participant just joined)"},{"name":"new_participant","type":"ChatParticipant","typeModifiers":{"predicate":"flags.1"},"comment":"New participant info (empty if this participant just left)"},{"name":"invite","type":"ExportedChatInvite","typeModifiers":{"predicate":"flags.2"},"comment":"The invite that was used to join the group"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateChannelParticipant","type":"Update","id":2556246715,"comment":"A participant has left, joined, was banned or admined in a channel or supergroup.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_chatlist","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the participant joined using a chat folder deep link »."},{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"date","type":"int","comment":"Date of the event"},{"name":"actor_id","type":"int53","comment":"User that triggered the change (inviter, admin that kicked the user, or the even the user_id itself)"},{"name":"user_id","type":"int53","comment":"User that was affected by the change"},{"name":"prev_participant","type":"ChannelParticipant","typeModifiers":{"predicate":"flags.0"},"comment":"Previous participant status"},{"name":"new_participant","type":"ChannelParticipant","typeModifiers":{"predicate":"flags.1"},"comment":"New participant status"},{"name":"invite","type":"ExportedChatInvite","typeModifiers":{"predicate":"flags.2"},"comment":"Chat invite used to join the channel/supergroup"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateBotStopped","type":"Update","id":3297184329,"comment":"A bot was stopped or re-started.","arguments":[{"name":"user_id","type":"int53","comment":"The user ID"},{"name":"date","type":"int","comment":"When did this action occur"},{"name":"stopped","type":"Bool","comment":"Whether the bot was stopped or started"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateGroupCallConnection","type":"Update","id":192428418,"comment":"New WebRTC parameters","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"presentation","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Are these parameters related to the screen capture session currently in progress?"},{"name":"params","type":"DataJSON","comment":"WebRTC parameters"}]},{"kind":"class","name":"updateBotCommands","type":"Update","id":1299263278,"comment":"The command set of a certain bot in a certain chat has changed.","arguments":[{"name":"peer","type":"Peer","comment":"The affected chat"},{"name":"bot_id","type":"int53","comment":"ID of the bot that changed its command set"},{"name":"commands","type":"BotCommand","typeModifiers":{"isVector":true},"comment":"New bot commands"}]},{"kind":"class","name":"updatePendingJoinRequests","type":"Update","id":1885586395,"comment":"Someone has requested to join a chat or channel","arguments":[{"name":"peer","type":"Peer","comment":"Chat or channel"},{"name":"requests_pending","type":"int","comment":"Number of pending join requests » for the chat or channel"},{"name":"recent_requesters","type":"int53","typeModifiers":{"isVector":true},"comment":"IDs of users that have recently requested to join"}]},{"kind":"class","name":"updateBotChatInviteRequester","type":"Update","id":299870598,"comment":"Someone has requested to join a chat or channel (bots only, users will receive an {@link RawUpdatePendingJoinRequests}, instead)","arguments":[{"name":"peer","type":"Peer","comment":"The chat or channel in question"},{"name":"date","type":"int","comment":"When was the join request » made"},{"name":"user_id","type":"int53","comment":"The user ID that is asking to join the chat or channel"},{"name":"about","type":"string","comment":"Bio of the user"},{"name":"invite","type":"ExportedChatInvite","comment":"Chat invite link that was used by the user to send the join request »"},{"name":"qts","type":"int","comment":"QTS event sequence identifier"}]},{"kind":"class","name":"updateMessageReactions","type":"Update","id":1578843320,"comment":"New message reactions » are available","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"Peer"},{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Forum topic ID"},{"name":"reactions","type":"MessageReactions","comment":"Reactions"}]},{"kind":"class","name":"updateAttachMenuBots","type":"Update","id":397910539,"comment":"The list of installed attachment menu entries » has changed, use {@link messages.RawGetAttachMenuBotsRequest} to fetch the updated list.","arguments":[]},{"kind":"class","name":"updateWebViewResultSent","type":"Update","id":361936797,"comment":"Indicates to a bot that a webview was closed and an inline message was sent on behalf of the user using {@link messages.RawSendWebViewResultMessageRequest}","arguments":[{"name":"query_id","type":"long","comment":"Web app interaction ID"}]},{"kind":"class","name":"updateBotMenuButton","type":"Update","id":347625491,"comment":"The menu button behavior for the specified bot has changed","arguments":[{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"button","type":"BotMenuButton","comment":"New menu button"}]},{"kind":"class","name":"updateSavedRingtones","type":"Update","id":1960361625,"comment":"The list of saved notification sounds has changed, use {@link account.RawGetSavedRingtonesRequest} to fetch the new list.","arguments":[]},{"kind":"class","name":"updateTranscribedAudio","type":"Update","id":8703322,"comment":"A pending voice message transcription » initiated with {@link messages.RawTranscribeAudioRequest} was updated.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pending","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this transcription is still pending and further {@link RawUpdateTranscribedAudio} about it will be sent in the future."},{"name":"peer","type":"Peer","comment":"Peer of the transcribed message"},{"name":"msg_id","type":"int","comment":"Transcribed message ID"},{"name":"transcription_id","type":"long","comment":"Transcription ID"},{"name":"text","type":"string","comment":"Transcribed text"}]},{"kind":"class","name":"updateReadFeaturedEmojiStickers","type":"Update","id":4216080748,"comment":"Some featured custom emoji stickers were marked as read","arguments":[]},{"kind":"class","name":"updateUserEmojiStatus","type":"Update","id":674706841,"comment":"The emoji status of a certain user has changed","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"emoji_status","type":"EmojiStatus","comment":"New emoji status"}]},{"kind":"class","name":"updateRecentEmojiStatuses","type":"Update","id":821314523,"comment":"The list of recent emoji statuses has changed","arguments":[]},{"kind":"class","name":"updateRecentReactions","type":"Update","id":1870160884,"comment":"The list of recent message reactions has changed","arguments":[]},{"kind":"class","name":"updateMoveStickerSetToTop","type":"Update","id":2264715141,"comment":"A stickerset was just moved to top, see here for more info »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"This update is referring to a mask stickerset"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"This update is referring to a custom emoji stickerset"},{"name":"stickerset","type":"long","comment":"Stickerset ID"}]},{"kind":"class","name":"updateMessageExtendedMedia","type":"Update","id":3584300836,"comment":"You bought a paid media »: this update contains the revealed media.","arguments":[{"name":"peer","type":"Peer","comment":"Peer where the paid media was posted"},{"name":"msg_id","type":"int","comment":"ID of the message containing the paid media"},{"name":"extended_media","type":"MessageExtendedMedia","typeModifiers":{"isVector":true},"comment":"Revealed media, contains only {@link RawMessageExtendedMedia} constructors."}]},{"kind":"class","name":"updateChannelPinnedTopic","type":"Update","id":422509539,"comment":"A forum topic » was pinned or unpinned.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the topic was pinned or unpinned"},{"name":"channel_id","type":"int53","comment":"The forum ID"},{"name":"topic_id","type":"int","comment":"The topic ID"}]},{"kind":"class","name":"updateChannelPinnedTopics","type":"Update","id":4263085570,"comment":"The pinned topics of a forum have changed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"Forum ID."},{"name":"order","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Ordered list containing the IDs of all pinned topics."}]},{"kind":"class","name":"updateUser","type":"Update","id":542282808,"comment":"User ({@link RawUser} and/or {@link RawUserFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawUser}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawUserFull}) must be invalidated for user_id when receiving this update.","arguments":[{"name":"user_id","type":"int53","comment":"User ID"}]},{"kind":"class","name":"updateAutoSaveSettings","type":"Update","id":3959795863,"comment":"Media autosave settings have changed and must be refetched using {@link account.RawGetAutoSaveSettingsRequest}.","arguments":[]},{"kind":"class","name":"updateStory","type":"Update","id":1974712216,"comment":"A new story was posted.","arguments":[{"name":"peer","type":"Peer","comment":"ID of the poster."},{"name":"story","type":"StoryItem","comment":"The story that was posted."}]},{"kind":"class","name":"updateReadStories","type":"Update","id":4149121835,"comment":"Stories of a specific peer were marked as read.","arguments":[{"name":"peer","type":"Peer","comment":"The peer"},{"name":"max_id","type":"int","comment":"ID of the last story that was marked as read"}]},{"kind":"class","name":"updateStoryID","type":"Update","id":468923833,"comment":"A story was successfully uploaded.\n\nOnce a story is successfully uploaded, an {@link RawUpdateStoryID} will be returned, indicating the story ID (id) that was attributed to the story (like for messages, random_id indicates the random_id that was passed to {@link stories.RawSendStoryRequest}: this way, you can tell which story was assigned a specific id by checking which {@link stories.RawSendStoryRequest} call has the returned random_id).","arguments":[{"name":"id","type":"int","comment":"The id that was attributed to the story."},{"name":"random_id","type":"long","comment":"The random_id that was passed to {@link stories.RawSendStoryRequest}."}]},{"kind":"class","name":"updateStoriesStealthMode","type":"Update","id":738741697,"comment":"Indicates that stories stealth mode was activated.","arguments":[{"name":"stealth_mode","type":"StoriesStealthMode","comment":"Information about the current stealth mode session."}]},{"kind":"class","name":"updateSentStoryReaction","type":"Update","id":2103604867,"comment":"Indicates we reacted to a story ».","arguments":[{"name":"peer","type":"Peer","comment":"The peer that sent the story"},{"name":"story_id","type":"int","comment":"ID of the story we reacted to"},{"name":"reaction","type":"Reaction","comment":"The reaction that was sent"}]},{"kind":"class","name":"updateBotChatBoost","type":"Update","id":2421019804,"comment":"A channel/supergroup boost has changed (bots only)","arguments":[{"name":"peer","type":"Peer","comment":"Channel"},{"name":"boost","type":"Boost","comment":"New boost information"},{"name":"qts","type":"int","comment":"QTS event sequence identifier"}]},{"kind":"class","name":"updateChannelViewForumAsMessages","type":"Update","id":129403168,"comment":"Users may also choose to display messages from all topics as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
\nThis setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of the view_forum_as_messages flag of {@link RawChannelFull} or {@link RawDialog} and emit an {@link RawUpdateChannelViewForumAsMessages}.","arguments":[{"name":"channel_id","type":"int53","comment":"The forum ID"},{"name":"enabled","type":"Bool","comment":"The new value of the toggle."}]},{"kind":"class","name":"updatePeerWallpaper","type":"Update","id":2923368477,"comment":"The wallpaper » of a given peer has changed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"wallpaper_overridden","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the other user has chosen a custom wallpaper for us using {@link messages.RawSetChatWallPaperRequest} and the for_both flag, see here » for more info."},{"name":"peer","type":"Peer","comment":"The peer where the wallpaper has changed."},{"name":"wallpaper","type":"WallPaper","typeModifiers":{"predicate":"flags.0"},"comment":"The new wallpaper, if none the wallpaper was removed and the default wallpaper should be used."}]},{"kind":"class","name":"updateBotMessageReaction","type":"Update","id":2887898062,"comment":"Bots only: a user has changed their reactions on a message with public reactions.","arguments":[{"name":"peer","type":"Peer","comment":"Peer of the reacted-to message."},{"name":"msg_id","type":"int","comment":"ID of the reacted-to message."},{"name":"date","type":"int","comment":"Date of the change."},{"name":"actor","type":"Peer","comment":"The user that (un)reacted to the message."},{"name":"old_reactions","type":"Reaction","typeModifiers":{"isVector":true},"comment":"Old reactions"},{"name":"new_reactions","type":"Reaction","typeModifiers":{"isVector":true},"comment":"New reactions"},{"name":"qts","type":"int","comment":"QTS event sequence identifier"}]},{"kind":"class","name":"updateBotMessageReactions","type":"Update","id":164329305,"comment":"Bots only: the number of reactions on a message with anonymous reactions has changed.","arguments":[{"name":"peer","type":"Peer","comment":"Peer of the reacted-to message."},{"name":"msg_id","type":"int","comment":"ID of the reacted-to message."},{"name":"date","type":"int","comment":"Date of the change."},{"name":"reactions","type":"ReactionCount","typeModifiers":{"isVector":true},"comment":"New reaction counters."},{"name":"qts","type":"int","comment":"QTS event sequence identifier"}]},{"kind":"class","name":"updateSavedDialogPinned","type":"Update","id":2930744948,"comment":"A saved message dialog was pinned/unpinned","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the dialog was pinned"},{"name":"peer","type":"DialogPeer","comment":"The dialog"}]},{"kind":"class","name":"updatePinnedSavedDialogs","type":"Update","id":1751942566,"comment":"Pinned saved dialogs » were updated","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"order","type":"DialogPeer","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"New order of pinned saved dialogs"}]},{"kind":"class","name":"updateSavedReactionTags","type":"Update","id":969307186,"comment":"The list of reaction tag » names assigned by the user has changed and should be refetched using {@link messages.RawGetSavedReactionTagsRequest}.","arguments":[]},{"kind":"class","name":"updateSmsJob","type":"Update","id":4049758676,"comment":"A new SMS job was received","arguments":[{"name":"job_id","type":"string","comment":"SMS job ID"}]},{"kind":"class","name":"updateQuickReplies","type":"Update","id":4182182578,"comment":"Info about or the order of quick reply shortcuts » was changed.","arguments":[{"name":"quick_replies","type":"QuickReply","typeModifiers":{"isVector":true},"comment":"New quick reply shortcut order and information."}]},{"kind":"class","name":"updateNewQuickReply","type":"Update","id":4114458391,"comment":"A new quick reply shortcut » was created.","arguments":[{"name":"quick_reply","type":"QuickReply","comment":"Quick reply shortcut."}]},{"kind":"class","name":"updateDeleteQuickReply","type":"Update","id":1407644140,"comment":"A quick reply shortcut » was deleted. This will not emit {@link RawUpdateDeleteQuickReplyMessages} updates, even if all the messages in the shortcut are also deleted by this update.","arguments":[{"name":"shortcut_id","type":"int","comment":"ID of the quick reply shortcut that was deleted."}]},{"kind":"class","name":"updateQuickReplyMessage","type":"Update","id":1040518415,"comment":"A new message was added to a quick reply shortcut ».","arguments":[{"name":"message","type":"Message","comment":"The message that was added (the {@link RawMessage}.quick_reply_shortcut_id field will contain the shortcut ID)."}]},{"kind":"class","name":"updateDeleteQuickReplyMessages","type":"Update","id":1450174413,"comment":"One or more messages in a quick reply shortcut » were deleted.","arguments":[{"name":"shortcut_id","type":"int","comment":"Quick reply shortcut ID."},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of the deleted messages."}]},{"kind":"class","name":"updateBotBusinessConnect","type":"Update","id":2330315130,"comment":"Connecting or disconnecting a business bot or changing the connection settings will emit an {@link RawUpdateBotBusinessConnect} update to the bot, with the new settings and a connection_id that will be used by the bot to handle updates from and send messages as the user.","arguments":[{"name":"connection","type":"BotBusinessConnection","comment":"Business connection settings"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateBotNewBusinessMessage","type":"Update","id":2648388732,"comment":"A message was received via a connected business chat ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"connection_id","type":"string","comment":"Connection ID."},{"name":"message","type":"Message","comment":"New message."},{"name":"reply_to_message","type":"Message","typeModifiers":{"predicate":"flags.0"},"comment":"The message that message is replying to."},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateBotEditBusinessMessage","type":"Update","id":132077692,"comment":"A message was edited in a connected business chat ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"connection_id","type":"string","comment":"Business connection ID"},{"name":"message","type":"Message","comment":"New message."},{"name":"reply_to_message","type":"Message","typeModifiers":{"predicate":"flags.0"},"comment":"The message that message is replying to."},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateBotDeleteBusinessMessage","type":"Update","id":2687146030,"comment":"A message was deleted in a connected business chat ».","arguments":[{"name":"connection_id","type":"string","comment":"Business connection ID."},{"name":"peer","type":"Peer","comment":"Peer where the messages were deleted."},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of the messages that were deleted."},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateNewStoryReaction","type":"Update","id":405070859,"comment":"Represents a new reaction to a story.","arguments":[{"name":"story_id","type":"int","comment":"Story ID."},{"name":"peer","type":"Peer","comment":"The peer where the story was posted."},{"name":"reaction","type":"Reaction","comment":"The reaction."}]},{"kind":"class","name":"updateBroadcastRevenueTransactions","type":"Update","id":3755565557,"comment":"A new channel ad revenue transaction was made, see here » for more info.","arguments":[{"name":"peer","type":"Peer","comment":"Channel"},{"name":"balances","type":"BroadcastRevenueBalances","comment":"New ad revenue balance."}]},{"kind":"class","name":"updateStarsBalance","type":"Update","id":263737752,"comment":"The current account's Telegram Stars balance » has changed.","arguments":[{"name":"balance","type":"long","comment":"New balance."}]},{"kind":"class","name":"updateBusinessBotCallbackQuery","type":"Update","id":513998247,"comment":"A callback button sent via a business connection was pressed, and the button data was sent to the bot that created the button.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"user_id","type":"int53","comment":"ID of the user that pressed the button"},{"name":"connection_id","type":"string","comment":"Business connection ID"},{"name":"message","type":"Message","comment":"Message that contains the keyboard (also contains info about the chat where the message was sent)."},{"name":"reply_to_message","type":"Message","typeModifiers":{"predicate":"flags.2"},"comment":"The message that message is replying to."},{"name":"chat_instance","type":"long","comment":"Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games."},{"name":"data","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Callback data"}]},{"kind":"class","name":"updateStarsRevenueStatus","type":"Update","id":2776936473,"comment":"The Telegram Star balance of a channel/bot we own has changed ».","arguments":[{"name":"peer","type":"Peer","comment":"Channel/bot"},{"name":"status","type":"StarsRevenueStatus","comment":"New Telegram Star balance."}]},{"kind":"class","name":"updateBotPurchasedPaidMedia","type":"Update","id":675009298,"arguments":[{"name":"user_id","type":"int53"},{"name":"payload","type":"string"},{"name":"qts","type":"int"}]},{"kind":"class","name":"updatePaidReactionPrivacy","type":"Update","id":1372224236,"arguments":[{"name":"private","type":"Bool"}]},{"kind":"class","name":"updates.state","type":"updates.State","id":2775329342,"comment":"Updates state.","arguments":[{"name":"pts","type":"int","comment":"Number of events occurred in a text box"},{"name":"qts","type":"int","comment":"Position in a sequence of updates in secret chats. For further details refer to article secret chats"},{"name":"date","type":"int","comment":"Date of condition"},{"name":"seq","type":"int","comment":"Number of sent updates"},{"name":"unread_count","type":"int","comment":"Number of unread messages"}]},{"kind":"class","name":"updates.differenceEmpty","type":"updates.Difference","id":1567990072,"comment":"No events.","arguments":[{"name":"date","type":"int","comment":"Current date"},{"name":"seq","type":"int","comment":"Number of sent updates"}]},{"kind":"class","name":"updates.difference","type":"updates.Difference","id":16030880,"comment":"Full list of occurred events.","arguments":[{"name":"new_messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of new messages"},{"name":"new_encrypted_messages","type":"EncryptedMessage","typeModifiers":{"isVector":true},"comment":"List of new encrypted secret chat messages"},{"name":"other_updates","type":"Update","typeModifiers":{"isVector":true},"comment":"List of updates"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in events"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in events"},{"name":"state","type":"updates.State","comment":"Current state"}]},{"kind":"class","name":"updates.differenceSlice","type":"updates.Difference","id":2835028353,"comment":"Incomplete list of occurred events.","arguments":[{"name":"new_messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of new messages"},{"name":"new_encrypted_messages","type":"EncryptedMessage","typeModifiers":{"isVector":true},"comment":"New messages from the encrypted event sequence"},{"name":"other_updates","type":"Update","typeModifiers":{"isVector":true},"comment":"List of updates"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in events"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in events"},{"name":"intermediate_state","type":"updates.State","comment":"Intermediary state"}]},{"kind":"class","name":"updates.differenceTooLong","type":"updates.Difference","id":1258196845,"comment":"The difference is too long, and the specified state must be used to refetch updates.","arguments":[{"name":"pts","type":"int","comment":"The new state to use."}]},{"kind":"class","name":"updatesTooLong","type":"Updates","id":3809980286,"comment":"Too many updates, it is necessary to execute {@link updates.RawGetDifferenceRequest}.","arguments":[]},{"kind":"class","name":"updateShortMessage","type":"Updates","id":826001400,"comment":"Info about a message sent to (received from) another user","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the message is outgoing"},{"name":"mentioned","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether we were mentioned in the message"},{"name":"media_unread","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether there are some unread mentions in this message"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"If true, the message is a silent message, no notifications should be triggered"},{"name":"id","type":"int","comment":"The message ID"},{"name":"user_id","type":"int53","comment":"The ID of the sender (if outgoing will be the ID of the destination) of the message"},{"name":"message","type":"string","comment":"The message"},{"name":"pts","type":"int","comment":"PTS"},{"name":"pts_count","type":"int","comment":"PTS count"},{"name":"date","type":"int","comment":"date"},{"name":"fwd_from","type":"MessageFwdHeader","typeModifiers":{"predicate":"flags.2"},"comment":"Info about a forwarded message"},{"name":"via_bot_id","type":"int53","typeModifiers":{"predicate":"flags.11"},"comment":"Info about the inline bot used to generate this message"},{"name":"reply_to","type":"MessageReplyHeader","typeModifiers":{"predicate":"flags.3"},"comment":"Reply and thread information"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.7","isVector":true},"comment":"Entities for styled text"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.25"},"comment":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}]},{"kind":"class","name":"updateShortChatMessage","type":"Updates","id":1299050149,"comment":"Shortened constructor containing info on one new incoming text message from a chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the message is outgoing"},{"name":"mentioned","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether we were mentioned in this message"},{"name":"media_unread","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the message contains some unread mentions"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"If true, the message is a silent message, no notifications should be triggered"},{"name":"id","type":"int","comment":"ID of the message"},{"name":"from_id","type":"int53","comment":"ID of the sender of the message"},{"name":"chat_id","type":"int53","comment":"ID of the chat where the message was sent"},{"name":"message","type":"string","comment":"Message"},{"name":"pts","type":"int","comment":"PTS"},{"name":"pts_count","type":"int","comment":"PTS count"},{"name":"date","type":"int","comment":"date"},{"name":"fwd_from","type":"MessageFwdHeader","typeModifiers":{"predicate":"flags.2"},"comment":"Info about a forwarded message"},{"name":"via_bot_id","type":"int53","typeModifiers":{"predicate":"flags.11"},"comment":"Info about the inline bot used to generate this message"},{"name":"reply_to","type":"MessageReplyHeader","typeModifiers":{"predicate":"flags.3"},"comment":"Reply (thread) information"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.7","isVector":true},"comment":"Entities for styled text"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.25"},"comment":"Time To Live of the message, once updateShortChatMessage.date+updateShortChatMessage.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}]},{"kind":"class","name":"updateShort","type":"Updates","id":2027216577,"comment":"Shortened constructor containing info on one update not requiring auxiliary data","arguments":[{"name":"update","type":"Update","comment":"Update"},{"name":"date","type":"int","comment":"Date of event"}]},{"kind":"class","name":"updatesCombined","type":"Updates","id":1918567619,"comment":"Constructor for a group of updates.","arguments":[{"name":"updates","type":"Update","typeModifiers":{"isVector":true},"comment":"List of updates"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in updates"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in updates"},{"name":"date","type":"int","comment":"Current date"},{"name":"seq_start","type":"int","comment":"Value seq for the earliest update in a group"},{"name":"seq","type":"int","comment":"Value seq for the latest update in a group"}]},{"kind":"class","name":"updates","type":"Updates","id":1957577280,"comment":"Full constructor of updates","arguments":[{"name":"updates","type":"Update","typeModifiers":{"isVector":true},"comment":"List of updates"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in updates"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in updates"},{"name":"date","type":"int","comment":"Current date"},{"name":"seq","type":"int","comment":"Total number of sent updates"}]},{"kind":"class","name":"updateShortSentMessage","type":"Updates","id":2417352961,"comment":"Shortened constructor containing info on one outgoing message to a contact (the destination chat has to be extracted from the method call that returned this object).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the message is outgoing"},{"name":"id","type":"int","comment":"ID of the sent message"},{"name":"pts","type":"int","comment":"PTS"},{"name":"pts_count","type":"int","comment":"PTS count"},{"name":"date","type":"int","comment":"date"},{"name":"media","type":"MessageMedia","typeModifiers":{"predicate":"flags.9"},"comment":"Attached media"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.7","isVector":true},"comment":"Entities for styled text"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.25"},"comment":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}]},{"kind":"class","name":"photos.photos","type":"photos.Photos","id":2378853029,"comment":"Full list of photos with auxiliary data.","arguments":[{"name":"photos","type":"Photo","typeModifiers":{"isVector":true},"comment":"List of photos"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of mentioned users"}]},{"kind":"class","name":"photos.photosSlice","type":"photos.Photos","id":352657236,"comment":"Incomplete list of photos with auxiliary data.","arguments":[{"name":"count","type":"int","comment":"Total number of photos"},{"name":"photos","type":"Photo","typeModifiers":{"isVector":true},"comment":"List of photos"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of mentioned users"}]},{"kind":"class","name":"photos.photo","type":"photos.Photo","id":539045032,"comment":"Photo with auxiliary data.","arguments":[{"name":"photo","type":"Photo","comment":"Photo"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"upload.file","type":"upload.File","id":157948117,"comment":"File content.","arguments":[{"name":"type","type":"storage.FileType","comment":"File type"},{"name":"mtime","type":"int","comment":"Modification time"},{"name":"bytes","type":"bytes","comment":"Binary data, file content"}]},{"kind":"class","name":"upload.fileCdnRedirect","type":"upload.File","id":4052539972,"comment":"The file must be downloaded from a CDN DC.","arguments":[{"name":"dc_id","type":"int","comment":"CDN DC ID"},{"name":"file_token","type":"bytes","comment":"File token (see CDN files)"},{"name":"encryption_key","type":"bytes","comment":"Encryption key (see CDN files)"},{"name":"encryption_iv","type":"bytes","comment":"Encryption IV (see CDN files)"},{"name":"file_hashes","type":"FileHash","typeModifiers":{"isVector":true},"comment":"File hashes (see CDN files)"}]},{"kind":"class","name":"dcOption","type":"DcOption","id":414687501,"comment":"Data center","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"ipv6","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the specified IP is an IPv6 address"},{"name":"media_only","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this DC should only be used to download or upload files"},{"name":"tcpo_only","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this DC only supports connection with transport obfuscation"},{"name":"cdn","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is a CDN DC."},{"name":"static","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, this IP should be used when connecting through a proxy"},{"name":"this_port_only","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, clients must connect using only the specified port, without trying any other port."},{"name":"id","type":"int","comment":"DC ID"},{"name":"ip_address","type":"string","comment":"IP address of DC"},{"name":"port","type":"int","comment":"Port"},{"name":"secret","type":"bytes","typeModifiers":{"predicate":"flags.10"},"comment":"If the tcpo_only flag is set, specifies the secret to use when connecting using transport obfuscation"}]},{"kind":"class","name":"config","type":"Config","id":3424265246,"comment":"Current configuration","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"default_p2p_contacts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the client should use P2P by default for phone calls with contacts"},{"name":"preload_featured_stickers","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether the client should preload featured stickers"},{"name":"revoke_pm_inbox","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether incoming private messages can be deleted for both participants"},{"name":"blocked_mode","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Indicates that telegram is probably censored by governments/ISPs in the current region"},{"name":"force_try_ipv6","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Whether to forcefully connect using IPv6 dcOptions, even if the client knows that IPv4 is available."},{"name":"date","type":"int","comment":"Current date at the server"},{"name":"expires","type":"int","comment":"Expiration date of this config: when it expires it'll have to be refetched using {@link help.RawGetConfigRequest}"},{"name":"test_mode","type":"Bool","comment":"Whether we're connected to the test DCs"},{"name":"this_dc","type":"int","comment":"ID of the DC that returned the reply"},{"name":"dc_options","type":"DcOption","typeModifiers":{"isVector":true},"comment":"DC IP list"},{"name":"dc_txt_domain_name","type":"string","comment":"Domain name for fetching encrypted DC list from DNS TXT record"},{"name":"chat_size_max","type":"int","comment":"Maximum member count for normal groups"},{"name":"megagroup_size_max","type":"int","comment":"Maximum member count for supergroups"},{"name":"forwarded_count_max","type":"int","comment":"Maximum number of messages that can be forwarded at once using {@link messages.RawForwardMessagesRequest}."},{"name":"online_update_period_ms","type":"int","comment":"The client should {@link account.RawUpdateStatusRequest} every N milliseconds"},{"name":"offline_blur_timeout_ms","type":"int","comment":"Delay before offline status needs to be sent to the server"},{"name":"offline_idle_timeout_ms","type":"int","comment":"Time without any user activity after which it should be treated offline"},{"name":"online_cloud_timeout_ms","type":"int","comment":"If we are offline, but were online from some other client in last online_cloud_timeout_ms milliseconds after we had gone offline, then delay offline notification for notify_cloud_delay_ms milliseconds."},{"name":"notify_cloud_delay_ms","type":"int","comment":"If we are offline, but online from some other client then delay sending the offline notification for notify_cloud_delay_ms milliseconds."},{"name":"notify_default_delay_ms","type":"int","comment":"If some other client is online, then delay notification for notification_default_delay_ms milliseconds"},{"name":"push_chat_period_ms","type":"int","comment":"Not for client use"},{"name":"push_chat_limit","type":"int","comment":"Not for client use"},{"name":"edit_time_limit","type":"int","comment":"Only messages with age smaller than the one specified can be edited"},{"name":"revoke_time_limit","type":"int","comment":"Only channel/supergroup messages with age smaller than the specified can be deleted"},{"name":"revoke_pm_time_limit","type":"int","comment":"Only private messages with age smaller than the specified can be deleted"},{"name":"rating_e_decay","type":"int","comment":"Exponential decay rate for computing top peer rating"},{"name":"stickers_recent_limit","type":"int","comment":"Maximum number of recent stickers"},{"name":"channels_read_media_period","type":"int","comment":"Indicates that round videos (video notes) and voice messages sent in channels and older than the specified period must be marked as read"},{"name":"tmp_sessions","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Temporary passport sessions"},{"name":"call_receive_timeout_ms","type":"int","comment":"Maximum allowed outgoing ring time in VoIP calls: if the user we're calling doesn't reply within the specified time (in milliseconds), we should hang up the call"},{"name":"call_ring_timeout_ms","type":"int","comment":"Maximum allowed incoming ring time in VoIP calls: if the current user doesn't reply within the specified time (in milliseconds), the call will be automatically refused"},{"name":"call_connect_timeout_ms","type":"int","comment":"VoIP connection timeout: if the instance of libtgvoip on the other side of the call doesn't connect to our instance of libtgvoip within the specified time (in milliseconds), the call must be aborted"},{"name":"call_packet_timeout_ms","type":"int","comment":"If during a VoIP call a packet isn't received for the specified period of time, the call must be aborted"},{"name":"me_url_prefix","type":"string","comment":"The domain to use to parse deep links »."},{"name":"autoupdate_url_prefix","type":"string","typeModifiers":{"predicate":"flags.7"},"comment":"URL to use to auto-update the current app"},{"name":"gif_search_username","type":"string","typeModifiers":{"predicate":"flags.9"},"comment":"Username of the bot to use to search for GIFs"},{"name":"venue_search_username","type":"string","typeModifiers":{"predicate":"flags.10"},"comment":"Username of the bot to use to search for venues"},{"name":"img_search_username","type":"string","typeModifiers":{"predicate":"flags.11"},"comment":"Username of the bot to use for image search"},{"name":"static_maps_provider","type":"string","typeModifiers":{"predicate":"flags.12"},"comment":"ID of the map provider to use for venues"},{"name":"caption_length_max","type":"int","comment":"Maximum length of caption (length in utf8 codepoints)"},{"name":"message_length_max","type":"int","comment":"Maximum length of messages (length in utf8 codepoints)"},{"name":"webfile_dc_id","type":"int","comment":"DC ID to use to download webfiles"},{"name":"suggested_lang_code","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Suggested language code"},{"name":"lang_pack_version","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Language pack version"},{"name":"base_lang_pack_version","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Basic language pack version"},{"name":"reactions_default","type":"Reaction","typeModifiers":{"predicate":"flags.15"},"comment":"Default message reaction"},{"name":"autologin_token","type":"string","typeModifiers":{"predicate":"flags.16"},"comment":"Autologin token, click here for more info on URL authorization »."}]},{"kind":"class","name":"nearestDc","type":"NearestDc","id":2384074613,"comment":"Nearest data center, according to geo-ip.","arguments":[{"name":"country","type":"string","comment":"Country code determined by geo-ip"},{"name":"this_dc","type":"int","comment":"Number of current data center"},{"name":"nearest_dc","type":"int","comment":"Number of nearest data center"}]},{"kind":"class","name":"help.appUpdate","type":"help.AppUpdate","id":3434860080,"comment":"An update is available for the application.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_not_skip","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Unskippable, the new info must be shown to the user (with a popup or something else)"},{"name":"id","type":"int","comment":"Update ID"},{"name":"version","type":"string","comment":"New version name"},{"name":"text","type":"string","comment":"Text description of the update"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.1"},"comment":"Application binary"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Application download URL"},{"name":"sticker","type":"Document","typeModifiers":{"predicate":"flags.3"},"comment":"Associated sticker"}]},{"kind":"class","name":"help.noAppUpdate","type":"help.AppUpdate","id":3294258486,"comment":"No updates are available for the application.","arguments":[]},{"kind":"class","name":"help.inviteText","type":"help.InviteText","id":415997816,"comment":"Text of a text message with an invitation to install Telegram.","arguments":[{"name":"message","type":"string","comment":"Text of the message"}]},{"kind":"class","name":"encryptedChatEmpty","type":"EncryptedChat","id":2877210784,"comment":"Empty constructor.","arguments":[{"name":"id","type":"int","comment":"Chat ID"}]},{"kind":"class","name":"encryptedChatWaiting","type":"EncryptedChat","id":1722964307,"comment":"Chat waiting for approval of second participant.","arguments":[{"name":"id","type":"int","comment":"Chat ID"},{"name":"access_hash","type":"long","comment":"Checking sum depending on user ID"},{"name":"date","type":"int","comment":"Date of chat creation"},{"name":"admin_id","type":"int53","comment":"Chat creator ID"},{"name":"participant_id","type":"int53","comment":"ID of second chat participant"}]},{"kind":"class","name":"encryptedChatRequested","type":"EncryptedChat","id":1223809356,"comment":"Request to create an encrypted chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Peer folder ID, for more info click here"},{"name":"id","type":"int","comment":"Chat ID"},{"name":"access_hash","type":"long","comment":"Check sum depending on user ID"},{"name":"date","type":"int","comment":"Chat creation date"},{"name":"admin_id","type":"int53","comment":"Chat creator ID"},{"name":"participant_id","type":"int53","comment":"ID of second chat participant"},{"name":"g_a","type":"bytes","comment":"A = g ^ a mod p, see Wikipedia"}]},{"kind":"class","name":"encryptedChat","type":"EncryptedChat","id":1643173063,"comment":"Encrypted chat","arguments":[{"name":"id","type":"int","comment":"Chat ID"},{"name":"access_hash","type":"long","comment":"Check sum dependent on the user ID"},{"name":"date","type":"int","comment":"Date chat was created"},{"name":"admin_id","type":"int53","comment":"Chat creator ID"},{"name":"participant_id","type":"int53","comment":"ID of the second chat participant"},{"name":"g_a_or_b","type":"bytes","comment":"B = g ^ b mod p, if the currently authorized user is the chat's creator,
or A = g ^ a mod p otherwise
See Wikipedia for more info"},{"name":"key_fingerprint","type":"long","comment":"64-bit fingerprint of received key"}]},{"kind":"class","name":"encryptedChatDiscarded","type":"EncryptedChat","id":505183301,"comment":"Discarded or deleted chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"history_deleted","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether both users of this secret chat should also remove all of its messages"},{"name":"id","type":"int","comment":"Chat ID"}]},{"kind":"class","name":"inputEncryptedChat","type":"InputEncryptedChat","id":4047615457,"comment":"Creates an encrypted chat.","arguments":[{"name":"chat_id","type":"int","comment":"Chat ID"},{"name":"access_hash","type":"long","comment":"Checking sum from constructor {@link RawEncryptedChat}, {@link RawEncryptedChatWaiting} or {@link RawEncryptedChatRequested}"}]},{"kind":"class","name":"encryptedFileEmpty","type":"EncryptedFile","id":3256830334,"comment":"Empty constructor, non-existing file.","arguments":[]},{"kind":"class","name":"encryptedFile","type":"EncryptedFile","id":2818608344,"comment":"Encrypted file.","arguments":[{"name":"id","type":"long","comment":"File ID"},{"name":"access_hash","type":"long","comment":"Checking sum depending on user ID"},{"name":"size","type":"int53","comment":"File size in bytes"},{"name":"dc_id","type":"int","comment":"Number of data center"},{"name":"key_fingerprint","type":"int","comment":"32-bit fingerprint of key used for file encryption"}]},{"kind":"class","name":"inputEncryptedFileEmpty","type":"InputEncryptedFile","id":406307684,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"inputEncryptedFileUploaded","type":"InputEncryptedFile","id":1690108678,"comment":"Sets new encrypted file saved by parts using upload.saveFilePart method.","arguments":[{"name":"id","type":"long","comment":"Random file ID created by client"},{"name":"parts","type":"int","comment":"Number of saved parts"},{"name":"md5_checksum","type":"string","comment":"In case md5-HASH of the (already encrypted) file was transmitted, file content will be checked prior to use"},{"name":"key_fingerprint","type":"int","comment":"32-bit fingerprint of the key used to encrypt a file"}]},{"kind":"class","name":"inputEncryptedFile","type":"InputEncryptedFile","id":1511503333,"comment":"Sets forwarded encrypted file for attachment.","arguments":[{"name":"id","type":"long","comment":"File ID, value of id parameter from {@link RawEncryptedFile}"},{"name":"access_hash","type":"long","comment":"Checking sum, value of access_hash parameter from {@link RawEncryptedFile}"}]},{"kind":"class","name":"inputEncryptedFileBigUploaded","type":"InputEncryptedFile","id":767652808,"comment":"Assigns a new big encrypted file (over 10 MB in size), saved in parts using the method {@link upload.RawSaveBigFilePartRequest}.","arguments":[{"name":"id","type":"long","comment":"Random file id, created by the client"},{"name":"parts","type":"int","comment":"Number of saved parts"},{"name":"key_fingerprint","type":"int","comment":"32-bit imprint of the key used to encrypt the file"}]},{"kind":"class","name":"encryptedMessage","type":"EncryptedMessage","id":3977822488,"comment":"Encrypted message.","arguments":[{"name":"random_id","type":"long","comment":"Random message ID, assigned by the author of message"},{"name":"chat_id","type":"int","comment":"ID of encrypted chat"},{"name":"date","type":"int","comment":"Date of sending"},{"name":"bytes","type":"bytes","comment":"TL-serialization of DecryptedMessage type, encrypted with the key created at chat initialization"},{"name":"file","type":"EncryptedFile","comment":"Attached encrypted file"}]},{"kind":"class","name":"encryptedMessageService","type":"EncryptedMessage","id":594758406,"comment":"Encrypted service message","arguments":[{"name":"random_id","type":"long","comment":"Random message ID, assigned by the author of message"},{"name":"chat_id","type":"int","comment":"ID of encrypted chat"},{"name":"date","type":"int","comment":"Date of sending"},{"name":"bytes","type":"bytes","comment":"TL-serialization of the DecryptedMessage type, encrypted with the key created at chat initialization"}]},{"kind":"class","name":"messages.dhConfigNotModified","type":"messages.DhConfig","id":3236054581,"comment":"Configuring parameters did not change.","arguments":[{"name":"random","type":"bytes","comment":"Random sequence of bytes of assigned length"}]},{"kind":"class","name":"messages.dhConfig","type":"messages.DhConfig","id":740433629,"comment":"New set of configuring parameters.","arguments":[{"name":"g","type":"int","comment":"New value prime, see Wikipedia"},{"name":"p","type":"bytes","comment":"New value primitive root, see Wikipedia"},{"name":"version","type":"int","comment":"Version of set of parameters"},{"name":"random","type":"bytes","comment":"Random sequence of bytes of assigned length"}]},{"kind":"class","name":"messages.sentEncryptedMessage","type":"messages.SentEncryptedMessage","id":1443858741,"comment":"Message without file attachments sent to an encrypted file.","arguments":[{"name":"date","type":"int","comment":"Date of sending"}]},{"kind":"class","name":"messages.sentEncryptedFile","type":"messages.SentEncryptedMessage","id":2492727090,"comment":"Message with a file enclosure sent to a protected chat","arguments":[{"name":"date","type":"int","comment":"Sending date"},{"name":"file","type":"EncryptedFile","comment":"Attached file"}]},{"kind":"class","name":"inputDocumentEmpty","type":"InputDocument","id":1928391342,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"inputDocument","type":"InputDocument","id":448771445,"comment":"Defines a document for subsequent interaction.","arguments":[{"name":"id","type":"long","comment":"Document ID"},{"name":"access_hash","type":"long","comment":"access_hash parameter from the {@link RawDocument} constructor"},{"name":"file_reference","type":"bytes","comment":"File reference"}]},{"kind":"class","name":"documentEmpty","type":"Document","id":922273905,"comment":"Empty constructor, document doesn't exist.","arguments":[{"name":"id","type":"long","comment":"Document ID or 0"}]},{"kind":"class","name":"document","type":"Document","id":2413085912,"comment":"Document","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"long","comment":"Document ID"},{"name":"access_hash","type":"long","comment":"Check sum, dependent on document ID"},{"name":"file_reference","type":"bytes","comment":"File reference"},{"name":"date","type":"int","comment":"Creation date"},{"name":"mime_type","type":"string","comment":"MIME type"},{"name":"size","type":"int53","comment":"Size"},{"name":"thumbs","type":"PhotoSize","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Thumbnails"},{"name":"video_thumbs","type":"VideoSize","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Video thumbnails"},{"name":"dc_id","type":"int","comment":"DC ID"},{"name":"attributes","type":"DocumentAttribute","typeModifiers":{"isVector":true},"comment":"Attributes"}]},{"kind":"class","name":"help.support","type":"help.Support","id":398898678,"comment":"Info on support user.","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"user","type":"User","comment":"User"}]},{"kind":"class","name":"notifyPeer","type":"NotifyPeer","id":2681474008,"comment":"Notifications generated by a certain user or group.","arguments":[{"name":"peer","type":"Peer","comment":"user or group"}]},{"kind":"class","name":"notifyUsers","type":"NotifyPeer","id":3033021260,"comment":"Notifications generated by all users.","arguments":[]},{"kind":"class","name":"notifyChats","type":"NotifyPeer","id":3221737155,"comment":"Notifications generated by all groups.","arguments":[]},{"kind":"class","name":"notifyBroadcasts","type":"NotifyPeer","id":3591563503,"comment":"Channel notification settings","arguments":[]},{"kind":"class","name":"notifyForumTopic","type":"NotifyPeer","id":577659656,"comment":"Notifications generated by a topic in a forum.","arguments":[{"name":"peer","type":"Peer","comment":"Forum ID"},{"name":"top_msg_id","type":"int","comment":"Topic ID"}]},{"kind":"class","name":"sendMessageTypingAction","type":"SendMessageAction","id":381645902,"comment":"User is typing.","arguments":[]},{"kind":"class","name":"sendMessageCancelAction","type":"SendMessageAction","id":4250847477,"comment":"Invalidate all previous action updates. E.g. when user deletes entered text or aborts a video upload.","arguments":[]},{"kind":"class","name":"sendMessageRecordVideoAction","type":"SendMessageAction","id":2710034031,"comment":"User is recording a video.","arguments":[]},{"kind":"class","name":"sendMessageUploadVideoAction","type":"SendMessageAction","id":3916839660,"comment":"User is uploading a video.","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"sendMessageRecordAudioAction","type":"SendMessageAction","id":3576656887,"comment":"User is recording a voice message.","arguments":[]},{"kind":"class","name":"sendMessageUploadAudioAction","type":"SendMessageAction","id":4082227115,"comment":"User is uploading a voice message.","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"sendMessageUploadPhotoAction","type":"SendMessageAction","id":3520285222,"comment":"User is uploading a photo.","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"sendMessageUploadDocumentAction","type":"SendMessageAction","id":2852968932,"comment":"User is uploading a file.","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"sendMessageGeoLocationAction","type":"SendMessageAction","id":393186209,"comment":"User is selecting a location to share.","arguments":[]},{"kind":"class","name":"sendMessageChooseContactAction","type":"SendMessageAction","id":1653390447,"comment":"User is selecting a contact to share.","arguments":[]},{"kind":"class","name":"sendMessageGamePlayAction","type":"SendMessageAction","id":3714748232,"comment":"User is playing a game","arguments":[]},{"kind":"class","name":"sendMessageRecordRoundAction","type":"SendMessageAction","id":2297593788,"comment":"User is recording a round video to share","arguments":[]},{"kind":"class","name":"sendMessageUploadRoundAction","type":"SendMessageAction","id":608050278,"comment":"User is uploading a round video","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"speakingInGroupCallAction","type":"SendMessageAction","id":3643548293,"comment":"User is currently speaking in the group call","arguments":[]},{"kind":"class","name":"sendMessageHistoryImportAction","type":"SendMessageAction","id":3688534598,"comment":"Chat history is being imported","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"sendMessageChooseStickerAction","type":"SendMessageAction","id":2958739121,"comment":"User is choosing a sticker","arguments":[]},{"kind":"class","name":"sendMessageEmojiInteraction","type":"SendMessageAction","id":630664139,"comment":"User has clicked on an animated emoji triggering a reaction, click here for more info ».","arguments":[{"name":"emoticon","type":"string","comment":"Emoji"},{"name":"msg_id","type":"int","comment":"Message ID of the animated emoji that was clicked"},{"name":"interaction","type":"DataJSON","comment":"A JSON object with interaction info, click here for more info »"}]},{"kind":"class","name":"sendMessageEmojiInteractionSeen","type":"SendMessageAction","id":3060109358,"comment":"User is watching an animated emoji reaction triggered by another user, click here for more info ».","arguments":[{"name":"emoticon","type":"string","comment":"Emoji"}]},{"kind":"class","name":"contacts.found","type":"contacts.Found","id":3004386717,"comment":"Users found by name substring and auxiliary data.","arguments":[{"name":"my_results","type":"Peer","typeModifiers":{"isVector":true},"comment":"Personalized results"},{"name":"results","type":"Peer","typeModifiers":{"isVector":true},"comment":"List of found user identifiers"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Found chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users"}]},{"kind":"class","name":"inputPrivacyKeyStatusTimestamp","type":"InputPrivacyKey","id":1335282456,"comment":"Whether people will be able to see our exact last online timestamp.\n\nNote that if we decide to hide our exact last online timestamp to someone (i.e., users A, B, C, or all users) and we do not have a Premium subscription, we won't be able to see the exact last online timestamp of those users (A, B, C, or all users), even if those users do share it with us.\n\nIf those users do share their exact online status with us, but we can't see it due to the reason mentioned above, the by_me flag of {@link RawUserStatusRecently}, {@link RawUserStatusLastWeek}, {@link RawUserStatusLastMonth} will be set.","arguments":[]},{"kind":"class","name":"inputPrivacyKeyChatInvite","type":"InputPrivacyKey","id":3187344422,"comment":"Whether people will be able to invite you to chats","arguments":[]},{"kind":"class","name":"inputPrivacyKeyPhoneCall","type":"InputPrivacyKey","id":4206550111,"comment":"Whether you will accept phone calls","arguments":[]},{"kind":"class","name":"inputPrivacyKeyPhoneP2P","type":"InputPrivacyKey","id":3684593874,"comment":"Whether to allow P2P communication during VoIP calls","arguments":[]},{"kind":"class","name":"inputPrivacyKeyForwards","type":"InputPrivacyKey","id":2765966344,"comment":"Whether messages forwarded from you will be anonymous","arguments":[]},{"kind":"class","name":"inputPrivacyKeyProfilePhoto","type":"InputPrivacyKey","id":1461304012,"comment":"Whether people will be able to see your profile picture","arguments":[]},{"kind":"class","name":"inputPrivacyKeyPhoneNumber","type":"InputPrivacyKey","id":55761658,"comment":"Whether people will be able to see your phone number","arguments":[]},{"kind":"class","name":"inputPrivacyKeyAddedByPhone","type":"InputPrivacyKey","id":3508640733,"comment":"Whether people can add you to their contact list by your phone number","arguments":[]},{"kind":"class","name":"inputPrivacyKeyVoiceMessages","type":"InputPrivacyKey","id":2934349160,"comment":"Whether people can send you voice messages or round videos (Premium users only).","arguments":[]},{"kind":"class","name":"inputPrivacyKeyAbout","type":"InputPrivacyKey","id":941870144,"comment":"Whether people can see your bio","arguments":[]},{"kind":"class","name":"inputPrivacyKeyBirthday","type":"InputPrivacyKey","id":3596227020,"comment":"Whether the user can see our birthday.","arguments":[]},{"kind":"class","name":"privacyKeyStatusTimestamp","type":"PrivacyKey","id":3157175088,"comment":"Whether we can see the last online timestamp of this user.\n\nNote that if we decide to hide our exact last online timestamp to someone (i.e., users A, B, C, or all users) and we do not have a Premium subscription, we won't be able to see the exact last online timestamp of those users (A, B, C, or all users), even if those users do share it with us.\n\nIf those users do share their exact online status with us, but we can't see it due to the reason mentioned above, the by_me flag of {@link RawUserStatusRecently}, {@link RawUserStatusLastWeek}, {@link RawUserStatusLastMonth} will be set.","arguments":[]},{"kind":"class","name":"privacyKeyChatInvite","type":"PrivacyKey","id":1343122938,"comment":"Whether the user can be invited to chats","arguments":[]},{"kind":"class","name":"privacyKeyPhoneCall","type":"PrivacyKey","id":1030105979,"comment":"Whether the user accepts phone calls","arguments":[]},{"kind":"class","name":"privacyKeyPhoneP2P","type":"PrivacyKey","id":961092808,"comment":"Whether P2P connections in phone calls with this user are allowed","arguments":[]},{"kind":"class","name":"privacyKeyForwards","type":"PrivacyKey","id":1777096355,"comment":"Whether messages forwarded from the user will be anonymously forwarded","arguments":[]},{"kind":"class","name":"privacyKeyProfilePhoto","type":"PrivacyKey","id":2517966829,"comment":"Whether the profile picture of the user is visible","arguments":[]},{"kind":"class","name":"privacyKeyPhoneNumber","type":"PrivacyKey","id":3516589165,"comment":"Whether the user allows us to see their phone number","arguments":[]},{"kind":"class","name":"privacyKeyAddedByPhone","type":"PrivacyKey","id":1124062251,"comment":"Whether this user can be added to our contact list by their phone number","arguments":[]},{"kind":"class","name":"privacyKeyVoiceMessages","type":"PrivacyKey","id":110621716,"comment":"Whether the user accepts voice messages","arguments":[]},{"kind":"class","name":"privacyKeyAbout","type":"PrivacyKey","id":2760292193,"comment":"Whether people can see your bio","arguments":[]},{"kind":"class","name":"privacyKeyBirthday","type":"PrivacyKey","id":536913176,"comment":"Whether the user can see our birthday.","arguments":[]},{"kind":"class","name":"inputPrivacyValueAllowContacts","type":"InputPrivacyRule","id":218751099,"comment":"Allow only contacts","arguments":[]},{"kind":"class","name":"inputPrivacyValueAllowAll","type":"InputPrivacyRule","id":407582158,"comment":"Allow all users","arguments":[]},{"kind":"class","name":"inputPrivacyValueAllowUsers","type":"InputPrivacyRule","id":320652927,"comment":"Allow only certain users","arguments":[{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"Allowed users"}]},{"kind":"class","name":"inputPrivacyValueDisallowContacts","type":"InputPrivacyRule","id":195371015,"comment":"Disallow only contacts","arguments":[]},{"kind":"class","name":"inputPrivacyValueDisallowAll","type":"InputPrivacyRule","id":3597362889,"comment":"Disallow all","arguments":[]},{"kind":"class","name":"inputPrivacyValueDisallowUsers","type":"InputPrivacyRule","id":2417034343,"comment":"Disallow only certain users","arguments":[{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"Users to disallow"}]},{"kind":"class","name":"inputPrivacyValueAllowChatParticipants","type":"InputPrivacyRule","id":2215004623,"comment":"Allow only participants of certain chats","arguments":[{"name":"chats","type":"int53","typeModifiers":{"isVector":true},"comment":"Allowed chat IDs"}]},{"kind":"class","name":"inputPrivacyValueDisallowChatParticipants","type":"InputPrivacyRule","id":3914272646,"comment":"Disallow only participants of certain chats","arguments":[{"name":"chats","type":"int53","typeModifiers":{"isVector":true},"comment":"Disallowed chat IDs"}]},{"kind":"class","name":"inputPrivacyValueAllowCloseFriends","type":"InputPrivacyRule","id":793067081,"comment":"Allow only close friends »","arguments":[]},{"kind":"class","name":"inputPrivacyValueAllowPremium","type":"InputPrivacyRule","id":2009975281,"comment":"Allow only users with a Premium subscription », currently only usable for {@link RawInputPrivacyKeyChatInvite}.","arguments":[]},{"kind":"class","name":"privacyValueAllowContacts","type":"PrivacyRule","id":4294843308,"comment":"Allow all contacts","arguments":[]},{"kind":"class","name":"privacyValueAllowAll","type":"PrivacyRule","id":1698855810,"comment":"Allow all users","arguments":[]},{"kind":"class","name":"privacyValueAllowUsers","type":"PrivacyRule","id":3096469426,"comment":"Allow only certain users","arguments":[{"name":"users","type":"int53","typeModifiers":{"isVector":true},"comment":"Allowed users"}]},{"kind":"class","name":"privacyValueDisallowContacts","type":"PrivacyRule","id":4169726490,"comment":"Disallow only contacts","arguments":[]},{"kind":"class","name":"privacyValueDisallowAll","type":"PrivacyRule","id":2339628899,"comment":"Disallow all users","arguments":[]},{"kind":"class","name":"privacyValueDisallowUsers","type":"PrivacyRule","id":3831632193,"comment":"Disallow only certain users","arguments":[{"name":"users","type":"int53","typeModifiers":{"isVector":true},"comment":"Disallowed users"}]},{"kind":"class","name":"privacyValueAllowChatParticipants","type":"PrivacyRule","id":1796427406,"comment":"Allow all participants of certain chats","arguments":[{"name":"chats","type":"int53","typeModifiers":{"isVector":true},"comment":"Allowed chats"}]},{"kind":"class","name":"privacyValueDisallowChatParticipants","type":"PrivacyRule","id":1103656293,"comment":"Disallow only participants of certain chats","arguments":[{"name":"chats","type":"int53","typeModifiers":{"isVector":true},"comment":"Disallowed chats"}]},{"kind":"class","name":"privacyValueAllowCloseFriends","type":"PrivacyRule","id":4159232155,"comment":"Allow only close friends »","arguments":[]},{"kind":"class","name":"privacyValueAllowPremium","type":"PrivacyRule","id":3974725963,"comment":"Allow only users with a Premium subscription », currently only usable for {@link RawInputPrivacyKeyChatInvite}.","arguments":[]},{"kind":"class","name":"account.privacyRules","type":"account.PrivacyRules","id":1352683077,"comment":"Privacy rules","arguments":[{"name":"rules","type":"PrivacyRule","typeModifiers":{"isVector":true},"comment":"Privacy rules"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats to which the rules apply"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users to which the rules apply"}]},{"kind":"class","name":"accountDaysTTL","type":"AccountDaysTTL","id":3100684255,"comment":"Time to live in days of the current account","arguments":[{"name":"days","type":"int","comment":"This account will self-destruct in the specified number of days"}]},{"kind":"class","name":"documentAttributeImageSize","type":"DocumentAttribute","id":1815593308,"comment":"Defines the width and height of an image uploaded as document","arguments":[{"name":"w","type":"int","comment":"Width of image"},{"name":"h","type":"int","comment":"Height of image"}]},{"kind":"class","name":"documentAttributeAnimated","type":"DocumentAttribute","id":297109817,"comment":"Defines an animated GIF","arguments":[]},{"kind":"class","name":"documentAttributeSticker","type":"DocumentAttribute","id":1662637586,"comment":"Defines a sticker","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"mask","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is a mask sticker"},{"name":"alt","type":"string","comment":"Alternative emoji representation of sticker"},{"name":"stickerset","type":"InputStickerSet","comment":"Associated stickerset"},{"name":"mask_coords","type":"MaskCoords","typeModifiers":{"predicate":"flags.0"},"comment":"Mask coordinates (if this is a mask sticker, attached to a photo)"}]},{"kind":"class","name":"documentAttributeVideo","id":1137015880,"type":"DocumentAttribute","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"round_message","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a round video"},{"name":"supports_streaming","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the video supports streaming"},{"name":"nosound","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the specified document is a video file with no audio tracks (a GIF animation (even as MPEG4), for example)"},{"name":"duration","type":"double","comment":"Duration in seconds"},{"name":"w","type":"int","comment":"Video width"},{"name":"h","type":"int","comment":"Video height"},{"name":"preload_prefix_size","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Number of bytes to preload when preloading videos (particularly video stories)."},{"name":"video_start_ts","type":"double","typeModifiers":{"predicate":"flags.4"},"comment":"Floating point UNIX timestamp in seconds, indicating the frame of the video that should be used as static preview and thumbnail."},{"name":"video_codec","type":"string","typeModifiers":{"predicate":"flags.5"}}],"comment":"Defines a video"},{"kind":"class","name":"documentAttributeAudio","type":"DocumentAttribute","id":2555574726,"comment":"Represents an audio file","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"voice","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Whether this is a voice message"},{"name":"duration","type":"int","comment":"Duration in seconds"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Name of song"},{"name":"performer","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Performer"},{"name":"waveform","type":"bytes","typeModifiers":{"predicate":"flags.2"},"comment":"Waveform: consists in a series of bitpacked 5-bit values.
Example implementation: android."}]},{"kind":"class","name":"documentAttributeFilename","type":"DocumentAttribute","id":358154344,"comment":"A simple document with a file name","arguments":[{"name":"file_name","type":"string","comment":"The file name"}]},{"kind":"class","name":"documentAttributeHasStickers","type":"DocumentAttribute","id":2550256375,"comment":"Whether the current document has stickers attached","arguments":[]},{"kind":"class","name":"documentAttributeCustomEmoji","type":"DocumentAttribute","id":4245985433,"comment":"Info about a custom emoji","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"free","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this custom emoji can be sent by non-Premium users"},{"name":"text_color","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the color of this TGS custom emoji should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context."},{"name":"alt","type":"string","comment":"The actual emoji"},{"name":"stickerset","type":"InputStickerSet","comment":"The emoji stickerset to which this emoji belongs."}]},{"kind":"class","name":"messages.stickersNotModified","type":"messages.Stickers","id":4050950690,"comment":"No new stickers were found for the given query","arguments":[]},{"kind":"class","name":"messages.stickers","type":"messages.Stickers","id":816245886,"comment":"Found stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"stickers","type":"Document","typeModifiers":{"isVector":true},"comment":"Stickers"}]},{"kind":"class","name":"stickerPack","type":"StickerPack","id":313694676,"comment":"A stickerpack is a group of stickers associated to the same emoji.
\nIt is not a sticker pack the way it is usually intended, you may be looking for a StickerSet.","arguments":[{"name":"emoticon","type":"string","comment":"Emoji"},{"name":"documents","type":"long","typeModifiers":{"isVector":true},"comment":"Stickers"}]},{"kind":"class","name":"messages.allStickersNotModified","type":"messages.AllStickers","id":3898999491,"comment":"Info about all installed stickers hasn't changed","arguments":[]},{"kind":"class","name":"messages.allStickers","type":"messages.AllStickers","id":3451637435,"comment":"Info about all installed stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"sets","type":"StickerSet","typeModifiers":{"isVector":true},"comment":"All stickersets"}]},{"kind":"class","name":"messages.affectedMessages","type":"messages.AffectedMessages","id":2228326789,"comment":"Events affected by operation","arguments":[{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"webPageEmpty","type":"WebPage","id":555358088,"comment":"No preview is available for the webpage","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"long","comment":"Preview ID"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"URL of the webpage."}]},{"kind":"class","name":"webPagePending","type":"WebPage","id":2966502983,"comment":"A preview of the webpage is currently being generated","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"long","comment":"ID of preview"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"URL of the webpage"},{"name":"date","type":"int","comment":"When was the processing started"}]},{"kind":"class","name":"webPage","type":"WebPage","id":3902555570,"comment":"Webpage preview","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_large_media","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether the size of the media in the preview can be changed."},{"name":"id","type":"long","comment":"Preview ID"},{"name":"url","type":"string","comment":"URL of previewed webpage"},{"name":"display_url","type":"string","comment":"Webpage URL to be displayed to the user"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"type","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Type of the web page. Can be: article, photo, audio, video, document, profile, app, or something else, see here » for a full list."},{"name":"site_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Short name of the site (e.g., Google Docs, App Store)"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Title of the content"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Content description"},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.4"},"comment":"Image representing the content"},{"name":"embed_url","type":"string","typeModifiers":{"predicate":"flags.5"},"comment":"URL to show in the embedded preview"},{"name":"embed_type","type":"string","typeModifiers":{"predicate":"flags.5"},"comment":"MIME type of the embedded preview, (e.g., text/html or video/mp4)"},{"name":"embed_width","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Width of the embedded preview"},{"name":"embed_height","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Height of the embedded preview"},{"name":"duration","type":"int","typeModifiers":{"predicate":"flags.7"},"comment":"Duration of the content, in seconds"},{"name":"author","type":"string","typeModifiers":{"predicate":"flags.8"},"comment":"Author of the content"},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.9"},"comment":"Preview of the content as a media file"},{"name":"cached_page","type":"Page","typeModifiers":{"predicate":"flags.10"},"comment":"Page contents in instant view format"},{"name":"attributes","type":"WebPageAttribute","typeModifiers":{"predicate":"flags.12","isVector":true},"comment":"Webpage attributes"}]},{"kind":"class","name":"webPageNotModified","type":"WebPage","id":1930545681,"comment":"The preview of the webpage hasn't changed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"cached_page_views","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Page view count"}]},{"kind":"class","name":"authorization","type":"Authorization","id":2902578717,"comment":"Logged-in session","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"current","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is the current session"},{"name":"official_app","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the session is from an official app"},{"name":"password_pending","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the session is still waiting for a 2FA password"},{"name":"encrypted_requests_disabled","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this session will accept encrypted chats"},{"name":"call_requests_disabled","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether this session will accept phone calls"},{"name":"unconfirmed","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the session is unconfirmed, see here » for more info."},{"name":"hash","type":"long","comment":"Identifier"},{"name":"device_model","type":"string","comment":"Device model"},{"name":"platform","type":"string","comment":"Platform"},{"name":"system_version","type":"string","comment":"System version"},{"name":"api_id","type":"int","comment":"API ID"},{"name":"app_name","type":"string","comment":"App name"},{"name":"app_version","type":"string","comment":"App version"},{"name":"date_created","type":"int","comment":"When was the session created"},{"name":"date_active","type":"int","comment":"When was the session last active"},{"name":"ip","type":"string","comment":"Last known IP"},{"name":"country","type":"string","comment":"Country determined from IP"},{"name":"region","type":"string","comment":"Region determined from IP"}]},{"kind":"class","name":"account.authorizations","type":"account.Authorizations","id":1275039392,"comment":"Logged-in sessions","arguments":[{"name":"authorization_ttl_days","type":"int","comment":"Time-to-live of session"},{"name":"authorizations","type":"Authorization","typeModifiers":{"isVector":true},"comment":"Logged-in sessions"}]},{"kind":"class","name":"account.password","type":"account.Password","id":2507886843,"comment":"Configuration for two-factor authorization","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_recovery","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user has a recovery method configured"},{"name":"has_secure_values","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether telegram passport is enabled"},{"name":"has_password","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the user has a password"},{"name":"current_algo","type":"PasswordKdfAlgo","typeModifiers":{"predicate":"flags.2"},"comment":"The KDF algorithm for SRP two-factor authentication of the current password"},{"name":"srp_B","type":"bytes","typeModifiers":{"predicate":"flags.2"},"comment":"Srp B param for SRP authorization"},{"name":"srp_id","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"Srp ID param for SRP authorization"},{"name":"hint","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Text hint for the password"},{"name":"email_unconfirmed_pattern","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"A password recovery email with the specified pattern is still awaiting verification"},{"name":"new_algo","type":"PasswordKdfAlgo","comment":"The KDF algorithm for SRP two-factor authentication to use when creating new passwords"},{"name":"new_secure_algo","type":"SecurePasswordKdfAlgo","comment":"The KDF algorithm for telegram passport"},{"name":"secure_random","type":"bytes","comment":"Secure random string"},{"name":"pending_reset_date","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"The 2FA password will be automatically removed at this date, unless the user cancels the operation"},{"name":"login_email_pattern","type":"string","typeModifiers":{"predicate":"flags.6"},"comment":"A verified login email with the specified pattern is configured"}]},{"kind":"class","name":"account.passwordSettings","type":"account.PasswordSettings","id":2589733861,"comment":"Private info associated to the password info (recovery email, telegram passport info & so on)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"email","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"2FA Recovery email"},{"name":"secure_settings","type":"SecureSecretSettings","typeModifiers":{"predicate":"flags.1"},"comment":"Telegram passport settings"}]},{"kind":"class","name":"account.passwordInputSettings","type":"account.PasswordInputSettings","id":3258394569,"comment":"Settings for setting up a new password","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"new_algo","type":"PasswordKdfAlgo","typeModifiers":{"predicate":"flags.0"},"comment":"The SRP algorithm to use"},{"name":"new_password_hash","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"The computed password hash"},{"name":"hint","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Text hint for the password"},{"name":"email","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Password recovery email"},{"name":"new_secure_settings","type":"SecureSecretSettings","typeModifiers":{"predicate":"flags.2"},"comment":"Telegram passport settings"}]},{"kind":"class","name":"auth.passwordRecovery","type":"auth.PasswordRecovery","id":326715557,"comment":"Recovery info of a 2FA password, only for accounts with a recovery email configured.","arguments":[{"name":"email_pattern","type":"string","comment":"The email to which the recovery code was sent must match this pattern."}]},{"kind":"class","name":"receivedNotifyMessage","type":"ReceivedNotifyMessage","id":2743383929,"comment":"Message ID, for which PUSH-notifications were cancelled.","arguments":[{"name":"id","type":"int","comment":"Message ID, for which PUSH-notifications were canceled"},{"name":"flags","type":"int","comment":"Reserved for future use"}]},{"kind":"class","name":"chatInviteExported","id":2720841110,"type":"ExportedChatInvite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this chat invite was revoked"},{"name":"permanent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this chat invite has no expiration"},{"name":"request_needed","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether users importing this invite link will have to be approved to join the channel or group"},{"name":"link","type":"string","comment":"Chat invitation link"},{"name":"admin_id","type":"int53","comment":"ID of the admin that created this chat invite"},{"name":"date","type":"int","comment":"When was this chat invite created"},{"name":"start_date","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"When was this chat invite last modified"},{"name":"expire_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"When does this chat invite expire"},{"name":"usage_limit","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Maximum number of users that can join using this link"},{"name":"usage","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"How many users joined using this link"},{"name":"requested","type":"int","typeModifiers":{"predicate":"flags.7"},"comment":"Number of users that have already used this link to join"},{"name":"subscription_expired","type":"int","typeModifiers":{"predicate":"flags.10"}},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.8"},"comment":"Custom description for the invite link, visible only to admins"},{"name":"subscription_pricing","type":"StarsSubscriptionPricing","typeModifiers":{"predicate":"flags.9"}}],"comment":"Exported chat invite"},{"kind":"class","name":"chatInvitePublicJoinRequests","type":"ExportedChatInvite","id":3977280183,"comment":"Used in updates and in the channel log to indicate when a user is requesting to join or has joined a discussion group","arguments":[]},{"kind":"class","name":"chatInviteAlready","type":"ChatInvite","id":1516793212,"comment":"The user has already joined this chat","arguments":[{"name":"chat","type":"Chat","comment":"The chat connected to the invite"}]},{"kind":"class","name":"chatInvite","id":4268046493,"type":"ChatInvite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a channel/supergroup or a normal group"},{"name":"broadcast","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is a channel"},{"name":"public","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this is a public channel/supergroup"},{"name":"megagroup","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is a supergroup"},{"name":"request_needed","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether the join request » must be first approved by an administrator"},{"name":"verified","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Is this chat or channel verified by Telegram?"},{"name":"scam","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"This chat is probably a scam"},{"name":"fake","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"If set, this chat was reported by many users as a fake or scam: be careful when interacting with it."},{"name":"can_refulfill_subscription","type":"true","typeModifiers":{"predicate":"flags.11"}},{"name":"title","type":"string","comment":"Chat/supergroup/channel title"},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.5"},"comment":"Description of the group of channel"},{"name":"photo","type":"Photo","comment":"Chat/supergroup/channel photo"},{"name":"participants_count","type":"int","comment":"Participant count"},{"name":"participants","type":"User","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"A few of the participants that are in the group"},{"name":"color","type":"int","comment":"Profile color palette ID"},{"name":"subscription_pricing","type":"StarsSubscriptionPricing","typeModifiers":{"predicate":"flags.10"}},{"name":"subscription_form_id","type":"long","typeModifiers":{"predicate":"flags.12"}}],"comment":"Chat invite info"},{"kind":"class","name":"chatInvitePeek","type":"ChatInvite","id":1634294960,"comment":"A chat invitation that also allows peeking into the group to read messages without joining it.","arguments":[{"name":"chat","type":"Chat","comment":"Chat information"},{"name":"expires","type":"int","comment":"Read-only anonymous access to this group will be revoked at this date"}]},{"kind":"class","name":"inputStickerSetEmpty","type":"InputStickerSet","id":4290128789,"comment":"Empty constructor","arguments":[]},{"kind":"class","name":"inputStickerSetID","type":"InputStickerSet","id":2649203305,"comment":"Stickerset by ID","arguments":[{"name":"id","type":"long","comment":"ID"},{"name":"access_hash","type":"long","comment":"Access hash"}]},{"kind":"class","name":"inputStickerSetShortName","type":"InputStickerSet","id":2250033312,"comment":"Stickerset by short name, from a stickerset deep link »","arguments":[{"name":"short_name","type":"string","comment":"Short name from a stickerset deep link »"}]},{"kind":"class","name":"inputStickerSetAnimatedEmoji","type":"InputStickerSet","id":42402760,"comment":"Animated emojis stickerset","arguments":[]},{"kind":"class","name":"inputStickerSetDice","type":"InputStickerSet","id":3867103758,"comment":"Used for fetching animated dice stickers","arguments":[{"name":"emoticon","type":"string","comment":"The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported"}]},{"kind":"class","name":"inputStickerSetAnimatedEmojiAnimations","type":"InputStickerSet","id":215889721,"comment":"Animated emoji reaction stickerset (contains animations to play when a user clicks on a given animated emoji)","arguments":[]},{"kind":"class","name":"inputStickerSetPremiumGifts","type":"InputStickerSet","id":3364567810,"comment":"Stickers to show when receiving a gifted Telegram Premium subscription","arguments":[]},{"kind":"class","name":"inputStickerSetEmojiGenericAnimations","type":"InputStickerSet","id":80008398,"comment":"Generic animation stickerset containing animations to play when reacting to messages using a normal emoji without a custom animation","arguments":[]},{"kind":"class","name":"inputStickerSetEmojiDefaultStatuses","type":"InputStickerSet","id":701560302,"comment":"Default custom emoji status stickerset","arguments":[]},{"kind":"class","name":"inputStickerSetEmojiDefaultTopicIcons","type":"InputStickerSet","id":1153562857,"comment":"Default custom emoji stickerset for forum topic icons","arguments":[]},{"kind":"class","name":"inputStickerSetEmojiChannelDefaultStatuses","type":"InputStickerSet","id":1232373075,"comment":"Default custom emoji status stickerset for channel statuses","arguments":[]},{"kind":"class","name":"stickerSet","type":"StickerSet","id":768691932,"comment":"Represents a stickerset (stickerpack)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"archived","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this stickerset was archived (due to too many saved stickers in the current account)"},{"name":"official","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is this stickerset official"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Is this a mask stickerset"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"This is a custom emoji stickerset"},{"name":"text_color","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether the color of this TGS custom emoji stickerset should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context."},{"name":"channel_emoji_status","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"If set, this custom emoji stickerset can be used in channel/supergroup emoji statuses."},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether we created this stickerset"},{"name":"installed_date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"When was this stickerset installed"},{"name":"id","type":"long","comment":"ID of the stickerset"},{"name":"access_hash","type":"long","comment":"Access hash of stickerset"},{"name":"title","type":"string","comment":"Title of stickerset"},{"name":"short_name","type":"string","comment":"Short name of stickerset, used when sharing stickerset using stickerset deep links."},{"name":"thumbs","type":"PhotoSize","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Stickerset thumbnail"},{"name":"thumb_dc_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"DC ID of thumbnail"},{"name":"thumb_version","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Thumbnail version"},{"name":"thumb_document_id","type":"long","typeModifiers":{"predicate":"flags.8"},"comment":"Document ID of custom emoji thumbnail, fetch the document using {@link messages.RawGetCustomEmojiDocumentsRequest}"},{"name":"count","type":"int","comment":"Number of stickers in pack"},{"name":"hash","type":"int","comment":"Hash"}]},{"kind":"class","name":"messages.stickerSet","type":"messages.StickerSet","id":1846886166,"comment":"Stickerset and stickers inside it","arguments":[{"name":"set","type":"StickerSet","comment":"The stickerset"},{"name":"packs","type":"StickerPack","typeModifiers":{"isVector":true},"comment":"Emoji info for stickers"},{"name":"keywords","type":"StickerKeyword","typeModifiers":{"isVector":true},"comment":"Keywords for some or every sticker in the stickerset."},{"name":"documents","type":"Document","typeModifiers":{"isVector":true},"comment":"Stickers in stickerset"}]},{"kind":"class","name":"messages.stickerSetNotModified","type":"messages.StickerSet","id":3556320491,"comment":"The stickerset hasn't changed","arguments":[]},{"kind":"class","name":"botCommand","type":"BotCommand","id":3262826695,"comment":"Describes a bot command that can be used in a chat","arguments":[{"name":"command","type":"string","comment":"/command name"},{"name":"description","type":"string","comment":"Description of the command"}]},{"kind":"class","name":"botInfo","id":2185461364,"type":"BotInfo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_preview_medias","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"If set, the bot has some preview medias for the configured Main Mini App, see here » for more info on Main Mini App preview medias."},{"name":"user_id","type":"int53","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the bot"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Description of the bot"},{"name":"description_photo","type":"Photo","typeModifiers":{"predicate":"flags.4"},"comment":"Description photo"},{"name":"description_document","type":"Document","typeModifiers":{"predicate":"flags.5"},"comment":"Description animation in MPEG4 format"},{"name":"commands","type":"BotCommand","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"Bot commands that can be used in the chat"},{"name":"menu_button","type":"BotMenuButton","typeModifiers":{"predicate":"flags.3"},"comment":"Indicates the action to execute when pressing the in-UI menu button for bots"},{"name":"privacy_policy_url","type":"string","typeModifiers":{"predicate":"flags.7"}}],"comment":"Info about bots (available bot commands, etc)"},{"kind":"class","name":"keyboardButton","type":"KeyboardButton","id":2734311552,"comment":"Bot keyboard button","arguments":[{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"keyboardButtonUrl","type":"KeyboardButton","id":629866245,"comment":"URL button","arguments":[{"name":"text","type":"string","comment":"Button label"},{"name":"url","type":"string","comment":"URL"}]},{"kind":"class","name":"keyboardButtonCallback","type":"KeyboardButton","id":901503851,"comment":"Callback button","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"requires_password","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user should verify their identity by entering their 2FA SRP parameters to the {@link messages.RawGetBotCallbackAnswerRequest} method. NOTE: telegram and the bot WILL NOT have access to the plaintext password, thanks to SRP. This button is mainly used by the official @botfather bot, for verifying the user's identity before transferring ownership of a bot to another user."},{"name":"text","type":"string","comment":"Button text"},{"name":"data","type":"bytes","comment":"Callback data"}]},{"kind":"class","name":"keyboardButtonRequestPhone","type":"KeyboardButton","id":2976541737,"comment":"Button to request a user's phone number","arguments":[{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"keyboardButtonRequestGeoLocation","type":"KeyboardButton","id":4235815743,"comment":"Button to request a user's geolocation","arguments":[{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"keyboardButtonSwitchInline","type":"KeyboardButton","id":2478439349,"comment":"Button to force a user to switch to inline mode: 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.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"same_peer","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, pressing the button will insert the bot's username and the specified inline query in the current chat's input field."},{"name":"text","type":"string","comment":"Button label"},{"name":"query","type":"string","comment":"The inline query to use"},{"name":"peer_types","type":"InlineQueryPeerType","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Filter to use when selecting chats."}]},{"kind":"class","name":"keyboardButtonGame","type":"KeyboardButton","id":1358175439,"comment":"Button to start a game","arguments":[{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"keyboardButtonBuy","type":"KeyboardButton","id":2950250427,"comment":"Button to buy a product","arguments":[{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"keyboardButtonUrlAuth","type":"KeyboardButton","id":280464681,"comment":"Button to request a user to authorize via URL using Seamless Telegram Login. When the user clicks on such a button, {@link messages.RawRequestUrlAuthRequest} should be called, providing the button_id and the ID of the container message. The returned {@link RawUrlAuthResultRequest} object will contain more details about the authorization request (request_write_access if the bot would like to send messages to the user along with the username of the bot which will be used for user authorization). Finally, the user can choose to call {@link messages.RawAcceptUrlAuthRequest} to get a {@link RawUrlAuthResultAccepted} with the URL to open instead of the url of this constructor, or a {@link RawUrlAuthResultDefault}, in which case the url of this constructor must be opened, instead. If the user refuses the authorization request but still wants to open the link, the url of this constructor must be used.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"text","type":"string","comment":"Button label"},{"name":"fwd_text","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"New text of the button in forwarded messages."},{"name":"url","type":"string","comment":"An HTTP URL to be opened with user authorization data added to the query string when the button is pressed. If the user refuses to provide authorization data, the original URL without information about the user will be opened. The data added is the same as described in Receiving authorization data.

NOTE: Services must always check the hash of the received data to verify the authentication and the integrity of the data as described in Checking authorization."},{"name":"button_id","type":"int","comment":"ID of the button to pass to {@link messages.RawRequestUrlAuthRequest}"}]},{"kind":"class","name":"inputKeyboardButtonUrlAuth","type":"KeyboardButton","id":3492708308,"comment":"Button to request a user to {@link messages.RawAcceptUrlAuthRequest} via URL using Seamless Telegram Login.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"request_write_access","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag to request the permission for your bot to send messages to the user."},{"name":"text","type":"string","comment":"Button text"},{"name":"fwd_text","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"New text of the button in forwarded messages."},{"name":"url","type":"string","comment":"An HTTP URL to be opened with user authorization data added to the query string when the button is pressed. If the user refuses to provide authorization data, the original URL without information about the user will be opened. The data added is the same as described in Receiving authorization data.
NOTE: You must always check the hash of the received data to verify the authentication and the integrity of the data as described in Checking authorization."},{"name":"bot","type":"InputUser","comment":"Username of a bot, which will be used for user authorization. See Setting up a bot for more details. If not specified, the current bot's username will be assumed. The url's domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details."}]},{"kind":"class","name":"keyboardButtonRequestPoll","type":"KeyboardButton","id":3150401885,"comment":"A button that allows the user to create and send a poll when pressed; available only in private","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"quiz","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"If set, only quiz polls can be sent"},{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"inputKeyboardButtonUserProfile","type":"KeyboardButton","id":3918005115,"comment":"Button that links directly to a user profile","arguments":[{"name":"text","type":"string","comment":"Button text"},{"name":"user_id","type":"InputUser","comment":"User ID"}]},{"kind":"class","name":"keyboardButtonUserProfile","type":"KeyboardButton","id":814112961,"comment":"Button that links directly to a user profile","arguments":[{"name":"text","type":"string","comment":"Button text"},{"name":"user_id","type":"int53","comment":"User ID"}]},{"kind":"class","name":"keyboardButtonWebView","type":"KeyboardButton","id":326529584,"comment":"Button to open a bot mini app using {@link messages.RawRequestWebViewRequest}, sending over user information after user confirmation.\n\nCan only be sent or received as part of an inline keyboard, use {@link RawKeyboardButtonSimpleWebView} for reply keyboards.","arguments":[{"name":"text","type":"string","comment":"Button text"},{"name":"url","type":"string","comment":"Web app url"}]},{"kind":"class","name":"keyboardButtonSimpleWebView","type":"KeyboardButton","id":2696958044,"comment":"Button to open a bot mini app using {@link messages.RawRequestSimpleWebViewRequest}, without sending user information to the web app.\n\nCan only be sent or received as part of a reply keyboard, use {@link RawKeyboardButtonWebView} for inline keyboards.","arguments":[{"name":"text","type":"string","comment":"Button text"},{"name":"url","type":"string","comment":"Web app URL"}]},{"kind":"class","name":"keyboardButtonRequestPeer","type":"KeyboardButton","id":1406648280,"comment":"Prompts the user to select and share one or more peers with the bot using {@link messages.RawSendBotRequestedPeerRequest}","arguments":[{"name":"text","type":"string","comment":"Button text"},{"name":"button_id","type":"int","comment":"Button ID, to be passed to {@link messages.RawSendBotRequestedPeerRequest}."},{"name":"peer_type","type":"RequestPeerType","comment":"Filtering criteria to use for the peer selection list shown to the user.
The list should display all existing peers of the specified type, and should also offer an option for the user to create and immediately use one or more (up to max_quantity) peers of the specified type, if needed."},{"name":"max_quantity","type":"int","comment":"Maximum number of peers that can be chosen."}]},{"kind":"class","name":"inputKeyboardButtonRequestPeer","type":"KeyboardButton","id":3378916613,"comment":"Prompts the user to select and share one or more peers with the bot using {@link messages.RawSendBotRequestedPeerRequest}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"name_requested","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag to request the peer's name."},{"name":"username_requested","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag to request the peer's @username (if any)."},{"name":"photo_requested","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Set this flag to request the peer's photo (if any)."},{"name":"text","type":"string","comment":"Button text"},{"name":"button_id","type":"int","comment":"Button ID, to be passed to {@link messages.RawSendBotRequestedPeerRequest}."},{"name":"peer_type","type":"RequestPeerType","comment":"Filtering criteria to use for the peer selection list shown to the user.
The list should display all existing peers of the specified type, and should also offer an option for the user to create and immediately use one or more (up to max_quantity) peers of the specified type, if needed."},{"name":"max_quantity","type":"int","comment":"Maximum number of peers that can be chosen."}]},{"kind":"class","name":"keyboardButtonCopy","type":"KeyboardButton","id":1976723854,"arguments":[{"name":"text","type":"string"},{"name":"copy_text","type":"string"}]},{"kind":"class","name":"keyboardButtonRow","type":"KeyboardButtonRow","id":2002815875,"comment":"Inline keyboard row","arguments":[{"name":"buttons","type":"KeyboardButton","typeModifiers":{"isVector":true},"comment":"Bot or inline keyboard buttons"}]},{"kind":"class","name":"replyKeyboardHide","type":"ReplyMarkup","id":2688441221,"comment":"Hide sent bot keyboard","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"selective","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Use this flag 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 reply_to_message_id), 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"}]},{"kind":"class","name":"replyKeyboardForceReply","type":"ReplyMarkup","id":2259946248,"comment":"Force the user to send a reply","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"single_use","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"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."},{"name":"selective","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"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 reply_to_message_id), 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."},{"name":"placeholder","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"The placeholder to be shown in the input field when the keyboard is active; 1-64 characters."}]},{"kind":"class","name":"replyKeyboardMarkup","type":"ReplyMarkup","id":2245892561,"comment":"Bot keyboard","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"resize","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Requests clients to resize the keyboard vertically for optimal fit (e.g., make the keyboard smaller if there are just two rows of buttons). If not set, the custom keyboard is always of the same height as the app's standard keyboard."},{"name":"single_use","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"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."},{"name":"selective","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"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 reply_to_message_id), 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."},{"name":"persistent","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Requests clients to always show the keyboard when the regular keyboard is hidden."},{"name":"rows","type":"KeyboardButtonRow","typeModifiers":{"isVector":true},"comment":"Button row"},{"name":"placeholder","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"The placeholder to be shown in the input field when the keyboard is active; 1-64 characters."}]},{"kind":"class","name":"replyInlineMarkup","type":"ReplyMarkup","id":1218642516,"comment":"Bot or inline keyboard","arguments":[{"name":"rows","type":"KeyboardButtonRow","typeModifiers":{"isVector":true},"comment":"Bot or inline keyboard rows"}]},{"kind":"class","name":"messageEntityUnknown","type":"MessageEntity","id":3146955413,"comment":"Unknown message entity","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityMention","type":"MessageEntity","id":4194588573,"comment":"Message entity mentioning a user by @username; {@link RawMessageEntityMentionName} can also be used to mention users by their ID.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityHashtag","type":"MessageEntity","id":1868782349,"comment":"#hashtag message entity","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityBotCommand","type":"MessageEntity","id":1827637959,"comment":"Message entity representing a bot /command","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityUrl","type":"MessageEntity","id":1859134776,"comment":"Message entity representing an in-text url: https://google.com; for text urls, use {@link RawMessageEntityTextUrl}.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityEmail","type":"MessageEntity","id":1692693954,"comment":"Message entity representing an email@example.com.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityBold","type":"MessageEntity","id":3177253833,"comment":"Message entity representing bold text.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityItalic","type":"MessageEntity","id":2188348256,"comment":"Message entity representing italic text.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityCode","type":"MessageEntity","id":681706865,"comment":"Message entity representing a codeblock.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityPre","type":"MessageEntity","id":1938967520,"comment":"Message entity representing a preformatted codeblock, allowing the user to specify a programming language for the codeblock.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"},{"name":"language","type":"string","comment":"Programming language of the code"}]},{"kind":"class","name":"messageEntityTextUrl","type":"MessageEntity","id":1990644519,"comment":"Message entity representing a text url: for in-text urls like https://google.com use {@link RawMessageEntityUrl}.\n\nNote that an additional confirmation popup with the full URL must be displayed to the user before opening this link, unless the domain satisfies the conditions specified in the domain whitelist documentation ».","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"},{"name":"url","type":"string","comment":"The actual URL"}]},{"kind":"class","name":"messageEntityMentionName","type":"MessageEntity","id":3699052864,"comment":"Message entity representing a user mention: for creating a mention use {@link RawInputMessageEntityMentionName}.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"},{"name":"user_id","type":"int53","comment":"Identifier of the user that was mentioned"}]},{"kind":"class","name":"inputMessageEntityMentionName","type":"MessageEntity","id":546203849,"comment":"Message entity that can be used to create a user user mention: received mentions use the {@link RawMessageEntityMentionName} constructor, instead.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"},{"name":"user_id","type":"InputUser","comment":"Identifier of the user that was mentioned"}]},{"kind":"class","name":"messageEntityPhone","type":"MessageEntity","id":2607407947,"comment":"Message entity representing a phone number.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityCashtag","type":"MessageEntity","id":1280209983,"comment":"Message entity representing a $cashtag.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityUnderline","type":"MessageEntity","id":2622389899,"comment":"Message entity representing underlined text.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityStrike","type":"MessageEntity","id":3204879316,"comment":"Message entity representing strikethrough text.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityBankCard","type":"MessageEntity","id":1981704948,"comment":"Indicates a credit card number","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntitySpoiler","type":"MessageEntity","id":852137487,"comment":"Message entity representing a spoiler","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityCustomEmoji","type":"MessageEntity","id":3369010680,"comment":"Represents a custom emoji.
\nNote that this entity must wrap exactly one regular emoji (the one contained in {@link RawDocumentAttributeCustomEmoji}.alt) in the related text, otherwise the server will ignore it.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"},{"name":"document_id","type":"long","comment":"Document ID of the custom emoji, use {@link messages.RawGetCustomEmojiDocumentsRequest} to fetch the emoji animation and the actual emoji it represents."}]},{"kind":"class","name":"messageEntityBlockquote","type":"MessageEntity","id":4056722092,"comment":"Message entity representing a block quote.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"collapsed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the quote is collapsed by default."},{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"inputChannelEmpty","type":"InputChannel","id":4002160262,"comment":"Represents the absence of a channel","arguments":[]},{"kind":"class","name":"inputChannel","type":"InputChannel","id":4082822184,"comment":"Represents a channel","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"access_hash","type":"long","comment":"Access hash taken from the {@link RawChannel} constructor"}]},{"kind":"class","name":"inputChannelFromMessage","type":"InputChannel","id":1536380829,"comment":"Defines a min channel that was seen in a certain message of a certain chat.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where the channel was seen"},{"name":"msg_id","type":"int","comment":"The message ID in the chat where the channel was seen"},{"name":"channel_id","type":"int53","comment":"The channel ID"}]},{"kind":"class","name":"contacts.resolvedPeer","type":"contacts.ResolvedPeer","id":2131196633,"comment":"Resolved peer","arguments":[{"name":"peer","type":"Peer","comment":"The peer"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"messageRange","type":"MessageRange","id":182649427,"comment":"Indicates a range of chat messages","arguments":[{"name":"min_id","type":"int","comment":"Start of range (message ID)"},{"name":"max_id","type":"int","comment":"End of range (message ID)"}]},{"kind":"class","name":"updates.channelDifferenceEmpty","type":"updates.ChannelDifference","id":1041346555,"comment":"There are no new updates","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"final","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether there are more updates that must be fetched (always false)"},{"name":"pts","type":"int","comment":"The latest PTS"},{"name":"timeout","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Clients are supposed to refetch the channel difference after timeout seconds have elapsed, if the user is currently viewing the chat, see here » for more info."}]},{"kind":"class","name":"updates.channelDifferenceTooLong","type":"updates.ChannelDifference","id":2763835134,"comment":"The provided pts + limit < remote pts. Simply, there are too many updates to be fetched (more than limit), the client has to resolve the update gap in one of the following ways (assuming the existence of a persistent database to locally store messages):\n\nIt should be also noted that some messages like live location messages shouldn't be deleted.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"final","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether there are more updates that must be fetched (always false)"},{"name":"timeout","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Clients are supposed to refetch the channel difference after timeout seconds have elapsed"},{"name":"dialog","type":"Dialog","comment":"Dialog containing the latest PTS that can be used to reset the channel state"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"The latest messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats from messages"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users from messages"}]},{"kind":"class","name":"updates.channelDifference","type":"updates.ChannelDifference","id":543450958,"comment":"The new updates","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"final","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether there are more updates to be fetched using getDifference, starting from the provided pts"},{"name":"pts","type":"int","comment":"The PTS from which to start getting updates the next time"},{"name":"timeout","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Clients are supposed to refetch the channel difference after timeout seconds have elapsed, if the user is currently viewing the chat, see here » for more info."},{"name":"new_messages","type":"Message","typeModifiers":{"isVector":true},"comment":"New messages"},{"name":"other_updates","type":"Update","typeModifiers":{"isVector":true},"comment":"Other updates"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"channelMessagesFilterEmpty","type":"ChannelMessagesFilter","id":2496933607,"comment":"No filter","arguments":[]},{"kind":"class","name":"channelMessagesFilter","type":"ChannelMessagesFilter","id":3447183703,"comment":"Filter for getting only certain types of channel messages","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"exclude_new_messages","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to exclude new messages from the search"},{"name":"ranges","type":"MessageRange","typeModifiers":{"isVector":true},"comment":"A range of messages to fetch"}]},{"kind":"class","name":"channelParticipant","id":3409540633,"type":"ChannelParticipant","arguments":[{"name":"flags","type":"#"},{"name":"user_id","type":"int53","comment":"Participant user ID"},{"name":"date","type":"int","comment":"Date joined"},{"name":"subscription_until_date","type":"int","typeModifiers":{"predicate":"flags.0"}}],"comment":"Channel/supergroup participant"},{"kind":"class","name":"channelParticipantSelf","id":1331723247,"type":"ChannelParticipant","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_request","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether I joined upon specific approval of an admin"},{"name":"user_id","type":"int53","comment":"User ID"},{"name":"inviter_id","type":"int53","comment":"User that invited me to the channel/supergroup"},{"name":"date","type":"int","comment":"When did I join the channel/supergroup"},{"name":"subscription_until_date","type":"int","typeModifiers":{"predicate":"flags.1"}}],"comment":"Myself"},{"kind":"class","name":"channelParticipantCreator","type":"ChannelParticipant","id":803602899,"comment":"Channel/supergroup creator","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"user_id","type":"int53","comment":"User ID"},{"name":"admin_rights","type":"ChatAdminRights","comment":"Creator admin rights"},{"name":"rank","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"The role (rank) of the group creator in the group: just an arbitrary string, admin by default"}]},{"kind":"class","name":"channelParticipantAdmin","type":"ChannelParticipant","id":885242707,"comment":"Admin","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_edit","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Can this admin promote other admins with the same permissions?"},{"name":"self","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Is this the current user"},{"name":"user_id","type":"int53","comment":"Admin user ID"},{"name":"inviter_id","type":"int53","typeModifiers":{"predicate":"flags.1"},"comment":"User that invited the admin to the channel/group"},{"name":"promoted_by","type":"int53","comment":"User that promoted the user to admin"},{"name":"date","type":"int","comment":"When did the user join"},{"name":"admin_rights","type":"ChatAdminRights","comment":"Admin rights"},{"name":"rank","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"The role (rank) of the admin in the group: just an arbitrary string, admin by default"}]},{"kind":"class","name":"channelParticipantBanned","type":"ChannelParticipant","id":1844969806,"comment":"Banned/kicked user","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"left","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user has left the group"},{"name":"peer","type":"Peer","comment":"The banned peer"},{"name":"kicked_by","type":"int53","comment":"User was kicked by the specified admin"},{"name":"date","type":"int","comment":"When did the user join the group"},{"name":"banned_rights","type":"ChatBannedRights","comment":"Banned rights"}]},{"kind":"class","name":"channelParticipantLeft","type":"ChannelParticipant","id":453242886,"comment":"A participant that left the channel/supergroup","arguments":[{"name":"peer","type":"Peer","comment":"The peer that left"}]},{"kind":"class","name":"channelParticipantsRecent","type":"ChannelParticipantsFilter","id":3728686201,"comment":"Fetch only recent participants","arguments":[]},{"kind":"class","name":"channelParticipantsAdmins","type":"ChannelParticipantsFilter","id":3026225513,"comment":"Fetch only admin participants","arguments":[]},{"kind":"class","name":"channelParticipantsKicked","type":"ChannelParticipantsFilter","id":2746567045,"comment":"Fetch only kicked participants","arguments":[{"name":"q","type":"string","comment":"Optional filter for searching kicked participants by name (otherwise empty)"}]},{"kind":"class","name":"channelParticipantsBots","type":"ChannelParticipantsFilter","id":2966521435,"comment":"Fetch only bot participants","arguments":[]},{"kind":"class","name":"channelParticipantsBanned","type":"ChannelParticipantsFilter","id":338142689,"comment":"Fetch only banned participants","arguments":[{"name":"q","type":"string","comment":"Optional filter for searching banned participants by name (otherwise empty)"}]},{"kind":"class","name":"channelParticipantsSearch","type":"ChannelParticipantsFilter","id":106343499,"comment":"Query participants by name","arguments":[{"name":"q","type":"string","comment":"Search query"}]},{"kind":"class","name":"channelParticipantsContacts","type":"ChannelParticipantsFilter","id":3144345741,"comment":"Fetch only participants that are also contacts","arguments":[{"name":"q","type":"string","comment":"Optional search query for searching contact participants by name"}]},{"kind":"class","name":"channelParticipantsMentions","type":"ChannelParticipantsFilter","id":3763035371,"comment":"This filter is used when looking for supergroup members to mention.
\nThis filter will automatically remove anonymous admins, and return even non-participant users that replied to a specific thread through the comment section of a channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"q","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Filter by user name or username"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Look only for users that posted in this thread"}]},{"kind":"class","name":"channels.channelParticipants","type":"channels.ChannelParticipants","id":2595290799,"comment":"Represents multiple channel participants","arguments":[{"name":"count","type":"int","comment":"Total number of participants that correspond to the given query"},{"name":"participants","type":"ChannelParticipant","typeModifiers":{"isVector":true},"comment":"Participants"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in participant info"}]},{"kind":"class","name":"channels.channelParticipantsNotModified","type":"channels.ChannelParticipants","id":4028055529,"comment":"No new participant info could be found","arguments":[]},{"kind":"class","name":"channels.channelParticipant","type":"channels.ChannelParticipant","id":3753378583,"comment":"Represents a channel participant","arguments":[{"name":"participant","type":"ChannelParticipant","comment":"The channel participant"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"help.termsOfService","type":"help.TermsOfService","id":2013922064,"comment":"Info about the latest telegram Terms Of Service","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"popup","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether a prompt must be showed to the user, in order to accept the new terms."},{"name":"id","type":"DataJSON","comment":"ID of the new terms"},{"name":"text","type":"string","comment":"Text of the new terms"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"},{"name":"min_age_confirm","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Minimum age required to sign up to telegram, the user must confirm that they is older than the minimum age."}]},{"kind":"class","name":"messages.savedGifsNotModified","type":"messages.SavedGifs","id":3892468898,"comment":"No new saved gifs were found","arguments":[]},{"kind":"class","name":"messages.savedGifs","type":"messages.SavedGifs","id":2225089037,"comment":"Saved gifs","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"gifs","type":"Document","typeModifiers":{"isVector":true},"comment":"List of saved gifs"}]},{"kind":"class","name":"inputBotInlineMessageMediaAuto","type":"InputBotInlineMessage","id":864077702,"comment":"A media","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"message","type":"string","comment":"Caption"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageText","type":"InputBotInlineMessage","id":1036876423,"comment":"Simple text message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Disable webpage preview"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"message","type":"string","comment":"Message"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageMediaGeo","type":"InputBotInlineMessage","id":2526190213,"comment":"Geolocation","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo_point","type":"InputGeoPoint","comment":"Geolocation"},{"name":"heading","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"For live locations, a direction in which the location moves, in degrees; 1-360"},{"name":"period","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Validity period"},{"name":"proximity_notification_radius","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for bot/inline keyboards"}]},{"kind":"class","name":"inputBotInlineMessageMediaVenue","type":"InputBotInlineMessage","id":1098628881,"comment":"Venue","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo_point","type":"InputGeoPoint","comment":"Geolocation"},{"name":"title","type":"string","comment":"Venue name"},{"name":"address","type":"string","comment":"Address"},{"name":"provider","type":"string","comment":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported"},{"name":"venue_id","type":"string","comment":"Venue ID in the provider's database"},{"name":"venue_type","type":"string","comment":"Venue type in the provider's database"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageMediaContact","type":"InputBotInlineMessage","id":2800599037,"comment":"A contact","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"First name"},{"name":"last_name","type":"string","comment":"Last name"},{"name":"vcard","type":"string","comment":"VCard info"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageGame","type":"InputBotInlineMessage","id":1262639204,"comment":"A game","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageMediaInvoice","type":"InputBotInlineMessage","id":3622273573,"comment":"An invoice","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Product name, 1-32 characters"},{"name":"description","type":"string","comment":"Product description, 1-255 characters"},{"name":"photo","type":"InputWebDocument","typeModifiers":{"predicate":"flags.0"},"comment":"Invoice photo"},{"name":"invoice","type":"Invoice","comment":"The invoice"},{"name":"payload","type":"bytes","comment":"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes."},{"name":"provider","type":"string","comment":"Payments provider token, obtained via Botfather"},{"name":"provider_data","type":"DataJSON","comment":"A JSON-serialized object for data about the invoice, which will be shared with the payment provider. A detailed description of the required fields should be provided by the payment provider."},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageMediaWebPage","type":"InputBotInlineMessage","id":3185362192,"comment":"Specifies options that will be used to generate the link preview for the message, or even a standalone link preview without an attached message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"force_large_media","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, specifies that a large media preview should be used."},{"name":"force_small_media","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, specifies that a small media preview should be used."},{"name":"optional","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"If not set, a WEBPAGE_NOT_FOUND RPC error will be emitted if a webpage preview cannot be generated for the specified url; otherwise, no error will be emitted (unless the provided message is also empty, in which case a MESSAGE_EMPTY will be emitted, instead)."},{"name":"message","type":"string","comment":"The message, can be empty."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"url","type":"string","comment":"The URL to use for the link preview."},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineResult","type":"InputBotInlineResult","id":2294256409,"comment":"An inline bot result","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"string","comment":"ID of result"},{"name":"type","type":"string","comment":"Result type (see bot API docs)"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Result title"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Result description"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"URL of result"},{"name":"thumb","type":"InputWebDocument","typeModifiers":{"predicate":"flags.4"},"comment":"Thumbnail for result"},{"name":"content","type":"InputWebDocument","typeModifiers":{"predicate":"flags.5"},"comment":"Result contents"},{"name":"send_message","type":"InputBotInlineMessage","comment":"Message to send when the result is selected"}]},{"kind":"class","name":"inputBotInlineResultPhoto","type":"InputBotInlineResult","id":2832753831,"comment":"Photo","arguments":[{"name":"id","type":"string","comment":"Result ID"},{"name":"type","type":"string","comment":"Result type (see bot API docs)"},{"name":"photo","type":"InputPhoto","comment":"Photo to send"},{"name":"send_message","type":"InputBotInlineMessage","comment":"Message to send when the result is selected"}]},{"kind":"class","name":"inputBotInlineResultDocument","type":"InputBotInlineResult","id":4294507972,"comment":"Document (media of any type except for photos)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"string","comment":"Result ID"},{"name":"type","type":"string","comment":"Result type (see bot API docs)"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Result title"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Result description"},{"name":"document","type":"InputDocument","comment":"Document to send"},{"name":"send_message","type":"InputBotInlineMessage","comment":"Message to send when the result is selected"}]},{"kind":"class","name":"inputBotInlineResultGame","type":"InputBotInlineResult","id":1336154098,"comment":"Game","arguments":[{"name":"id","type":"string","comment":"Result ID"},{"name":"short_name","type":"string","comment":"Game short name"},{"name":"send_message","type":"InputBotInlineMessage","comment":"Message to send when the result is selected"}]},{"kind":"class","name":"botInlineMessageMediaAuto","type":"BotInlineMessage","id":1984755728,"comment":"Send whatever media is attached to the {@link RawBotInlineMediaResult}","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"message","type":"string","comment":"Caption"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageText","type":"BotInlineMessage","id":2357159394,"comment":"Send a simple text message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Disable webpage preview"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"message","type":"string","comment":"The message"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageMediaGeo","type":"BotInlineMessage","id":85477117,"comment":"Send a geolocation","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo","type":"GeoPoint","comment":"Geolocation"},{"name":"heading","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"For live locations, a direction in which the location moves, in degrees; 1-360."},{"name":"period","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Validity period"},{"name":"proximity_notification_radius","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)."},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageMediaVenue","type":"BotInlineMessage","id":2324063644,"comment":"Send a venue","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo","type":"GeoPoint","comment":"Geolocation of venue"},{"name":"title","type":"string","comment":"Venue name"},{"name":"address","type":"string","comment":"Address"},{"name":"provider","type":"string","comment":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported"},{"name":"venue_id","type":"string","comment":"Venue ID in the provider's database"},{"name":"venue_type","type":"string","comment":"Venue type in the provider's database"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageMediaContact","type":"BotInlineMessage","id":416402882,"comment":"Send a contact","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"First name"},{"name":"last_name","type":"string","comment":"Last name"},{"name":"vcard","type":"string","comment":"VCard info"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageMediaInvoice","type":"BotInlineMessage","id":894081801,"comment":"Send an invoice","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"shipping_address_requested","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if you require the user's shipping address to complete the order"},{"name":"test","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Test invoice"},{"name":"title","type":"string","comment":"Product name, 1-32 characters"},{"name":"description","type":"string","comment":"Product description, 1-255 characters"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.0"},"comment":"Product photo"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageMediaWebPage","type":"BotInlineMessage","id":2157631910,"comment":"Specifies options that must be used to generate the link preview for the message, or even a standalone link preview without an attached message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"force_large_media","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, specifies that a large media preview should be used."},{"name":"force_small_media","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, specifies that a small media preview should be used."},{"name":"manual","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, indicates that the URL used for the webpage preview was specified manually using {@link RawInputMediaWebPage}, and may not be related to any of the URLs specified in the message."},{"name":"safe","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"If set, the link can be opened directly without user confirmation."},{"name":"message","type":"string","comment":"The message, can be empty."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"url","type":"string","comment":"The URL to use for the link preview."},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for sending bot buttons"}]},{"kind":"class","name":"botInlineResult","type":"BotInlineResult","id":295067450,"comment":"Generic result","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"string","comment":"Result ID"},{"name":"type","type":"string","comment":"Result type (see bot API docs)"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Result title"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Result description"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"URL of article or webpage"},{"name":"thumb","type":"WebDocument","typeModifiers":{"predicate":"flags.4"},"comment":"Thumbnail for the result"},{"name":"content","type":"WebDocument","typeModifiers":{"predicate":"flags.5"},"comment":"Content of the result"},{"name":"send_message","type":"BotInlineMessage","comment":"Message to send"}]},{"kind":"class","name":"botInlineMediaResult","type":"BotInlineResult","id":400266251,"comment":"Media result","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"string","comment":"Result ID"},{"name":"type","type":"string","comment":"Result type (see bot API docs)"},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.0"},"comment":"If type is photo, the photo to send"},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.1"},"comment":"If type is document, the document to send"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Result title"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Description"},{"name":"send_message","type":"BotInlineMessage","comment":"Depending on the type and on the constructor, contains the caption of the media or the content of the message to be sent instead of the media"}]},{"kind":"class","name":"messages.botResults","type":"messages.BotResults","id":3760321270,"comment":"Result of a query to an inline bot","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"gallery","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the result is a picture gallery"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"The next offset to use when navigating through results"},{"name":"switch_pm","type":"InlineBotSwitchPM","typeModifiers":{"predicate":"flags.2"},"comment":"Shown as a button on top of the remaining inline result list; if clicked, redirects the user to a private chat with the bot with the specified start parameter."},{"name":"switch_webview","type":"InlineBotWebView","typeModifiers":{"predicate":"flags.3"},"comment":"Shown as a button on top of the remaining inline result list; if clicked, opens the specified inline mode mini app."},{"name":"results","type":"BotInlineResult","typeModifiers":{"isVector":true},"comment":"The results"},{"name":"cache_time","type":"int","comment":"Caching validity of the results"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the results"}]},{"kind":"class","name":"exportedMessageLink","type":"ExportedMessageLink","id":1571494644,"comment":"Link to a message in a supergroup/channel","arguments":[{"name":"link","type":"string","comment":"URL"},{"name":"html","type":"string","comment":"Embed code"}]},{"kind":"class","name":"messageFwdHeader","type":"MessageFwdHeader","id":1313731771,"comment":"Info about a forwarded message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"imported","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether this message was imported from a foreign chat service, click here for more info »"},{"name":"saved_out","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Only for messages forwarded to saved messages », set if the original message was outgoing (though the message may have been originally outgoing even if this flag is not set, if from_id points to the current user)."},{"name":"from_id","type":"Peer","typeModifiers":{"predicate":"flags.0"},"comment":"The ID of the user that originally sent the message"},{"name":"from_name","type":"string","typeModifiers":{"predicate":"flags.5"},"comment":"The name of the user that originally sent the message"},{"name":"date","type":"int","comment":"When was the message originally sent"},{"name":"channel_post","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"ID of the channel message that was forwarded"},{"name":"post_author","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"For channels and if signatures are enabled, author of the channel message"},{"name":"saved_from_peer","type":"Peer","typeModifiers":{"predicate":"flags.4"},"comment":"Only for messages forwarded to saved messages », contains the dialog where the message was originally sent."},{"name":"saved_from_msg_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Only for messages forwarded to saved messages », contains the original ID of the message in saved_from_peer."},{"name":"saved_from_id","type":"Peer","typeModifiers":{"predicate":"flags.8"},"comment":"Only for forwarded messages reforwarded to saved messages », contains the sender of the original message (i.e. if user A sends a message, then user B forwards it somewhere, then user C saves it to saved messages, this field will contain the ID of user B and from_id will contain the ID of user A)."},{"name":"saved_from_name","type":"string","typeModifiers":{"predicate":"flags.9"},"comment":"Only for forwarded messages from users with forward privacy enabled, sent by users with forward privacy enabled, reforwarded to saved messages », contains the sender of the original message (i.e. if user A (fwd privacy enabled) sends a message, then user B (fwd privacy enabled) forwards it somewhere, then user C saves it to saved messages, this field will contain the name of user B and from_name will contain the name of user A)."},{"name":"saved_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Only for forwarded messages reforwarded to saved messages », indicates when was the original message sent (i.e. if user A sends a message @ unixtime 1, then user B forwards it somewhere @ unixtime 2, then user C saves it to saved messages @ unixtime 3, this field will contain 2, date will contain 1 and the date of the containing {@link RawMessage} will contain 3)."},{"name":"psa_type","type":"string","typeModifiers":{"predicate":"flags.6"},"comment":"PSA type"}]},{"kind":"class","name":"auth.codeTypeSms","type":"auth.CodeType","id":1923290508,"comment":"The next time, the authentication code will be delivered via an immediately canceled incoming call.","arguments":[]},{"kind":"class","name":"auth.codeTypeCall","type":"auth.CodeType","id":1948046307,"comment":"The next time, the authentication code is to be delivered via an outgoing phone call.","arguments":[]},{"kind":"class","name":"auth.codeTypeFlashCall","type":"auth.CodeType","id":577556219,"comment":"The next time, the authentication code will be delivered via an immediately canceled incoming call.","arguments":[]},{"kind":"class","name":"auth.codeTypeMissedCall","type":"auth.CodeType","id":3592083182,"comment":"The next time, the authentication code will be delivered via an immediately canceled incoming call, handled manually by the user.","arguments":[]},{"kind":"class","name":"auth.codeTypeFragmentSms","type":"auth.CodeType","id":116234636,"comment":"The next time, the authentication code will be delivered via fragment.com","arguments":[]},{"kind":"class","name":"auth.sentCodeTypeApp","type":"auth.SentCodeType","id":1035688326,"comment":"The code was sent through the telegram app","arguments":[{"name":"length","type":"int","comment":"Length of the code in bytes"}]},{"kind":"class","name":"auth.sentCodeTypeSms","type":"auth.SentCodeType","id":3221273506,"comment":"The code was sent via SMS","arguments":[{"name":"length","type":"int","comment":"Length of the code in bytes"}]},{"kind":"class","name":"auth.sentCodeTypeCall","type":"auth.SentCodeType","id":1398007207,"comment":"The code will be sent via a phone call: a synthesized voice will tell the user which verification code to input.","arguments":[{"name":"length","type":"int","comment":"Length of the verification code"}]},{"kind":"class","name":"auth.sentCodeTypeFlashCall","type":"auth.SentCodeType","id":2869151449,"comment":"The code will be sent via a flash phone call, that will be closed immediately. The phone code will then be the phone number itself, just make sure that the phone number matches the specified pattern.","arguments":[{"name":"pattern","type":"string","comment":"pattern to match"}]},{"kind":"class","name":"auth.sentCodeTypeMissedCall","type":"auth.SentCodeType","id":2181063812,"comment":"The code will be sent via a flash phone call, that will be closed immediately. The last digits of the phone number that calls are the code that must be entered manually by the user.","arguments":[{"name":"prefix","type":"string","comment":"Prefix of the phone number from which the call will be made"},{"name":"length","type":"int","comment":"Length of the verification code"}]},{"kind":"class","name":"auth.sentCodeTypeEmailCode","type":"auth.SentCodeType","id":4098946459,"comment":"The code was sent via the previously configured login email »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"apple_signin_allowed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether authorization through Apple ID is allowed"},{"name":"google_signin_allowed","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether authorization through Google ID is allowed"},{"name":"email_pattern","type":"string","comment":"Pattern of the email"},{"name":"length","type":"int","comment":"Length of the sent verification code"},{"name":"reset_available_period","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Clients should wait for the specified amount of seconds before allowing the user to invoke {@link auth.RawResetLoginEmailRequest} (will be 0 for Premium users)."},{"name":"reset_pending_date","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"An email reset was already requested, and will occur at the specified date."}]},{"kind":"class","name":"auth.sentCodeTypeSetUpEmailRequired","type":"auth.SentCodeType","id":2773032426,"comment":"The user should add and verify an email address in order to login as described here ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"apple_signin_allowed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether authorization through Apple ID is allowed"},{"name":"google_signin_allowed","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether authorization through Google ID is allowed"}]},{"kind":"class","name":"auth.sentCodeTypeFragmentSms","type":"auth.SentCodeType","id":3646315577,"comment":"The code was delivered via fragment.com.","arguments":[{"name":"url","type":"string","comment":"Open the specified URL to log into fragment.com with the wallet that owns the specified phone number and view the code."},{"name":"length","type":"int","comment":"Length of the delivered code."}]},{"kind":"class","name":"auth.sentCodeTypeFirebaseSms","type":"auth.SentCodeType","id":10475318,"comment":"An authentication code should be delivered via SMS after Firebase attestation, as described in the auth documentation ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"nonce","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"On Android, the nonce to be used as described in the auth documentation »"},{"name":"play_integrity_project_id","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"Google Play Integrity project ID"},{"name":"play_integrity_nonce","type":"bytes","typeModifiers":{"predicate":"flags.2"},"comment":"Play Integrity API nonce"},{"name":"receipt","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"On iOS, must be compared with the receipt extracted from the received push notification."},{"name":"push_timeout","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"On iOS: if a push notification with the ios_push_secret isn't received within push_timeout seconds, the next_type authentication method must be used, with {@link auth.RawResendCodeRequest}."},{"name":"length","type":"int","comment":"Length of the code that will be delivered."}]},{"kind":"class","name":"auth.sentCodeTypeSmsWord","type":"auth.SentCodeType","id":2752949377,"comment":"The code was sent via SMS as a secret word, starting with the letter specified in beginning","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"beginning","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the secret word in the sent SMS (which may contain multiple words) starts with this letter."}]},{"kind":"class","name":"auth.sentCodeTypeSmsPhrase","type":"auth.SentCodeType","id":3010958511,"comment":"The code was sent via SMS as a secret phrase starting with the word specified in beginning","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"beginning","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the secret phrase (and the SMS) starts with this word."}]},{"kind":"class","name":"messages.botCallbackAnswer","type":"messages.BotCallbackAnswer","id":911761060,"comment":"Callback answer sent by the bot in response to a button press","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"alert","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether an alert should be shown to the user instead of a toast notification"},{"name":"has_url","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether an URL is present"},{"name":"native_ui","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether to show games in WebView or in native UI."},{"name":"message","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Alert to show"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"URL to open"},{"name":"cache_time","type":"int","comment":"For how long should this answer be cached"}]},{"kind":"class","name":"messages.messageEditData","type":"messages.MessageEditData","id":649453030,"comment":"Message edit data for media","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"caption","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Media caption, if the specified media's caption can be edited"}]},{"kind":"class","name":"inputBotInlineMessageID","type":"InputBotInlineMessageID","id":2299280777,"comment":"Represents a sent inline message from the perspective of a bot (legacy constructor)","arguments":[{"name":"dc_id","type":"int","comment":"DC ID to use when working with this inline message"},{"name":"id","type":"long","comment":"ID of message, contains both the (32-bit, legacy) owner ID and the message ID, used only for Bot API backwards compatibility with 32-bit user ID."},{"name":"access_hash","type":"long","comment":"Access hash of message"}]},{"kind":"class","name":"inputBotInlineMessageID64","type":"InputBotInlineMessageID","id":3067680215,"comment":"Represents a sent inline message from the perspective of a bot","arguments":[{"name":"dc_id","type":"int","comment":"DC ID to use when working with this inline message"},{"name":"owner_id","type":"long","comment":"ID of the owner of this message"},{"name":"id","type":"int","comment":"ID of message"},{"name":"access_hash","type":"long","comment":"Access hash of message"}]},{"kind":"class","name":"inlineBotSwitchPM","type":"InlineBotSwitchPM","id":1008755359,"comment":"The bot requested the user to message them in private","arguments":[{"name":"text","type":"string","comment":"Text for the button that switches the user to a private chat with the bot and sends the bot a start message with the parameter start_parameter (can be empty)"},{"name":"start_param","type":"string","comment":"The parameter for the /start parameter"}]},{"kind":"class","name":"messages.peerDialogs","type":"messages.PeerDialogs","id":863093588,"comment":"Dialog info of multiple peers","arguments":[{"name":"dialogs","type":"Dialog","typeModifiers":{"isVector":true},"comment":"Dialog info"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"Messages mentioned in dialog info"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"},{"name":"state","type":"updates.State","comment":"Current update state of dialog"}]},{"kind":"class","name":"topPeer","type":"TopPeer","id":3989684315,"comment":"Top peer","arguments":[{"name":"peer","type":"Peer","comment":"Peer"},{"name":"rating","type":"double","comment":"Rating as computed in top peer rating »"}]},{"kind":"class","name":"topPeerCategoryBotsPM","type":"TopPeerCategory","id":2875595611,"comment":"Most used bots","arguments":[]},{"kind":"class","name":"topPeerCategoryBotsInline","type":"TopPeerCategory","id":344356834,"comment":"Most used inline bots","arguments":[]},{"kind":"class","name":"topPeerCategoryCorrespondents","type":"TopPeerCategory","id":104314861,"comment":"Users we've chatted most frequently with","arguments":[]},{"kind":"class","name":"topPeerCategoryGroups","type":"TopPeerCategory","id":3172442442,"comment":"Often-opened groups and supergroups","arguments":[]},{"kind":"class","name":"topPeerCategoryChannels","type":"TopPeerCategory","id":371037736,"comment":"Most frequently visited channels","arguments":[]},{"kind":"class","name":"topPeerCategoryPhoneCalls","type":"TopPeerCategory","id":511092620,"comment":"Most frequently called users","arguments":[]},{"kind":"class","name":"topPeerCategoryForwardUsers","type":"TopPeerCategory","id":2822794409,"comment":"Users to which the users often forwards messages to","arguments":[]},{"kind":"class","name":"topPeerCategoryForwardChats","type":"TopPeerCategory","id":4226728176,"comment":"Chats to which the users often forwards messages to","arguments":[]},{"kind":"class","name":"topPeerCategoryBotsApp","type":"TopPeerCategory","id":4255022060,"comment":"Most frequently used Main Mini Bot Apps.","arguments":[]},{"kind":"class","name":"topPeerCategoryPeers","type":"TopPeerCategoryPeers","id":4219683473,"comment":"Top peer category","arguments":[{"name":"category","type":"TopPeerCategory","comment":"Top peer category of peers"},{"name":"count","type":"int","comment":"Count of peers"},{"name":"peers","type":"TopPeer","typeModifiers":{"isVector":true},"comment":"Peers"}]},{"kind":"class","name":"contacts.topPeersNotModified","type":"contacts.TopPeers","id":3727060725,"comment":"Top peer info hasn't changed","arguments":[]},{"kind":"class","name":"contacts.topPeers","type":"contacts.TopPeers","id":1891070632,"comment":"Top peers","arguments":[{"name":"categories","type":"TopPeerCategoryPeers","typeModifiers":{"isVector":true},"comment":"Top peers by top peer category"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"contacts.topPeersDisabled","type":"contacts.TopPeers","id":3039597469,"comment":"Top peers disabled","arguments":[]},{"kind":"class","name":"draftMessageEmpty","type":"DraftMessage","id":453805082,"comment":"Empty draft","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"When was the draft last updated"}]},{"kind":"class","name":"draftMessage","type":"DraftMessage","id":761606687,"comment":"Represents a message draft.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether no webpage preview will be generated"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.4"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story."},{"name":"message","type":"string","comment":"The draft"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text."},{"name":"media","type":"InputMedia","typeModifiers":{"predicate":"flags.5"},"comment":"Media."},{"name":"date","type":"int","comment":"Date of last update of the draft."},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags.7"},"comment":"A message effect that should be played as specified here »."}]},{"kind":"class","name":"messages.featuredStickersNotModified","type":"messages.FeaturedStickers","id":3336309862,"comment":"Featured stickers haven't changed","arguments":[{"name":"count","type":"int","comment":"Total number of featured stickers"}]},{"kind":"class","name":"messages.featuredStickers","type":"messages.FeaturedStickers","id":3191351558,"comment":"Featured stickersets","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"premium","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a premium stickerset"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"count","type":"int","comment":"Total number of featured stickers"},{"name":"sets","type":"StickerSetCovered","typeModifiers":{"isVector":true},"comment":"Featured stickersets"},{"name":"unread","type":"long","typeModifiers":{"isVector":true},"comment":"IDs of new featured stickersets"}]},{"kind":"class","name":"messages.recentStickersNotModified","type":"messages.RecentStickers","id":186120336,"comment":"No new recent sticker was found","arguments":[]},{"kind":"class","name":"messages.recentStickers","type":"messages.RecentStickers","id":2295561302,"comment":"Recently used stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"packs","type":"StickerPack","typeModifiers":{"isVector":true},"comment":"Emojis associated to stickers"},{"name":"stickers","type":"Document","typeModifiers":{"isVector":true},"comment":"Recent stickers"},{"name":"dates","type":"int","typeModifiers":{"isVector":true},"comment":"When was each sticker last used"}]},{"kind":"class","name":"messages.archivedStickers","type":"messages.ArchivedStickers","id":1338747336,"comment":"Archived stickersets","arguments":[{"name":"count","type":"int","comment":"Number of archived stickers"},{"name":"sets","type":"StickerSetCovered","typeModifiers":{"isVector":true},"comment":"Archived stickersets"}]},{"kind":"class","name":"messages.stickerSetInstallResultSuccess","type":"messages.StickerSetInstallResult","id":946083368,"comment":"The stickerset was installed successfully","arguments":[]},{"kind":"class","name":"messages.stickerSetInstallResultArchive","type":"messages.StickerSetInstallResult","id":904138920,"comment":"The stickerset was installed, but since there are too many stickersets some were archived","arguments":[{"name":"sets","type":"StickerSetCovered","typeModifiers":{"isVector":true},"comment":"Archived stickersets"}]},{"kind":"class","name":"stickerSetCovered","type":"StickerSetCovered","id":1678812626,"comment":"Stickerset with a single sticker as preview","arguments":[{"name":"set","type":"StickerSet","comment":"Stickerset"},{"name":"cover","type":"Document","comment":"Preview"}]},{"kind":"class","name":"stickerSetMultiCovered","type":"StickerSetCovered","id":872932635,"comment":"Stickerset, with multiple stickers as preview","arguments":[{"name":"set","type":"StickerSet","comment":"Stickerset"},{"name":"covers","type":"Document","typeModifiers":{"isVector":true},"comment":"Preview stickers"}]},{"kind":"class","name":"stickerSetFullCovered","type":"StickerSetCovered","id":1087454222,"comment":"Stickerset preview with all stickers of the stickerset included.
\nCurrently used only for custom emoji stickersets, to avoid a further call to {@link messages.RawGetStickerSetRequest}.","arguments":[{"name":"set","type":"StickerSet","comment":"Stickerset"},{"name":"packs","type":"StickerPack","typeModifiers":{"isVector":true},"comment":"Emoji information about every sticker in the stickerset"},{"name":"keywords","type":"StickerKeyword","typeModifiers":{"isVector":true},"comment":"Keywords for some or every sticker in the stickerset."},{"name":"documents","type":"Document","typeModifiers":{"isVector":true},"comment":"Stickers"}]},{"kind":"class","name":"stickerSetNoCovered","type":"StickerSetCovered","id":2008112412,"comment":"Just the stickerset information, with no previews.","arguments":[{"name":"set","type":"StickerSet","comment":"Stickerset information."}]},{"kind":"class","name":"maskCoords","type":"MaskCoords","id":2933316530,"comment":"Position on a photo where a mask should be placed when attaching stickers to media »\n\nThe n position indicates where the mask should be placed:","arguments":[{"name":"n","type":"int","comment":"Part of the face, relative to which the mask should be placed"},{"name":"x","type":"double","comment":"Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just to the left of the default mask position)"},{"name":"y","type":"double","comment":"Shift by Y-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just below the default mask position)"},{"name":"zoom","type":"double","comment":"Mask scaling coefficient. (For example, 2.0 means a doubled size)"}]},{"kind":"class","name":"inputStickeredMediaPhoto","type":"InputStickeredMedia","id":1251549527,"comment":"A photo with stickers attached","arguments":[{"name":"id","type":"InputPhoto","comment":"The photo"}]},{"kind":"class","name":"inputStickeredMediaDocument","type":"InputStickeredMedia","id":70813275,"comment":"A document with stickers attached","arguments":[{"name":"id","type":"InputDocument","comment":"The document"}]},{"kind":"class","name":"game","type":"Game","id":3187238203,"comment":"Indicates an already sent game","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"long","comment":"ID of the game"},{"name":"access_hash","type":"long","comment":"Access hash of the game"},{"name":"short_name","type":"string","comment":"Short name for the game"},{"name":"title","type":"string","comment":"Title of the game"},{"name":"description","type":"string","comment":"Game description"},{"name":"photo","type":"Photo","comment":"Game preview"},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.0"},"comment":"Optional attached document"}]},{"kind":"class","name":"inputGameID","type":"InputGame","id":53231223,"comment":"Indicates an already sent game","arguments":[{"name":"id","type":"long","comment":"game ID from Game constructor"},{"name":"access_hash","type":"long","comment":"access hash from Game constructor"}]},{"kind":"class","name":"inputGameShortName","type":"InputGame","id":3274827786,"comment":"Game by short name","arguments":[{"name":"bot_id","type":"InputUser","comment":"The bot that provides the game"},{"name":"short_name","type":"string","comment":"The game's short name, usually obtained from a game link »"}]},{"kind":"class","name":"highScore","type":"HighScore","id":1940093419,"comment":"Game highscore","arguments":[{"name":"pos","type":"int","comment":"Position in highscore list"},{"name":"user_id","type":"int53","comment":"User ID"},{"name":"score","type":"int","comment":"Score"}]},{"kind":"class","name":"messages.highScores","type":"messages.HighScores","id":2587622809,"comment":"Highscores in a game","arguments":[{"name":"scores","type":"HighScore","typeModifiers":{"isVector":true},"comment":"Highscores"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users, associated to the highscores"}]},{"kind":"class","name":"textEmpty","type":"RichText","id":3695018575,"comment":"Empty rich text element","arguments":[]},{"kind":"class","name":"textPlain","type":"RichText","id":1950782688,"comment":"Plain text","arguments":[{"name":"text","type":"string","comment":"Text"}]},{"kind":"class","name":"textBold","type":"RichText","id":1730456516,"comment":"Bold text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textItalic","type":"RichText","id":3641877916,"comment":"Italic text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textUnderline","type":"RichText","id":3240501956,"comment":"Underlined text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textStrike","type":"RichText","id":2616769429,"comment":"Strikethrough text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textFixed","type":"RichText","id":1816074681,"comment":"fixed-width rich text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textUrl","type":"RichText","id":1009288385,"comment":"Link","arguments":[{"name":"text","type":"RichText","comment":"Text of link"},{"name":"url","type":"string","comment":"Webpage HTTP URL"},{"name":"webpage_id","type":"long","comment":"If a preview was already generated for the page, the page ID"}]},{"kind":"class","name":"textEmail","type":"RichText","id":3730443734,"comment":"Rich text email link","arguments":[{"name":"text","type":"RichText","comment":"Link text"},{"name":"email","type":"string","comment":"Email address"}]},{"kind":"class","name":"textConcat","type":"RichText","id":2120376535,"comment":"Concatenation of rich texts","arguments":[{"name":"texts","type":"RichText","typeModifiers":{"isVector":true},"comment":"Concatenated rich texts"}]},{"kind":"class","name":"textSubscript","type":"RichText","id":3983181060,"comment":"Subscript text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textSuperscript","type":"RichText","id":3355139585,"comment":"Superscript text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textMarked","type":"RichText","id":55281185,"comment":"Highlighted text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textPhone","type":"RichText","id":483104362,"comment":"Rich text linked to a phone number","arguments":[{"name":"text","type":"RichText","comment":"Text"},{"name":"phone","type":"string","comment":"Phone number"}]},{"kind":"class","name":"textImage","type":"RichText","id":136105807,"comment":"Inline image","arguments":[{"name":"document_id","type":"long","comment":"Document ID"},{"name":"w","type":"int","comment":"Width"},{"name":"h","type":"int","comment":"Height"}]},{"kind":"class","name":"textAnchor","type":"RichText","id":894777186,"comment":"Text linking to another section of the page","arguments":[{"name":"text","type":"RichText","comment":"Text"},{"name":"name","type":"string","comment":"Section name"}]},{"kind":"class","name":"pageBlockUnsupported","type":"PageBlock","id":324435594,"comment":"Unsupported IV element","arguments":[]},{"kind":"class","name":"pageBlockTitle","type":"PageBlock","id":1890305021,"comment":"Title","arguments":[{"name":"text","type":"RichText","comment":"Title"}]},{"kind":"class","name":"pageBlockSubtitle","type":"PageBlock","id":2415565343,"comment":"Subtitle","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"pageBlockAuthorDate","type":"PageBlock","id":3132089824,"comment":"Author and date of creation of article","arguments":[{"name":"author","type":"RichText","comment":"Author name"},{"name":"published_date","type":"int","comment":"Date of publication"}]},{"kind":"class","name":"pageBlockHeader","type":"PageBlock","id":3218105580,"comment":"Page header","arguments":[{"name":"text","type":"RichText","comment":"Contents"}]},{"kind":"class","name":"pageBlockSubheader","type":"PageBlock","id":4046173921,"comment":"Subheader","arguments":[{"name":"text","type":"RichText","comment":"Subheader"}]},{"kind":"class","name":"pageBlockParagraph","type":"PageBlock","id":1182402406,"comment":"A paragraph","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"pageBlockPreformatted","type":"PageBlock","id":3228621118,"comment":"Preformatted (
 text)","arguments":[{"name":"text","type":"RichText","comment":"Text"},{"name":"language","type":"string","comment":"Programming language of preformatted text"}]},{"kind":"class","name":"pageBlockFooter","type":"PageBlock","id":1216809369,"comment":"Page footer","arguments":[{"name":"text","type":"RichText","comment":"Contents"}]},{"kind":"class","name":"pageBlockDivider","type":"PageBlock","id":3676352904,"comment":"An empty block separating a page","arguments":[]},{"kind":"class","name":"pageBlockAnchor","type":"PageBlock","id":3456972720,"comment":"Link to section within the page itself (like anchor)","arguments":[{"name":"name","type":"string","comment":"Name of target section"}]},{"kind":"class","name":"pageBlockList","type":"PageBlock","id":3840442385,"comment":"Unordered list of IV blocks","arguments":[{"name":"items","type":"PageListItem","typeModifiers":{"isVector":true},"comment":"List of blocks in an IV page"}]},{"kind":"class","name":"pageBlockBlockquote","type":"PageBlock","id":641563686,"comment":"Quote (equivalent to the HTML 
)","arguments":[{"name":"text","type":"RichText","comment":"Quote contents"},{"name":"caption","type":"RichText","comment":"Caption"}]},{"kind":"class","name":"pageBlockPullquote","type":"PageBlock","id":1329878739,"comment":"Pullquote","arguments":[{"name":"text","type":"RichText","comment":"Text"},{"name":"caption","type":"RichText","comment":"Caption"}]},{"kind":"class","name":"pageBlockPhoto","type":"PageBlock","id":391759200,"comment":"A photo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"photo_id","type":"long","comment":"Photo ID"},{"name":"caption","type":"PageCaption","comment":"Caption"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"HTTP URL of page the photo leads to when clicked"},{"name":"webpage_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"ID of preview of the page the photo leads to when clicked"}]},{"kind":"class","name":"pageBlockVideo","type":"PageBlock","id":2089805750,"comment":"Video","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"autoplay","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the video is set to autoplay"},{"name":"loop","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the video is set to loop"},{"name":"video_id","type":"long","comment":"Video ID"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"pageBlockCover","type":"PageBlock","id":972174080,"comment":"A page cover","arguments":[{"name":"cover","type":"PageBlock","comment":"Cover"}]},{"kind":"class","name":"pageBlockEmbed","type":"PageBlock","id":2826014149,"comment":"An embedded webpage","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"full_width","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the block should be full width"},{"name":"allow_scrolling","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether scrolling should be allowed"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Web page URL, if available"},{"name":"html","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"HTML-markup of the embedded page"},{"name":"poster_photo_id","type":"long","typeModifiers":{"predicate":"flags.4"},"comment":"Poster photo, if available"},{"name":"w","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Block width, if known"},{"name":"h","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Block height, if known"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"pageBlockEmbedPost","type":"PageBlock","id":4065961995,"comment":"An embedded post","arguments":[{"name":"url","type":"string","comment":"Web page URL"},{"name":"webpage_id","type":"long","comment":"ID of generated webpage preview"},{"name":"author_photo_id","type":"long","comment":"ID of the author's photo"},{"name":"author","type":"string","comment":"Author name"},{"name":"date","type":"int","comment":"Creation date"},{"name":"blocks","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Post contents"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"pageBlockCollage","type":"PageBlock","id":1705048653,"comment":"Collage of media","arguments":[{"name":"items","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Media elements"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"pageBlockSlideshow","type":"PageBlock","id":52401552,"comment":"Slideshow","arguments":[{"name":"items","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Slideshow items"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"pageBlockChannel","type":"PageBlock","id":4011282869,"comment":"Reference to a telegram channel","arguments":[{"name":"channel","type":"Chat","comment":"The channel/supergroup/chat"}]},{"kind":"class","name":"pageBlockAudio","type":"PageBlock","id":2151899626,"comment":"Audio","arguments":[{"name":"audio_id","type":"long","comment":"Audio ID (to be fetched from the container {@link RawPage} constructor"},{"name":"caption","type":"PageCaption","comment":"Audio caption"}]},{"kind":"class","name":"pageBlockKicker","type":"PageBlock","id":504660880,"comment":"Kicker","arguments":[{"name":"text","type":"RichText","comment":"Contents"}]},{"kind":"class","name":"pageBlockTable","type":"PageBlock","id":3209554562,"comment":"Table","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bordered","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Does the table have a visible border?"},{"name":"striped","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Is the table striped?"},{"name":"title","type":"RichText","comment":"Title"},{"name":"rows","type":"PageTableRow","typeModifiers":{"isVector":true},"comment":"Table rows"}]},{"kind":"class","name":"pageBlockOrderedList","type":"PageBlock","id":2592793057,"comment":"Ordered list of IV blocks","arguments":[{"name":"items","type":"PageListOrderedItem","typeModifiers":{"isVector":true},"comment":"List items"}]},{"kind":"class","name":"pageBlockDetails","type":"PageBlock","id":1987480557,"comment":"A collapsible details block","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"open","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the block is open by default"},{"name":"blocks","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Block contents"},{"name":"title","type":"RichText","comment":"Always visible heading for the block"}]},{"kind":"class","name":"pageBlockRelatedArticles","type":"PageBlock","id":370236054,"comment":"Related articles","arguments":[{"name":"title","type":"RichText","comment":"Title"},{"name":"articles","type":"PageRelatedArticle","typeModifiers":{"isVector":true},"comment":"Related articles"}]},{"kind":"class","name":"pageBlockMap","type":"PageBlock","id":2756656886,"comment":"A map","arguments":[{"name":"geo","type":"GeoPoint","comment":"Location of the map center"},{"name":"zoom","type":"int","comment":"Map zoom level; 13-20"},{"name":"w","type":"int","comment":"Map width in pixels before applying scale; 16-102"},{"name":"h","type":"int","comment":"Map height in pixels before applying scale; 16-1024"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"phoneCallDiscardReasonMissed","type":"PhoneCallDiscardReason","id":2246320897,"comment":"The phone call was missed","arguments":[]},{"kind":"class","name":"phoneCallDiscardReasonDisconnect","type":"PhoneCallDiscardReason","id":3767910816,"comment":"The phone call was disconnected","arguments":[]},{"kind":"class","name":"phoneCallDiscardReasonHangup","type":"PhoneCallDiscardReason","id":1471006352,"comment":"The phone call was ended normally","arguments":[]},{"kind":"class","name":"phoneCallDiscardReasonBusy","type":"PhoneCallDiscardReason","id":4210550985,"comment":"The phone call was discarded because the user is busy in another call","arguments":[]},{"kind":"class","name":"dataJSON","type":"DataJSON","id":2104790276,"comment":"Represents a json-encoded object","arguments":[{"name":"data","type":"string","comment":"JSON-encoded object"}]},{"kind":"class","name":"labeledPrice","type":"LabeledPrice","id":3408489464,"comment":"This object represents a portion of the price for goods or services.","arguments":[{"name":"label","type":"string","comment":"Portion label"},{"name":"amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"invoice","type":"Invoice","id":1572428309,"comment":"Invoice","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"test","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Test invoice"},{"name":"name_requested","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if you require the user's full name to complete the order"},{"name":"phone_requested","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Set this flag if you require the user's phone number to complete the order"},{"name":"email_requested","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Set this flag if you require the user's email address to complete the order"},{"name":"shipping_address_requested","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Set this flag if you require the user's shipping address to complete the order"},{"name":"flexible","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Set this flag if the final price depends on the shipping method"},{"name":"phone_to_provider","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Set this flag if user's phone number should be sent to provider"},{"name":"email_to_provider","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Set this flag if user's email address should be sent to provider"},{"name":"recurring","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether this is a recurring payment"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"prices","type":"LabeledPrice","typeModifiers":{"isVector":true},"comment":"Price breakdown, a list of components (e.g. product price, tax, discount, delivery cost, delivery tax, bonus, etc.)"},{"name":"max_tip_amount","type":"long","typeModifiers":{"predicate":"flags.8"},"comment":"The maximum accepted amount for tips in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"suggested_tip_amounts","type":"long","typeModifiers":{"predicate":"flags.8","isVector":true},"comment":"A vector of suggested amounts of tips in the smallest units of the currency (integer, not float/double). At most 4 suggested tip amounts can be specified. The suggested tip amounts must be positive, passed in a strictly increased order and must not exceed max_tip_amount."},{"name":"terms_url","type":"string","typeModifiers":{"predicate":"flags.10"},"comment":"Terms of service URL"}]},{"kind":"class","name":"paymentCharge","type":"PaymentCharge","id":3926049406,"comment":"Payment identifier","arguments":[{"name":"id","type":"string","comment":"Telegram payment identifier"},{"name":"provider_charge_id","type":"string","comment":"Provider payment identifier"}]},{"kind":"class","name":"postAddress","type":"PostAddress","id":512535275,"comment":"Shipping address","arguments":[{"name":"street_line1","type":"string","comment":"First line for the address"},{"name":"street_line2","type":"string","comment":"Second line for the address"},{"name":"city","type":"string","comment":"City"},{"name":"state","type":"string","comment":"State, if applicable (empty otherwise)"},{"name":"country_iso2","type":"string","comment":"ISO 3166-1 alpha-2 country code"},{"name":"post_code","type":"string","comment":"Address post code"}]},{"kind":"class","name":"paymentRequestedInfo","type":"PaymentRequestedInfo","id":2426158996,"comment":"Order info provided by the user","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"name","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"User's full name"},{"name":"phone","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"User's phone number"},{"name":"email","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"User's email address"},{"name":"shipping_address","type":"PostAddress","typeModifiers":{"predicate":"flags.3"},"comment":"User's shipping address"}]},{"kind":"class","name":"paymentSavedCredentialsCard","type":"PaymentSavedCredentials","id":3452074527,"comment":"Saved credit card","arguments":[{"name":"id","type":"string","comment":"Card ID"},{"name":"title","type":"string","comment":"Title"}]},{"kind":"class","name":"webDocument","type":"WebDocument","id":475467473,"comment":"Remote document","arguments":[{"name":"url","type":"string","comment":"Document URL"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"size","type":"int","comment":"File size"},{"name":"mime_type","type":"string","comment":"MIME type"},{"name":"attributes","type":"DocumentAttribute","typeModifiers":{"isVector":true},"comment":"Attributes for media types"}]},{"kind":"class","name":"webDocumentNoProxy","type":"WebDocument","id":4190682310,"comment":"Remote document that can be downloaded without proxying through telegram","arguments":[{"name":"url","type":"string","comment":"Document URL"},{"name":"size","type":"int","comment":"File size"},{"name":"mime_type","type":"string","comment":"MIME type"},{"name":"attributes","type":"DocumentAttribute","typeModifiers":{"isVector":true},"comment":"Attributes for media types"}]},{"kind":"class","name":"inputWebDocument","type":"InputWebDocument","id":2616017741,"comment":"The document","arguments":[{"name":"url","type":"string","comment":"Remote document URL to be downloaded using the appropriate method"},{"name":"size","type":"int","comment":"Remote file size"},{"name":"mime_type","type":"string","comment":"Mime type"},{"name":"attributes","type":"DocumentAttribute","typeModifiers":{"isVector":true},"comment":"Attributes for media types"}]},{"kind":"class","name":"inputWebFileLocation","type":"InputWebFileLocation","id":3258570374,"comment":"Location of a remote HTTP(s) file","arguments":[{"name":"url","type":"string","comment":"HTTP URL of file"},{"name":"access_hash","type":"long","comment":"Access hash"}]},{"kind":"class","name":"inputWebFileGeoPointLocation","type":"InputWebFileLocation","id":2669814217,"comment":"Used to download a server-generated image with the map preview from a {@link RawGeoPoint}, see the webfile docs for more info ».","arguments":[{"name":"geo_point","type":"InputGeoPoint","comment":"Generated from the lat, long and accuracy_radius parameters of the {@link RawGeoPoint}"},{"name":"access_hash","type":"long","comment":"Access hash of the {@link RawGeoPoint}"},{"name":"w","type":"int","comment":"Map width in pixels before applying scale; 16-1024"},{"name":"h","type":"int","comment":"Map height in pixels before applying scale; 16-1024"},{"name":"zoom","type":"int","comment":"Map zoom level; 13-20"},{"name":"scale","type":"int","comment":"Map scale; 1-3"}]},{"kind":"class","name":"inputWebFileAudioAlbumThumbLocation","type":"InputWebFileLocation","id":4100974884,"comment":"Used to download an album cover for any music file using {@link upload.RawGetWebFileRequest}, see the webfile docs for more info ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"small","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Used to return a thumbnail with 100x100 resolution (instead of the default 600x600)"},{"name":"document","type":"InputDocument","typeModifiers":{"predicate":"flags.0"},"comment":"The audio file in question: must NOT be provided in secret chats, provide the title and performer fields instead."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Song title: should only be used in secret chats, in normal chats provide document instead, as it has more lax rate limits."},{"name":"performer","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Song performer: should only be used in secret chats, in normal chats provide document instead, as it has more lax rate limits."}]},{"kind":"class","name":"upload.webFile","type":"upload.WebFile","id":568808380,"comment":"Represents a chunk of an HTTP webfile downloaded through telegram's secure MTProto servers","arguments":[{"name":"size","type":"int","comment":"File size"},{"name":"mime_type","type":"string","comment":"Mime type"},{"name":"file_type","type":"storage.FileType","comment":"File type"},{"name":"mtime","type":"int","comment":"Modified time"},{"name":"bytes","type":"bytes","comment":"Data"}]},{"kind":"class","name":"payments.paymentForm","type":"payments.PaymentForm","id":2684716881,"comment":"Payment form","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_save_credentials","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the user can choose to save credentials."},{"name":"password_missing","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Indicates that the user can save payment credentials, but only after setting up a 2FA password (currently the account doesn't have a 2FA password)"},{"name":"form_id","type":"long","comment":"Form ID"},{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"title","type":"string","comment":"Form title"},{"name":"description","type":"string","comment":"Description"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.5"},"comment":"Product photo"},{"name":"invoice","type":"Invoice","comment":"Invoice"},{"name":"provider_id","type":"long","comment":"Payment provider ID."},{"name":"url","type":"string","comment":"Payment form URL"},{"name":"native_provider","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Payment provider name.
One of the following:
- stripe"},{"name":"native_params","type":"DataJSON","typeModifiers":{"predicate":"flags.4"},"comment":"Contains information about the payment provider, if available, to support it natively without the need for opening the URL.
A JSON object that can contain the following fields:

- apple_pay_merchant_id: Apple Pay merchant ID
- google_pay_public_key: Google Pay public key
- need_country: True, if the user country must be provided,
- need_zip: True, if the user ZIP/postal code must be provided,
- need_cardholder_name: True, if the cardholder name must be provided
"},{"name":"additional_methods","type":"PaymentFormMethod","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Additional payment methods"},{"name":"saved_info","type":"PaymentRequestedInfo","typeModifiers":{"predicate":"flags.0"},"comment":"Saved server-side order information"},{"name":"saved_credentials","type":"PaymentSavedCredentials","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Contains information about saved card credentials"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"payments.paymentFormStars","type":"payments.PaymentForm","id":2079764828,"comment":"Represents a payment form, for payments to be using Telegram Stars, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"form_id","type":"long","comment":"Form ID."},{"name":"bot_id","type":"int53","comment":"Bot ID."},{"name":"title","type":"string","comment":"Form title"},{"name":"description","type":"string","comment":"Description"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.5"},"comment":"Product photo"},{"name":"invoice","type":"Invoice","comment":"Invoice"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about users mentioned in the other fields."}]},{"kind":"class","name":"payments.paymentFormStarGift","id":3022376929,"type":"payments.PaymentForm","arguments":[{"name":"form_id","type":"long"},{"name":"invoice","type":"Invoice"}]},{"kind":"class","name":"payments.validatedRequestedInfo","type":"payments.ValidatedRequestedInfo","id":3510966403,"comment":"Validated user-provided info","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"ID"},{"name":"shipping_options","type":"ShippingOption","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Shipping options"}]},{"kind":"class","name":"payments.paymentResult","type":"payments.PaymentResult","id":1314881805,"comment":"Payment result","arguments":[{"name":"updates","type":"Updates","comment":"Info about the payment"}]},{"kind":"class","name":"payments.paymentVerificationNeeded","type":"payments.PaymentResult","id":3628142905,"comment":"Payment was not successful, additional verification is needed","arguments":[{"name":"url","type":"string","comment":"URL for additional payment credentials verification"}]},{"kind":"class","name":"payments.paymentReceipt","type":"payments.PaymentReceipt","id":1891958275,"comment":"Receipt","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"date","type":"int","comment":"Date of generation"},{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"provider_id","type":"long","comment":"Provider ID"},{"name":"title","type":"string","comment":"Title"},{"name":"description","type":"string","comment":"Description"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.2"},"comment":"Photo"},{"name":"invoice","type":"Invoice","comment":"Invoice"},{"name":"info","type":"PaymentRequestedInfo","typeModifiers":{"predicate":"flags.0"},"comment":"Info"},{"name":"shipping","type":"ShippingOption","typeModifiers":{"predicate":"flags.1"},"comment":"Selected shipping option"},{"name":"tip_amount","type":"long","typeModifiers":{"predicate":"flags.3"},"comment":"Tipped amount"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"total_amount","type":"long","comment":"Total amount in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"credentials_title","type":"string","comment":"Payment credential name"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"payments.paymentReceiptStars","type":"payments.PaymentReceipt","id":3669751866,"comment":"Receipt for payment made using Telegram Stars.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"date","type":"int","comment":"Date of generation"},{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"title","type":"string","comment":"Title"},{"name":"description","type":"string","comment":"Description"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.2"},"comment":"Product photo"},{"name":"invoice","type":"Invoice","comment":"Invoice"},{"name":"currency","type":"string","comment":"Currency, always XTR."},{"name":"total_amount","type":"long","comment":"Amount of Telegram Stars."},{"name":"transaction_id","type":"string","comment":"Transaction ID"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about users mentioned in the other fields."}]},{"kind":"class","name":"payments.savedInfo","type":"payments.SavedInfo","id":4220511292,"comment":"Saved server-side order information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_saved_credentials","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the user has some saved payment credentials"},{"name":"saved_info","type":"PaymentRequestedInfo","typeModifiers":{"predicate":"flags.0"},"comment":"Saved server-side order information"}]},{"kind":"class","name":"inputPaymentCredentialsSaved","type":"InputPaymentCredentials","id":3238965967,"comment":"Saved payment credentials","arguments":[{"name":"id","type":"string","comment":"Credential ID"},{"name":"tmp_password","type":"bytes","comment":"Temporary password"}]},{"kind":"class","name":"inputPaymentCredentials","type":"InputPaymentCredentials","id":873977640,"comment":"Payment credentials","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"save","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Save payment credential for future use"},{"name":"data","type":"DataJSON","comment":"Payment credentials"}]},{"kind":"class","name":"inputPaymentCredentialsApplePay","type":"InputPaymentCredentials","id":178373535,"comment":"Apple pay payment credentials","arguments":[{"name":"payment_data","type":"DataJSON","comment":"Payment data"}]},{"kind":"class","name":"inputPaymentCredentialsGooglePay","type":"InputPaymentCredentials","id":2328045569,"comment":"Google Pay payment credentials","arguments":[{"name":"payment_token","type":"DataJSON","comment":"Payment token"}]},{"kind":"class","name":"account.tmpPassword","type":"account.TmpPassword","id":3680828724,"comment":"Temporary payment password","arguments":[{"name":"tmp_password","type":"bytes","comment":"Temporary password"},{"name":"valid_until","type":"int","comment":"Validity period"}]},{"kind":"class","name":"shippingOption","type":"ShippingOption","id":3055631583,"comment":"Shipping option","arguments":[{"name":"id","type":"string","comment":"Option ID"},{"name":"title","type":"string","comment":"Title"},{"name":"prices","type":"LabeledPrice","typeModifiers":{"isVector":true},"comment":"List of price portions"}]},{"kind":"class","name":"inputStickerSetItem","type":"InputStickerSetItem","id":853188252,"comment":"Sticker in a stickerset","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"document","type":"InputDocument","comment":"The sticker"},{"name":"emoji","type":"string","comment":"Associated emoji"},{"name":"mask_coords","type":"MaskCoords","typeModifiers":{"predicate":"flags.0"},"comment":"Coordinates for mask sticker"},{"name":"keywords","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Set of keywords, separated by commas (can't be provided for mask stickers)"}]},{"kind":"class","name":"inputPhoneCall","type":"InputPhoneCall","id":506920429,"comment":"Phone call","arguments":[{"name":"id","type":"long","comment":"Call ID"},{"name":"access_hash","type":"long","comment":"Access hash"}]},{"kind":"class","name":"phoneCallEmpty","type":"PhoneCall","id":1399245077,"comment":"Empty constructor","arguments":[{"name":"id","type":"long","comment":"Call ID"}]},{"kind":"class","name":"phoneCallWaiting","type":"PhoneCall","id":3307368215,"comment":"Incoming phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Is this a video call"},{"name":"id","type":"long","comment":"Call ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"date","type":"int","comment":"Date"},{"name":"admin_id","type":"int53","comment":"Admin ID"},{"name":"participant_id","type":"int53","comment":"Participant ID"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Phone call protocol info"},{"name":"receive_date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"When was the phone call received"}]},{"kind":"class","name":"phoneCallRequested","type":"PhoneCall","id":347139340,"comment":"Requested phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether this is a video call"},{"name":"id","type":"long","comment":"Phone call ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"date","type":"int","comment":"When was the phone call created"},{"name":"admin_id","type":"int53","comment":"ID of the creator of the phone call"},{"name":"participant_id","type":"int53","comment":"ID of the other participant of the phone call"},{"name":"g_a_hash","type":"bytes","comment":"Parameter for key exchange"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Call protocol info to be passed to libtgvoip"}]},{"kind":"class","name":"phoneCallAccepted","type":"PhoneCall","id":912311057,"comment":"An accepted phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether this is a video call"},{"name":"id","type":"long","comment":"ID of accepted phone call"},{"name":"access_hash","type":"long","comment":"Access hash of phone call"},{"name":"date","type":"int","comment":"When was the call accepted"},{"name":"admin_id","type":"int53","comment":"ID of the call creator"},{"name":"participant_id","type":"int53","comment":"ID of the other user in the call"},{"name":"g_b","type":"bytes","comment":"B parameter for secure E2E phone call key exchange"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Protocol to use for phone call"}]},{"kind":"class","name":"phoneCall","type":"PhoneCall","id":810769141,"comment":"Phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"p2p_allowed","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether P2P connection to the other peer is allowed"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether this is a video call"},{"name":"id","type":"long","comment":"Call ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"date","type":"int","comment":"Date of creation of the call"},{"name":"admin_id","type":"int53","comment":"User ID of the creator of the call"},{"name":"participant_id","type":"int53","comment":"User ID of the other participant in the call"},{"name":"g_a_or_b","type":"bytes","comment":"Parameter for key exchange"},{"name":"key_fingerprint","type":"long","comment":"Key fingerprint"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Call protocol info to be passed to libtgvoip"},{"name":"connections","type":"PhoneConnection","typeModifiers":{"isVector":true},"comment":"List of endpoints the user can connect to exchange call data"},{"name":"start_date","type":"int","comment":"When was the call actually started"},{"name":"custom_parameters","type":"DataJSON","typeModifiers":{"predicate":"flags.7"},"comment":"Custom JSON-encoded call parameters to be passed to tgcalls."}]},{"kind":"class","name":"phoneCallDiscarded","type":"PhoneCall","id":1355435489,"comment":"Indicates a discarded phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"need_rating","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the server required the user to {@link phone.RawSetCallRatingRequest} the call"},{"name":"need_debug","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the server required the client to {@link phone.RawSaveCallDebugRequest} the libtgvoip call debug data"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether the call was a video call"},{"name":"id","type":"long","comment":"Call ID"},{"name":"reason","type":"PhoneCallDiscardReason","typeModifiers":{"predicate":"flags.0"},"comment":"Why was the phone call discarded"},{"name":"duration","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Duration of the phone call in seconds"}]},{"kind":"class","name":"phoneConnection","type":"PhoneConnection","id":2629903303,"comment":"Identifies an endpoint that can be used to connect to the other user in a phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"tcp","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether TCP should be used"},{"name":"id","type":"long","comment":"Endpoint ID"},{"name":"ip","type":"string","comment":"IP address of endpoint"},{"name":"ipv6","type":"string","comment":"IPv6 address of endpoint"},{"name":"port","type":"int","comment":"Port ID"},{"name":"peer_tag","type":"bytes","comment":"Our peer tag"}]},{"kind":"class","name":"phoneConnectionWebrtc","type":"PhoneConnection","id":1667228533,"comment":"WebRTC connection parameters","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"turn","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a TURN endpoint"},{"name":"stun","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is a STUN endpoint"},{"name":"id","type":"long","comment":"Endpoint ID"},{"name":"ip","type":"string","comment":"IP address"},{"name":"ipv6","type":"string","comment":"IPv6 address"},{"name":"port","type":"int","comment":"Port"},{"name":"username","type":"string","comment":"Username"},{"name":"password","type":"string","comment":"Password"}]},{"kind":"class","name":"phoneCallProtocol","type":"PhoneCallProtocol","id":4236742600,"comment":"Protocol info for libtgvoip","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"udp_p2p","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow P2P connection to the other participant"},{"name":"udp_reflector","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to allow connection to the other participants through the reflector servers"},{"name":"min_layer","type":"int","comment":"Minimum layer for remote libtgvoip"},{"name":"max_layer","type":"int","comment":"Maximum layer for remote libtgvoip"},{"name":"library_versions","type":"string","typeModifiers":{"isVector":true},"comment":"When using {@link phone.RawRequestCallRequest} and {@link phone.RawAcceptCallRequest}, specify all library versions supported by the client.
The server will merge and choose the best library version supported by both peers, returning only the best value in the result of the callee's {@link phone.RawAcceptCallRequest} and in the {@link RawPhoneCallAccepted} update received by the caller."}]},{"kind":"class","name":"phone.phoneCall","type":"phone.PhoneCall","id":3968000320,"comment":"A VoIP phone call","arguments":[{"name":"phone_call","type":"PhoneCall","comment":"The VoIP phone call"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"VoIP phone call participants"}]},{"kind":"class","name":"upload.cdnFileReuploadNeeded","type":"upload.CdnFile","id":4004045934,"comment":"The file was cleared from the temporary RAM cache of the CDN and has to be re-uploaded.","arguments":[{"name":"request_token","type":"bytes","comment":"Request token (see CDN)"}]},{"kind":"class","name":"upload.cdnFile","type":"upload.CdnFile","id":2845821519,"comment":"Represent a chunk of a CDN file.","arguments":[{"name":"bytes","type":"bytes","comment":"The data"}]},{"kind":"class","name":"cdnPublicKey","type":"CdnPublicKey","id":3380800186,"comment":"Public key to use only during handshakes to CDN DCs.","arguments":[{"name":"dc_id","type":"int","comment":"CDN DC ID"},{"name":"public_key","type":"string","comment":"RSA public key"}]},{"kind":"class","name":"cdnConfig","type":"CdnConfig","id":1462101002,"comment":"Configuration for CDN file downloads.","arguments":[{"name":"public_keys","type":"CdnPublicKey","typeModifiers":{"isVector":true},"comment":"Vector of public keys to use only during handshakes to CDN DCs."}]},{"kind":"class","name":"langPackString","type":"LangPackString","id":3402727926,"comment":"Translated localization string","arguments":[{"name":"key","type":"string","comment":"Language key"},{"name":"value","type":"string","comment":"Value"}]},{"kind":"class","name":"langPackStringPluralized","type":"LangPackString","id":1816636575,"comment":"A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"key","type":"string","comment":"Localization key"},{"name":"zero_value","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Value for zero objects"},{"name":"one_value","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Value for one object"},{"name":"two_value","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Value for two objects"},{"name":"few_value","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Value for a few objects"},{"name":"many_value","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Value for many objects"},{"name":"other_value","type":"string","comment":"Default value"}]},{"kind":"class","name":"langPackStringDeleted","type":"LangPackString","id":695856818,"comment":"Deleted localization string","arguments":[{"name":"key","type":"string","comment":"Localization key"}]},{"kind":"class","name":"langPackDifference","type":"LangPackDifference","id":4085629430,"comment":"Changes to the app's localization pack","arguments":[{"name":"lang_code","type":"string","comment":"Language code"},{"name":"from_version","type":"int","comment":"Previous version number"},{"name":"version","type":"int","comment":"New version number"},{"name":"strings","type":"LangPackString","typeModifiers":{"isVector":true},"comment":"Localized strings"}]},{"kind":"class","name":"langPackLanguage","type":"LangPackLanguage","id":4006239459,"comment":"Identifies a localization pack","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"official","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the language pack is official"},{"name":"rtl","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is this a localization pack for an RTL language"},{"name":"beta","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Is this a beta localization pack?"},{"name":"name","type":"string","comment":"Language name"},{"name":"native_name","type":"string","comment":"Language name in the language itself"},{"name":"lang_code","type":"string","comment":"Language code (pack identifier)"},{"name":"base_lang_code","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of a base language pack; may be empty. If a string is missed in the language pack, then it should be fetched from base language pack. Unsupported in custom language packs"},{"name":"plural_code","type":"string","comment":"A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info"},{"name":"strings_count","type":"int","comment":"Total number of non-deleted strings from the language pack"},{"name":"translated_count","type":"int","comment":"Total number of translated strings from the language pack"},{"name":"translations_url","type":"string","comment":"Link to language translation interface; empty for custom local language packs"}]},{"kind":"class","name":"channelAdminLogEventActionChangeTitle","type":"ChannelAdminLogEventAction","id":3873421349,"comment":"Channel/supergroup title was changed","arguments":[{"name":"prev_value","type":"string","comment":"Previous title"},{"name":"new_value","type":"string","comment":"New title"}]},{"kind":"class","name":"channelAdminLogEventActionChangeAbout","type":"ChannelAdminLogEventAction","id":1427671598,"comment":"The description was changed","arguments":[{"name":"prev_value","type":"string","comment":"Previous description"},{"name":"new_value","type":"string","comment":"New description"}]},{"kind":"class","name":"channelAdminLogEventActionChangeUsername","type":"ChannelAdminLogEventAction","id":1783299128,"comment":"Channel/supergroup username was changed","arguments":[{"name":"prev_value","type":"string","comment":"Old username"},{"name":"new_value","type":"string","comment":"New username"}]},{"kind":"class","name":"channelAdminLogEventActionChangePhoto","type":"ChannelAdminLogEventAction","id":1129042607,"comment":"The channel/supergroup's picture was changed","arguments":[{"name":"prev_photo","type":"Photo","comment":"Previous picture"},{"name":"new_photo","type":"Photo","comment":"New picture"}]},{"kind":"class","name":"channelAdminLogEventActionToggleInvites","type":"ChannelAdminLogEventAction","id":460916654,"comment":"Invites were enabled/disabled","arguments":[{"name":"new_value","type":"Bool","comment":"New value"}]},{"kind":"class","name":"channelAdminLogEventActionToggleSignatures","type":"ChannelAdminLogEventAction","id":648939889,"comment":"Channel signatures were enabled/disabled","arguments":[{"name":"new_value","type":"Bool","comment":"New value"}]},{"kind":"class","name":"channelAdminLogEventActionUpdatePinned","type":"ChannelAdminLogEventAction","id":3924306968,"comment":"A message was pinned","arguments":[{"name":"message","type":"Message","comment":"The message that was pinned"}]},{"kind":"class","name":"channelAdminLogEventActionEditMessage","type":"ChannelAdminLogEventAction","id":1889215493,"comment":"A message was edited","arguments":[{"name":"prev_message","type":"Message","comment":"Old message"},{"name":"new_message","type":"Message","comment":"New message"}]},{"kind":"class","name":"channelAdminLogEventActionDeleteMessage","type":"ChannelAdminLogEventAction","id":1121994683,"comment":"A message was deleted","arguments":[{"name":"message","type":"Message","comment":"The message that was deleted"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantJoin","type":"ChannelAdminLogEventAction","id":405815507,"comment":"A user has joined the group (in the case of big groups, info of the user that has joined isn't shown)","arguments":[]},{"kind":"class","name":"channelAdminLogEventActionParticipantLeave","type":"ChannelAdminLogEventAction","id":4170676210,"comment":"A user left the channel/supergroup (in the case of big groups, info of the user that has joined isn't shown)","arguments":[]},{"kind":"class","name":"channelAdminLogEventActionParticipantInvite","type":"ChannelAdminLogEventAction","id":3810276568,"comment":"A user was invited to the group","arguments":[{"name":"participant","type":"ChannelParticipant","comment":"The user that was invited"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantToggleBan","type":"ChannelAdminLogEventAction","id":3872931198,"comment":"The banned rights of a user were changed","arguments":[{"name":"prev_participant","type":"ChannelParticipant","comment":"Old banned rights of user"},{"name":"new_participant","type":"ChannelParticipant","comment":"New banned rights of user"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantToggleAdmin","type":"ChannelAdminLogEventAction","id":3580323600,"comment":"The admin rights of a user were changed","arguments":[{"name":"prev_participant","type":"ChannelParticipant","comment":"Previous admin rights"},{"name":"new_participant","type":"ChannelParticipant","comment":"New admin rights"}]},{"kind":"class","name":"channelAdminLogEventActionChangeStickerSet","type":"ChannelAdminLogEventAction","id":2982398631,"comment":"The supergroup's stickerset was changed","arguments":[{"name":"prev_stickerset","type":"InputStickerSet","comment":"Previous stickerset"},{"name":"new_stickerset","type":"InputStickerSet","comment":"New stickerset"}]},{"kind":"class","name":"channelAdminLogEventActionTogglePreHistoryHidden","type":"ChannelAdminLogEventAction","id":1599903217,"comment":"The hidden prehistory setting was {@link channels.RawTogglePreHistoryHiddenRequest}","arguments":[{"name":"new_value","type":"Bool","comment":"New value"}]},{"kind":"class","name":"channelAdminLogEventActionDefaultBannedRights","type":"ChannelAdminLogEventAction","id":771095562,"comment":"The default banned rights were modified","arguments":[{"name":"prev_banned_rights","type":"ChatBannedRights","comment":"Previous global banned rights"},{"name":"new_banned_rights","type":"ChatBannedRights","comment":"New global banned rights."}]},{"kind":"class","name":"channelAdminLogEventActionStopPoll","type":"ChannelAdminLogEventAction","id":2399639107,"comment":"A poll was stopped","arguments":[{"name":"message","type":"Message","comment":"The poll that was stopped"}]},{"kind":"class","name":"channelAdminLogEventActionChangeLinkedChat","type":"ChannelAdminLogEventAction","id":84703944,"comment":"The linked chat was changed","arguments":[{"name":"prev_value","type":"int53","comment":"Previous linked chat"},{"name":"new_value","type":"int53","comment":"New linked chat"}]},{"kind":"class","name":"channelAdminLogEventActionChangeLocation","type":"ChannelAdminLogEventAction","id":241923758,"comment":"The geo group location was changed","arguments":[{"name":"prev_value","type":"ChannelLocation","comment":"Previous location"},{"name":"new_value","type":"ChannelLocation","comment":"New location"}]},{"kind":"class","name":"channelAdminLogEventActionToggleSlowMode","type":"ChannelAdminLogEventAction","id":1401984889,"comment":"{@link channels.RawToggleSlowModeRequest}","arguments":[{"name":"prev_value","type":"int","comment":"Previous slow mode value"},{"name":"new_value","type":"int","comment":"New slow mode value"}]},{"kind":"class","name":"channelAdminLogEventActionStartGroupCall","type":"ChannelAdminLogEventAction","id":589338437,"comment":"A group call was started","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call"}]},{"kind":"class","name":"channelAdminLogEventActionDiscardGroupCall","type":"ChannelAdminLogEventAction","id":3684667712,"comment":"A group call was terminated","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call that was terminated"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantMute","type":"ChannelAdminLogEventAction","id":4179895506,"comment":"A group call participant was muted","arguments":[{"name":"participant","type":"GroupCallParticipant","comment":"The participant that was muted"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantUnmute","type":"ChannelAdminLogEventAction","id":3863226816,"comment":"A group call participant was unmuted","arguments":[{"name":"participant","type":"GroupCallParticipant","comment":"The participant that was unmuted"}]},{"kind":"class","name":"channelAdminLogEventActionToggleGroupCallSetting","type":"ChannelAdminLogEventAction","id":1456906823,"comment":"Group call settings were changed","arguments":[{"name":"join_muted","type":"Bool","comment":"Whether all users are muted by default upon joining"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantJoinByInvite","type":"ChannelAdminLogEventAction","id":4271882584,"comment":"A user joined the supergroup/channel using a specific invite link","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_chatlist","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"The participant joined by importing a chat folder deep link »."},{"name":"invite","type":"ExportedChatInvite","comment":"The invite link used to join the supergroup/channel"}]},{"kind":"class","name":"channelAdminLogEventActionExportedInviteDelete","type":"ChannelAdminLogEventAction","id":1515256996,"comment":"A chat invite was deleted","arguments":[{"name":"invite","type":"ExportedChatInvite","comment":"The deleted chat invite"}]},{"kind":"class","name":"channelAdminLogEventActionExportedInviteRevoke","type":"ChannelAdminLogEventAction","id":1091179342,"comment":"A specific invite link was revoked","arguments":[{"name":"invite","type":"ExportedChatInvite","comment":"The invite link that was revoked"}]},{"kind":"class","name":"channelAdminLogEventActionExportedInviteEdit","type":"ChannelAdminLogEventAction","id":3910056793,"comment":"A chat invite was edited","arguments":[{"name":"prev_invite","type":"ExportedChatInvite","comment":"Previous chat invite information"},{"name":"new_invite","type":"ExportedChatInvite","comment":"New chat invite information"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantVolume","type":"ChannelAdminLogEventAction","id":1048537159,"comment":"channelAdminLogEvent.user_id has set the volume of participant.peer to participant.volume","arguments":[{"name":"participant","type":"GroupCallParticipant","comment":"The participant whose volume was changed"}]},{"kind":"class","name":"channelAdminLogEventActionChangeHistoryTTL","type":"ChannelAdminLogEventAction","id":1855199800,"comment":"The Time-To-Live of messages in this chat was changed","arguments":[{"name":"prev_value","type":"int","comment":"Previous value"},{"name":"new_value","type":"int","comment":"New value"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantJoinByRequest","type":"ChannelAdminLogEventAction","id":2947945546,"comment":"A new member was accepted to the chat by an admin","arguments":[{"name":"invite","type":"ExportedChatInvite","comment":"The invite link that was used to join the chat"},{"name":"approved_by","type":"int53","comment":"ID of the admin that approved the invite"}]},{"kind":"class","name":"channelAdminLogEventActionToggleNoForwards","type":"ChannelAdminLogEventAction","id":3408578406,"comment":"Forwards were enabled or disabled","arguments":[{"name":"new_value","type":"Bool","comment":"Old value"}]},{"kind":"class","name":"channelAdminLogEventActionSendMessage","type":"ChannelAdminLogEventAction","id":663693416,"comment":"A message was posted in a channel","arguments":[{"name":"message","type":"Message","comment":"The message that was sent"}]},{"kind":"class","name":"channelAdminLogEventActionChangeAvailableReactions","type":"ChannelAdminLogEventAction","id":3192786680,"comment":"The set of allowed message reactions » for this channel has changed","arguments":[{"name":"prev_value","type":"ChatReactions","comment":"Previously allowed reaction emojis"},{"name":"new_value","type":"ChatReactions","comment":"New allowed reaction emojis"}]},{"kind":"class","name":"channelAdminLogEventActionChangeUsernames","type":"ChannelAdminLogEventAction","id":4031755177,"comment":"The list of usernames associated with the channel was changed","arguments":[{"name":"prev_value","type":"string","typeModifiers":{"isVector":true},"comment":"Previous set of usernames"},{"name":"new_value","type":"string","typeModifiers":{"isVector":true},"comment":"New set of usernames"}]},{"kind":"class","name":"channelAdminLogEventActionToggleForum","type":"ChannelAdminLogEventAction","id":46949251,"comment":"Forum functionality was enabled or disabled.","arguments":[{"name":"new_value","type":"Bool","comment":"Whether forum functionality was enabled or disabled."}]},{"kind":"class","name":"channelAdminLogEventActionCreateTopic","type":"ChannelAdminLogEventAction","id":1483767080,"comment":"A forum topic was created","arguments":[{"name":"topic","type":"ForumTopic","comment":"The forum topic that was created"}]},{"kind":"class","name":"channelAdminLogEventActionEditTopic","type":"ChannelAdminLogEventAction","id":4033864200,"comment":"A forum topic was edited","arguments":[{"name":"prev_topic","type":"ForumTopic","comment":"Previous topic information"},{"name":"new_topic","type":"ForumTopic","comment":"New topic information"}]},{"kind":"class","name":"channelAdminLogEventActionDeleteTopic","type":"ChannelAdminLogEventAction","id":2920712457,"comment":"A forum topic was deleted","arguments":[{"name":"topic","type":"ForumTopic","comment":"The forum topic that was deleted"}]},{"kind":"class","name":"channelAdminLogEventActionPinTopic","type":"ChannelAdminLogEventAction","id":1569535291,"comment":"A forum topic was pinned or unpinned","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"prev_topic","type":"ForumTopic","typeModifiers":{"predicate":"flags.0"},"comment":"Previous topic information"},{"name":"new_topic","type":"ForumTopic","typeModifiers":{"predicate":"flags.1"},"comment":"New topic information"}]},{"kind":"class","name":"channelAdminLogEventActionToggleAntiSpam","type":"ChannelAdminLogEventAction","id":1693675004,"comment":"Native antispam functionality was enabled or disabled.","arguments":[{"name":"new_value","type":"Bool","comment":"Whether antispam functionality was enabled or disabled."}]},{"kind":"class","name":"channelAdminLogEventActionChangePeerColor","type":"ChannelAdminLogEventAction","id":1469507456,"comment":"The message accent color was changed","arguments":[{"name":"prev_value","type":"PeerColor","comment":"Previous accent palette"},{"name":"new_value","type":"PeerColor","comment":"New accent palette"}]},{"kind":"class","name":"channelAdminLogEventActionChangeProfilePeerColor","type":"ChannelAdminLogEventAction","id":1581742885,"comment":"The profile accent color was changed","arguments":[{"name":"prev_value","type":"PeerColor","comment":"Previous accent palette"},{"name":"new_value","type":"PeerColor","comment":"New accent palette"}]},{"kind":"class","name":"channelAdminLogEventActionChangeWallpaper","type":"ChannelAdminLogEventAction","id":834362706,"comment":"The wallpaper was changed","arguments":[{"name":"prev_value","type":"WallPaper","comment":"Previous wallpaper"},{"name":"new_value","type":"WallPaper","comment":"New wallpaper"}]},{"kind":"class","name":"channelAdminLogEventActionChangeEmojiStatus","type":"ChannelAdminLogEventAction","id":1051328177,"comment":"The emoji status was changed","arguments":[{"name":"prev_value","type":"EmojiStatus","comment":"Previous emoji status"},{"name":"new_value","type":"EmojiStatus","comment":"New emoji status"}]},{"kind":"class","name":"channelAdminLogEventActionChangeEmojiStickerSet","type":"ChannelAdminLogEventAction","id":1188577451,"comment":"The supergroup's custom emoji stickerset was changed.","arguments":[{"name":"prev_stickerset","type":"InputStickerSet","comment":"Old value"},{"name":"new_stickerset","type":"InputStickerSet","comment":"New value"}]},{"kind":"class","name":"channelAdminLogEventActionToggleSignatureProfiles","type":"ChannelAdminLogEventAction","id":1621597305,"arguments":[{"name":"new_value","type":"Bool"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantSubExtend","type":"ChannelAdminLogEventAction","id":1684286899,"arguments":[{"name":"prev_participant","type":"ChannelParticipant"},{"name":"new_participant","type":"ChannelParticipant"}]},{"kind":"class","name":"channelAdminLogEvent","type":"ChannelAdminLogEvent","id":531458253,"comment":"Admin log event","arguments":[{"name":"id","type":"long","comment":"Event ID"},{"name":"date","type":"int","comment":"Date"},{"name":"user_id","type":"int53","comment":"User ID"},{"name":"action","type":"ChannelAdminLogEventAction","comment":"Action"}]},{"kind":"class","name":"channels.adminLogResults","type":"channels.AdminLogResults","id":3985307469,"comment":"Admin log events","arguments":[{"name":"events","type":"ChannelAdminLogEvent","typeModifiers":{"isVector":true},"comment":"Admin log events"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in events"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in events"}]},{"kind":"class","name":"channelAdminLogEventsFilter","type":"ChannelAdminLogEventsFilter","id":3926948580,"comment":"Filter only certain admin log events","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"join","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"{@link RawChannelAdminLogEventActionParticipantJoin}, including {@link RawChannelAdminLogEventActionParticipantJoinByInvite} and {@link RawChannelAdminLogEventActionParticipantJoinByRequest}."},{"name":"leave","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"{@link RawChannelAdminLogEventActionParticipantLeave}"},{"name":"invite","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"{@link RawChannelAdminLogEventActionParticipantInvite}"},{"name":"ban","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleBan}"},{"name":"unban","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleBan}"},{"name":"kick","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleBan}"},{"name":"unkick","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleBan}"},{"name":"promote","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleAdmin}"},{"name":"demote","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleAdmin}"},{"name":"info","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Info change events (when {@link RawChannelAdminLogEventActionChangeAbout}, {@link RawChannelAdminLogEventActionChangeLinkedChat}, {@link RawChannelAdminLogEventActionChangeLocation}, {@link RawChannelAdminLogEventActionChangePhoto}, {@link RawChannelAdminLogEventActionChangeStickerSet}, {@link RawChannelAdminLogEventActionChangeTitle} or {@link RawChannelAdminLogEventActionChangeUsername}, {@link RawChannelAdminLogEventActionToggleSlowMode}, {@link RawChannelAdminLogEventActionChangeHistoryTTL} settings of a channel gets modified)"},{"name":"settings","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Settings change events ({@link RawChannelAdminLogEventActionToggleInvites}, {@link RawChannelAdminLogEventActionTogglePreHistoryHidden}, {@link RawChannelAdminLogEventActionToggleSignatures}, {@link RawChannelAdminLogEventActionDefaultBannedRights}, {@link RawChannelAdminLogEventActionToggleForum})"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"{@link RawChannelAdminLogEventActionUpdatePinned}"},{"name":"edit","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"{@link RawChannelAdminLogEventActionEditMessage}"},{"name":"delete","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"{@link RawChannelAdminLogEventActionDeleteMessage}"},{"name":"group_call","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Group call events"},{"name":"invites","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Invite events"},{"name":"send","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"A message was posted in a channel"},{"name":"forums","type":"true","typeModifiers":{"predicate":"flags.17"},"comment":"Forum-related events"},{"name":"sub_extend","type":"true","typeModifiers":{"predicate":"flags.18"}}]},{"kind":"class","name":"popularContact","type":"PopularContact","id":1558266229,"comment":"Popular contact","arguments":[{"name":"client_id","type":"long","comment":"Contact identifier"},{"name":"importers","type":"int","comment":"How many people imported this contact"}]},{"kind":"class","name":"messages.favedStickersNotModified","type":"messages.FavedStickers","id":2660214483,"comment":"No new favorited stickers were found","arguments":[]},{"kind":"class","name":"messages.favedStickers","type":"messages.FavedStickers","id":750063767,"comment":"Favorited stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"packs","type":"StickerPack","typeModifiers":{"isVector":true},"comment":"Emojis associated to stickers"},{"name":"stickers","type":"Document","typeModifiers":{"isVector":true},"comment":"Favorited stickers"}]},{"kind":"class","name":"recentMeUrlUnknown","type":"RecentMeUrl","id":1189204285,"comment":"Unknown t.me url","arguments":[{"name":"url","type":"string","comment":"URL"}]},{"kind":"class","name":"recentMeUrlUser","type":"RecentMeUrl","id":3106671074,"comment":"Recent t.me link to a user","arguments":[{"name":"url","type":"string","comment":"URL"},{"name":"user_id","type":"int53","comment":"User ID"}]},{"kind":"class","name":"recentMeUrlChat","type":"RecentMeUrl","id":3000660434,"comment":"Recent t.me link to a chat","arguments":[{"name":"url","type":"string","comment":"t.me URL"},{"name":"chat_id","type":"int53","comment":"Chat ID"}]},{"kind":"class","name":"recentMeUrlChatInvite","type":"RecentMeUrl","id":3947431965,"comment":"Recent t.me invite link to a chat","arguments":[{"name":"url","type":"string","comment":"t.me URL"},{"name":"chat_invite","type":"ChatInvite","comment":"Chat invitation"}]},{"kind":"class","name":"recentMeUrlStickerSet","type":"RecentMeUrl","id":3154794460,"comment":"Recent t.me stickerset installation URL","arguments":[{"name":"url","type":"string","comment":"t.me URL"},{"name":"set","type":"StickerSetCovered","comment":"Stickerset"}]},{"kind":"class","name":"help.recentMeUrls","type":"help.RecentMeUrls","id":235081943,"comment":"Recent t.me URLs","arguments":[{"name":"urls","type":"RecentMeUrl","typeModifiers":{"isVector":true},"comment":"URLs"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"inputSingleMedia","type":"InputSingleMedia","id":482797855,"comment":"A single media in an album or grouped media sent with {@link messages.RawSendMultiMediaRequest}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"media","type":"InputMedia","comment":"The media"},{"name":"random_id","type":"long","comment":"Unique client media ID required to prevent message resending"},{"name":"message","type":"string","comment":"A caption for the media"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Message entities for styled text"}]},{"kind":"class","name":"webAuthorization","type":"WebAuthorization","id":2801333330,"comment":"Represents a bot logged in using the Telegram login widget","arguments":[{"name":"hash","type":"long","comment":"Authorization hash"},{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"domain","type":"string","comment":"The domain name of the website on which the user has logged in."},{"name":"browser","type":"string","comment":"Browser user-agent"},{"name":"platform","type":"string","comment":"Platform"},{"name":"date_created","type":"int","comment":"When was the web session created"},{"name":"date_active","type":"int","comment":"When was the web session last active"},{"name":"ip","type":"string","comment":"IP address"},{"name":"region","type":"string","comment":"Region, determined from IP address"}]},{"kind":"class","name":"account.webAuthorizations","type":"account.WebAuthorizations","id":3981887996,"comment":"Web authorizations","arguments":[{"name":"authorizations","type":"WebAuthorization","typeModifiers":{"isVector":true},"comment":"Web authorization list"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"inputMessageID","type":"InputMessage","id":2792792866,"comment":"Message by ID","arguments":[{"name":"id","type":"int","comment":"Message ID"}]},{"kind":"class","name":"inputMessageReplyTo","type":"InputMessage","id":3134751637,"comment":"Message to which the specified message replies to","arguments":[{"name":"id","type":"int","comment":"ID of the message that replies to the message we need"}]},{"kind":"class","name":"inputMessagePinned","type":"InputMessage","id":2257003832,"comment":"Pinned message","arguments":[]},{"kind":"class","name":"inputMessageCallbackQuery","type":"InputMessage","id":2902071934,"comment":"Used by bots for fetching information about the message that originated a callback query","arguments":[{"name":"id","type":"int","comment":"Message ID"},{"name":"query_id","type":"long","comment":"Callback query ID"}]},{"kind":"class","name":"inputDialogPeer","type":"InputDialogPeer","id":4239064759,"comment":"A peer","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"}]},{"kind":"class","name":"inputDialogPeerFolder","type":"InputDialogPeer","id":1684014375,"comment":"All peers in a peer folder","arguments":[{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"}]},{"kind":"class","name":"dialogPeer","type":"DialogPeer","id":3849174789,"comment":"Peer","arguments":[{"name":"peer","type":"Peer","comment":"Peer"}]},{"kind":"class","name":"dialogPeerFolder","type":"DialogPeer","id":1363483106,"comment":"Peer folder","arguments":[{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"}]},{"kind":"class","name":"messages.foundStickerSetsNotModified","type":"messages.FoundStickerSets","id":223655517,"comment":"No further results were found","arguments":[]},{"kind":"class","name":"messages.foundStickerSets","type":"messages.FoundStickerSets","id":2331024850,"comment":"Found stickersets","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"sets","type":"StickerSetCovered","typeModifiers":{"isVector":true},"comment":"Found stickersets"}]},{"kind":"class","name":"fileHash","type":"FileHash","id":4087022428,"comment":"SHA256 Hash of an uploaded file, to be checked for validity after download","arguments":[{"name":"offset","type":"int53","comment":"Offset from where to start computing SHA-256 hash"},{"name":"limit","type":"int","comment":"Length"},{"name":"hash","type":"bytes","comment":"SHA-256 Hash of file chunk, to be checked for validity after download"}]},{"kind":"class","name":"inputClientProxy","type":"InputClientProxy","id":1968737087,"comment":"Info about an MTProxy used to connect.","arguments":[{"name":"address","type":"string","comment":"Proxy address"},{"name":"port","type":"int","comment":"Proxy port"}]},{"kind":"class","name":"help.termsOfServiceUpdateEmpty","type":"help.TermsOfServiceUpdate","id":3811614591,"comment":"No changes were made to telegram's terms of service","arguments":[{"name":"expires","type":"int","comment":"New TOS updates will have to be queried using {@link help.RawGetTermsOfServiceUpdateRequest} in expires seconds"}]},{"kind":"class","name":"help.termsOfServiceUpdate","type":"help.TermsOfServiceUpdate","id":686618977,"comment":"Info about an update of telegram's terms of service. If the terms of service are declined, then the {@link account.RawDeleteAccountRequest} method should be called with the reason \"Decline ToS update\"","arguments":[{"name":"expires","type":"int","comment":"New TOS updates will have to be queried using {@link help.RawGetTermsOfServiceUpdateRequest} in expires seconds"},{"name":"terms_of_service","type":"help.TermsOfService","comment":"New terms of service"}]},{"kind":"class","name":"inputSecureFileUploaded","type":"InputSecureFile","id":859091184,"comment":"Uploaded secure file, for more info see the passport docs »","arguments":[{"name":"id","type":"long","comment":"Secure file ID"},{"name":"parts","type":"int","comment":"Secure file part count"},{"name":"md5_checksum","type":"string","comment":"MD5 hash of encrypted uploaded file, to be checked server-side"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"secret","type":"bytes","comment":"Secret"}]},{"kind":"class","name":"inputSecureFile","type":"InputSecureFile","id":1399317950,"comment":"Pre-uploaded passport file, for more info see the passport docs »","arguments":[{"name":"id","type":"long","comment":"Secure file ID"},{"name":"access_hash","type":"long","comment":"Secure file access hash"}]},{"kind":"class","name":"secureFileEmpty","type":"SecureFile","id":1679398724,"comment":"Empty constructor","arguments":[]},{"kind":"class","name":"secureFile","type":"SecureFile","id":2097791614,"comment":"Secure passport file, for more info see the passport docs »","arguments":[{"name":"id","type":"long","comment":"ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"size","type":"int53","comment":"File size"},{"name":"dc_id","type":"int","comment":"DC ID"},{"name":"date","type":"int","comment":"Date of upload"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"secret","type":"bytes","comment":"Secret"}]},{"kind":"class","name":"secureData","type":"SecureData","id":2330640067,"comment":"Secure passport data, for more info see the passport docs »","arguments":[{"name":"data","type":"bytes","comment":"Data"},{"name":"data_hash","type":"bytes","comment":"Data hash"},{"name":"secret","type":"bytes","comment":"Secret"}]},{"kind":"class","name":"securePlainPhone","type":"SecurePlainData","id":2103482845,"comment":"Phone number to use in telegram passport: it must be verified, first ».","arguments":[{"name":"phone","type":"string","comment":"Phone number"}]},{"kind":"class","name":"securePlainEmail","type":"SecurePlainData","id":569137759,"comment":"Email address to use in telegram passport: it must be verified, first ».","arguments":[{"name":"email","type":"string","comment":"Email address"}]},{"kind":"class","name":"secureValueTypePersonalDetails","type":"SecureValueType","id":2636808675,"comment":"Personal details","arguments":[]},{"kind":"class","name":"secureValueTypePassport","type":"SecureValueType","id":1034709504,"comment":"Passport","arguments":[]},{"kind":"class","name":"secureValueTypeDriverLicense","type":"SecureValueType","id":115615172,"comment":"Driver's license","arguments":[]},{"kind":"class","name":"secureValueTypeIdentityCard","type":"SecureValueType","id":2698015819,"comment":"Identity card","arguments":[]},{"kind":"class","name":"secureValueTypeInternalPassport","type":"SecureValueType","id":2577698595,"comment":"Internal passport","arguments":[]},{"kind":"class","name":"secureValueTypeAddress","type":"SecureValueType","id":3420659238,"comment":"Address","arguments":[]},{"kind":"class","name":"secureValueTypeUtilityBill","type":"SecureValueType","id":4231435598,"comment":"Utility bill","arguments":[]},{"kind":"class","name":"secureValueTypeBankStatement","type":"SecureValueType","id":2299755533,"comment":"Bank statement","arguments":[]},{"kind":"class","name":"secureValueTypeRentalAgreement","type":"SecureValueType","id":2340959368,"comment":"Rental agreement","arguments":[]},{"kind":"class","name":"secureValueTypePassportRegistration","type":"SecureValueType","id":2581823594,"comment":"Internal registration passport","arguments":[]},{"kind":"class","name":"secureValueTypeTemporaryRegistration","type":"SecureValueType","id":3926060083,"comment":"Temporary registration","arguments":[]},{"kind":"class","name":"secureValueTypePhone","type":"SecureValueType","id":3005262555,"comment":"Phone","arguments":[]},{"kind":"class","name":"secureValueTypeEmail","type":"SecureValueType","id":2386339822,"comment":"Email","arguments":[]},{"kind":"class","name":"secureValue","type":"SecureValue","id":411017418,"comment":"Secure value","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"type","type":"SecureValueType","comment":"Secure passport value type"},{"name":"data","type":"SecureData","typeModifiers":{"predicate":"flags.0"},"comment":"Encrypted Telegram Passport element data"},{"name":"front_side","type":"SecureFile","typeModifiers":{"predicate":"flags.1"},"comment":"Encrypted passport file with the front side of the document"},{"name":"reverse_side","type":"SecureFile","typeModifiers":{"predicate":"flags.2"},"comment":"Encrypted passport file with the reverse side of the document"},{"name":"selfie","type":"SecureFile","typeModifiers":{"predicate":"flags.3"},"comment":"Encrypted passport file with a selfie of the user holding the document"},{"name":"translation","type":"SecureFile","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Array of encrypted passport files with translated versions of the provided documents"},{"name":"files","type":"SecureFile","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Array of encrypted passport files with photos the of the documents"},{"name":"plain_data","type":"SecurePlainData","typeModifiers":{"predicate":"flags.5"},"comment":"Plaintext verified passport data"},{"name":"hash","type":"bytes","comment":"Data hash"}]},{"kind":"class","name":"inputSecureValue","type":"InputSecureValue","id":3676426407,"comment":"Secure value, for more info see the passport docs »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"type","type":"SecureValueType","comment":"Secure passport value type"},{"name":"data","type":"SecureData","typeModifiers":{"predicate":"flags.0"},"comment":"Encrypted Telegram Passport element data"},{"name":"front_side","type":"InputSecureFile","typeModifiers":{"predicate":"flags.1"},"comment":"Encrypted passport file with the front side of the document"},{"name":"reverse_side","type":"InputSecureFile","typeModifiers":{"predicate":"flags.2"},"comment":"Encrypted passport file with the reverse side of the document"},{"name":"selfie","type":"InputSecureFile","typeModifiers":{"predicate":"flags.3"},"comment":"Encrypted passport file with a selfie of the user holding the document"},{"name":"translation","type":"InputSecureFile","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Array of encrypted passport files with translated versions of the provided documents"},{"name":"files","type":"InputSecureFile","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Array of encrypted passport files with photos the of the documents"},{"name":"plain_data","type":"SecurePlainData","typeModifiers":{"predicate":"flags.5"},"comment":"Plaintext verified passport data"}]},{"kind":"class","name":"secureValueHash","type":"SecureValueHash","id":3978218928,"comment":"Secure value hash","arguments":[{"name":"type","type":"SecureValueType","comment":"Secure value type"},{"name":"hash","type":"bytes","comment":"Hash"}]},{"kind":"class","name":"secureValueErrorData","type":"SecureValueError","id":3903065049,"comment":"Represents an issue in one of the data fields that was provided by the user. The error is considered resolved when the field's value changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"The section of the user's Telegram Passport which has the error, one of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeAddress}"},{"name":"data_hash","type":"bytes","comment":"Data hash"},{"name":"field","type":"string","comment":"Name of the data field which has the error"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorFrontSide","type":"SecureValueError","id":12467706,"comment":"Represents an issue with the front side of a document. The error is considered resolved when the file with the front side of the document changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorReverseSide","type":"SecureValueError","id":2257201829,"comment":"Represents an issue with the reverse side of a document. The error is considered resolved when the file with reverse side of the document changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorSelfie","type":"SecureValueError","id":3845639894,"comment":"Represents an issue with the selfie with a document. The error is considered resolved when the file with the selfie changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorFile","type":"SecureValueError","id":2054162547,"comment":"Represents an issue with a document scan. The error is considered resolved when the file with the document scan changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorFiles","type":"SecureValueError","id":1717706985,"comment":"Represents an issue with a list of scans. The error is considered resolved when the list of files containing the scans changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}"},{"name":"file_hash","type":"bytes","typeModifiers":{"isVector":true},"comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueError","type":"SecureValueError","id":2258466191,"comment":"Secure value error","arguments":[{"name":"type","type":"SecureValueType","comment":"Type of element which has the issue"},{"name":"hash","type":"bytes","comment":"Hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorTranslationFile","type":"SecureValueError","id":2702460784,"comment":"Represents an issue with one of the files that constitute the translation of a document. The error is considered resolved when the file changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorTranslationFiles","type":"SecureValueError","id":878931416,"comment":"Represents an issue with the translated version of a document. The error is considered resolved when a file with the document translation changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}"},{"name":"file_hash","type":"bytes","typeModifiers":{"isVector":true},"comment":"Hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureCredentialsEncrypted","type":"SecureCredentialsEncrypted","id":871426631,"comment":"Encrypted credentials required to decrypt telegram passport data.","arguments":[{"name":"data","type":"bytes","comment":"Encrypted JSON-serialized data with unique user's payload, data hashes and secrets required for EncryptedPassportElement decryption and authentication, as described in decrypting data »"},{"name":"hash","type":"bytes","comment":"Data hash for data authentication as described in decrypting data »"},{"name":"secret","type":"bytes","comment":"Secret, encrypted with the bot's public RSA key, required for data decryption as described in decrypting data »"}]},{"kind":"class","name":"account.authorizationForm","type":"account.AuthorizationForm","id":2905480408,"comment":"Telegram Passport authorization form","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"required_types","type":"SecureRequiredType","typeModifiers":{"isVector":true},"comment":"Required Telegram Passport documents"},{"name":"values","type":"SecureValue","typeModifiers":{"isVector":true},"comment":"Already submitted Telegram Passport documents"},{"name":"errors","type":"SecureValueError","typeModifiers":{"isVector":true},"comment":"Telegram Passport errors"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about the bot to which the form will be submitted"},{"name":"privacy_policy_url","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"URL of the service's privacy policy"}]},{"kind":"class","name":"account.sentEmailCode","type":"account.SentEmailCode","id":2166326607,"comment":"The sent email code","arguments":[{"name":"email_pattern","type":"string","comment":"The email (to which the code was sent) must match this pattern"},{"name":"length","type":"int","comment":"The length of the verification code"}]},{"kind":"class","name":"help.deepLinkInfoEmpty","type":"help.DeepLinkInfo","id":1722786150,"comment":"Deep link info empty","arguments":[]},{"kind":"class","name":"help.deepLinkInfo","type":"help.DeepLinkInfo","id":1783556146,"comment":"Deep link info, see the here for more details","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"update_app","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"An update of the app is required to parse this link"},{"name":"message","type":"string","comment":"Message to show to the user"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"}]},{"kind":"class","name":"savedPhoneContact","type":"SavedContact","id":289586518,"comment":"Saved contact","arguments":[{"name":"phone","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"First name"},{"name":"last_name","type":"string","comment":"Last name"},{"name":"date","type":"int","comment":"Date added"}]},{"kind":"class","name":"account.takeout","type":"account.Takeout","id":1304052993,"comment":"Takeout info","arguments":[{"name":"id","type":"long","comment":"Takeout ID"}]},{"kind":"class","name":"passwordKdfAlgoUnknown","type":"PasswordKdfAlgo","id":3562713238,"comment":"Unknown KDF (most likely, the client is outdated and does not support the specified KDF algorithm)","arguments":[]},{"kind":"class","name":"passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow","type":"PasswordKdfAlgo","id":982592842,"comment":"This key derivation algorithm defines that SRP 2FA login must be used","arguments":[{"name":"salt1","type":"bytes","comment":"One of two salts used by the derivation function (see SRP 2FA login)"},{"name":"salt2","type":"bytes","comment":"One of two salts used by the derivation function (see SRP 2FA login)"},{"name":"g","type":"int","comment":"Base (see SRP 2FA login)"},{"name":"p","type":"bytes","comment":"2048-bit modulus (see SRP 2FA login)"}]},{"kind":"class","name":"securePasswordKdfAlgoUnknown","type":"SecurePasswordKdfAlgo","id":4883767,"comment":"Unknown KDF algo (most likely the client has to be updated)","arguments":[]},{"kind":"class","name":"securePasswordKdfAlgoPBKDF2HMACSHA512iter100000","type":"SecurePasswordKdfAlgo","id":3153255840,"comment":"PBKDF2 with SHA512 and 100000 iterations KDF algo","arguments":[{"name":"salt","type":"bytes","comment":"Salt"}]},{"kind":"class","name":"securePasswordKdfAlgoSHA512","type":"SecurePasswordKdfAlgo","id":2252807570,"comment":"SHA512 KDF algo","arguments":[{"name":"salt","type":"bytes","comment":"Salt"}]},{"kind":"class","name":"secureSecretSettings","type":"SecureSecretSettings","id":354925740,"comment":"Secure settings","arguments":[{"name":"secure_algo","type":"SecurePasswordKdfAlgo","comment":"Secure KDF algo"},{"name":"secure_secret","type":"bytes","comment":"Secure secret"},{"name":"secure_secret_id","type":"long","comment":"Secret ID"}]},{"kind":"class","name":"inputCheckPasswordEmpty","type":"InputCheckPasswordSRP","id":2558588504,"comment":"There is no password","arguments":[]},{"kind":"class","name":"inputCheckPasswordSRP","type":"InputCheckPasswordSRP","id":3531600002,"comment":"Constructor for checking the validity of a 2FA SRP password (see SRP)","arguments":[{"name":"srp_id","type":"long","comment":"SRP ID"},{"name":"A","type":"bytes","comment":"A parameter (see SRP)"},{"name":"M1","type":"bytes","comment":"M1 parameter (see SRP)"}]},{"kind":"class","name":"secureRequiredType","type":"SecureRequiredType","id":2191366618,"comment":"Required type","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"native_names","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Native names"},{"name":"selfie_required","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Is a selfie required"},{"name":"translation_required","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is a translation required"},{"name":"type","type":"SecureValueType","comment":"Secure value type"}]},{"kind":"class","name":"secureRequiredTypeOneOf","type":"SecureRequiredType","id":41187252,"comment":"One of","arguments":[{"name":"types","type":"SecureRequiredType","typeModifiers":{"isVector":true},"comment":"Secure required value types"}]},{"kind":"class","name":"help.passportConfigNotModified","type":"help.PassportConfig","id":3216634967,"comment":"Password configuration not modified","arguments":[]},{"kind":"class","name":"help.passportConfig","type":"help.PassportConfig","id":2694370991,"comment":"Telegram passport configuration","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"countries_langs","type":"DataJSON","comment":"Localization"}]},{"kind":"class","name":"inputAppEvent","type":"InputAppEvent","id":488313413,"comment":"Event that occurred in the application.","arguments":[{"name":"time","type":"double","comment":"Client's exact timestamp for the event"},{"name":"type","type":"string","comment":"Type of event"},{"name":"peer","type":"long","comment":"Arbitrary numeric value for more convenient selection of certain event types, or events referring to a certain object"},{"name":"data","type":"JSONValue","comment":"Details of the event"}]},{"kind":"class","name":"jsonObjectValue","type":"JSONObjectValue","id":3235781593,"comment":"JSON key: value pair","arguments":[{"name":"key","type":"string","comment":"Key"},{"name":"value","type":"JSONValue","comment":"Value"}]},{"kind":"class","name":"jsonNull","type":"JSONValue","id":1064139624,"comment":"null JSON value","arguments":[]},{"kind":"class","name":"jsonBool","type":"JSONValue","id":3342098026,"comment":"JSON boolean value","arguments":[{"name":"value","type":"Bool","comment":"Value"}]},{"kind":"class","name":"jsonNumber","type":"JSONValue","id":736157604,"comment":"JSON numeric value","arguments":[{"name":"value","type":"double","comment":"Value"}]},{"kind":"class","name":"jsonString","type":"JSONValue","id":3072226938,"comment":"JSON string","arguments":[{"name":"value","type":"string","comment":"Value"}]},{"kind":"class","name":"jsonArray","type":"JSONValue","id":4148447075,"comment":"JSON array","arguments":[{"name":"value","type":"JSONValue","typeModifiers":{"isVector":true},"comment":"JSON values"}]},{"kind":"class","name":"jsonObject","type":"JSONValue","id":2579616925,"comment":"JSON object value","arguments":[{"name":"value","type":"JSONObjectValue","typeModifiers":{"isVector":true},"comment":"Values"}]},{"kind":"class","name":"pageTableCell","type":"PageTableCell","id":878078826,"comment":"Table cell","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"header","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Is this element part of the column header"},{"name":"align_center","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Horizontally centered block"},{"name":"align_right","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Right-aligned block"},{"name":"valign_middle","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Vertically centered block"},{"name":"valign_bottom","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Block vertically-aligned to the bottom"},{"name":"text","type":"RichText","typeModifiers":{"predicate":"flags.7"},"comment":"Content"},{"name":"colspan","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For how many columns should this cell extend"},{"name":"rowspan","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"For how many rows should this cell extend"}]},{"kind":"class","name":"pageTableRow","type":"PageTableRow","id":3770729957,"comment":"Table row","arguments":[{"name":"cells","type":"PageTableCell","typeModifiers":{"isVector":true},"comment":"Table cells"}]},{"kind":"class","name":"pageCaption","type":"PageCaption","id":1869903447,"comment":"Page caption","arguments":[{"name":"text","type":"RichText","comment":"Caption"},{"name":"credit","type":"RichText","comment":"Credits"}]},{"kind":"class","name":"pageListItemText","type":"PageListItem","id":3106911949,"comment":"List item","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"pageListItemBlocks","type":"PageListItem","id":635466748,"comment":"List item","arguments":[{"name":"blocks","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Blocks"}]},{"kind":"class","name":"pageListOrderedItemText","type":"PageListOrderedItem","id":1577484359,"comment":"Ordered list of text items","arguments":[{"name":"num","type":"string","comment":"Number of element within ordered list"},{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"pageListOrderedItemBlocks","type":"PageListOrderedItem","id":2564655414,"comment":"Ordered list of IV blocks","arguments":[{"name":"num","type":"string","comment":"Number of element within ordered list"},{"name":"blocks","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Item contents"}]},{"kind":"class","name":"pageRelatedArticle","type":"PageRelatedArticle","id":3012615176,"comment":"Related article","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"url","type":"string","comment":"URL of article"},{"name":"webpage_id","type":"long","comment":"Webpage ID of generated IV preview"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Title"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Description"},{"name":"photo_id","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"ID of preview photo"},{"name":"author","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Author name"},{"name":"published_date","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Date of publication"}]},{"kind":"class","name":"page","type":"Page","id":2556788493,"comment":"Instant view page","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"part","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Indicates that not full page preview is available to the client and it will need to fetch full Instant View from the server using {@link messages.RawGetWebPagePreviewRequest}."},{"name":"rtl","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the page contains RTL text"},{"name":"v2","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this is an IV v2 page"},{"name":"url","type":"string","comment":"Original page HTTP URL"},{"name":"blocks","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Page elements (like with HTML elements, only as TL constructors)"},{"name":"photos","type":"Photo","typeModifiers":{"isVector":true},"comment":"Photos in page"},{"name":"documents","type":"Document","typeModifiers":{"isVector":true},"comment":"Media in page"},{"name":"views","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"View count"}]},{"kind":"class","name":"help.supportName","type":"help.SupportName","id":2349199817,"comment":"Localized name for telegram support","arguments":[{"name":"name","type":"string","comment":"Localized name"}]},{"kind":"class","name":"help.userInfoEmpty","type":"help.UserInfo","id":4088278765,"comment":"Internal use","arguments":[]},{"kind":"class","name":"help.userInfo","type":"help.UserInfo","id":32192344,"comment":"Internal use","arguments":[{"name":"message","type":"string","comment":"Info"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"},{"name":"author","type":"string","comment":"Author"},{"name":"date","type":"int","comment":"Date"}]},{"kind":"class","name":"pollAnswer","type":"PollAnswer","id":4279689930,"comment":"A possible answer of a poll","arguments":[{"name":"text","type":"TextWithEntities","comment":"Textual representation of the answer (only Premium users can use custom emoji entities here)."},{"name":"option","type":"bytes","comment":"The param that has to be passed to {@link messages.RawSendVoteRequest}."}]},{"kind":"class","name":"poll","type":"Poll","id":1484026161,"comment":"Poll","arguments":[{"name":"id","type":"long","comment":"ID of the poll"},{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"closed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the poll is closed and doesn't accept any more answers"},{"name":"public_voters","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether cast votes are publicly visible to all users (non-anonymous poll)"},{"name":"multiple_choice","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether multiple options can be chosen as answer"},{"name":"quiz","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is a quiz (with wrong and correct answers, results shown in the return type)"},{"name":"question","type":"TextWithEntities","comment":"The question of the poll (only Premium users can use custom emoji entities here)."},{"name":"answers","type":"PollAnswer","typeModifiers":{"isVector":true},"comment":"The possible answers, vote using {@link messages.RawSendVoteRequest}."},{"name":"close_period","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date."},{"name":"close_date","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Point in time (UNIX timestamp in seconds) when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future; can't be used together with close_period."}]},{"kind":"class","name":"pollAnswerVoters","type":"PollAnswerVoters","id":997055186,"comment":"A poll answer, and how users voted on it","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chosen","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we have chosen this answer"},{"name":"correct","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"For quizzes, whether the option we have chosen is correct"},{"name":"option","type":"bytes","comment":"The param that has to be passed to {@link messages.RawSendVoteRequest}."},{"name":"voters","type":"int","comment":"How many users voted for this option"}]},{"kind":"class","name":"pollResults","type":"PollResults","id":2061444128,"comment":"Results of poll","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Similar to min objects, used for poll constructors that are the same for all users so they don't have the option chosen by the current user (you can use {@link messages.RawGetPollResultsRequest} to get the full poll results)."},{"name":"results","type":"PollAnswerVoters","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Poll results"},{"name":"total_voters","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Total number of people that voted in the poll"},{"name":"recent_voters","type":"Peer","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"IDs of the last users that recently voted in the poll"},{"name":"solution","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Explanation of quiz solution"},{"name":"solution_entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Message entities for styled text in quiz solution"}]},{"kind":"class","name":"chatOnlines","type":"ChatOnlines","id":4030849616,"comment":"Number of online users in a chat","arguments":[{"name":"onlines","type":"int","comment":"Number of online users"}]},{"kind":"class","name":"statsURL","type":"StatsURL","id":1202287072,"comment":"URL with chat statistics","arguments":[{"name":"url","type":"string","comment":"Chat statistics"}]},{"kind":"class","name":"chatAdminRights","type":"ChatAdminRights","id":1605510357,"comment":"Represents the rights of an admin in a channel/supergroup.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"change_info","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, allows the admin to modify the description of the channel/supergroup"},{"name":"post_messages","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, allows the admin to post messages in the channel"},{"name":"edit_messages","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, allows the admin to also edit messages from other admins in the channel"},{"name":"delete_messages","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, allows the admin to also delete messages from other admins in the channel"},{"name":"ban_users","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, allows the admin to ban users from the channel/supergroup"},{"name":"invite_users","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, allows the admin to invite users in the channel/supergroup"},{"name":"pin_messages","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, allows the admin to pin messages in the channel/supergroup"},{"name":"add_admins","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"If set, allows the admin to add other admins with the same (or more limited) permissions in the channel/supergroup"},{"name":"anonymous","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Whether this admin is anonymous"},{"name":"manage_call","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"If set, allows the admin to change group call/livestream settings"},{"name":"other","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Set this flag if none of the other flags are set, but you still want the user to be an admin: if this or any of the other flags are set, the admin can get the chat admin log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode."},{"name":"manage_topics","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"If set, allows the admin to create, delete or modify forum topics »."},{"name":"post_stories","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"If set, allows the admin to post stories as the channel."},{"name":"edit_stories","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"If set, allows the admin to edit stories posted by the other admins of the channel."},{"name":"delete_stories","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, allows the admin to delete stories posted by the other admins of the channel."}]},{"kind":"class","name":"chatBannedRights","type":"ChatBannedRights","id":2668758040,"comment":"Represents the rights of a normal user in a supergroup/channel/chat. In this case, the flags are inverted: if set, a flag does not allow a user to do X.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"view_messages","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, does not allow a user to view messages in a supergroup/channel/chat"},{"name":"send_messages","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, does not allow a user to send messages in a supergroup/chat"},{"name":"send_media","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, does not allow a user to send any media in a supergroup/chat"},{"name":"send_stickers","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, does not allow a user to send stickers in a supergroup/chat"},{"name":"send_gifs","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, does not allow a user to send gifs in a supergroup/chat"},{"name":"send_games","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, does not allow a user to send games in a supergroup/chat"},{"name":"send_inline","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"If set, does not allow a user to use inline bots in a supergroup/chat."},{"name":"embed_links","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, does not allow a user to embed links in the messages of a supergroup/chat"},{"name":"send_polls","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"If set, does not allow a user to send polls in a supergroup/chat"},{"name":"change_info","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"If set, does not allow any user to change the description of a supergroup/chat"},{"name":"invite_users","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"If set, does not allow any user to invite users in a supergroup/chat"},{"name":"pin_messages","type":"true","typeModifiers":{"predicate":"flags.17"},"comment":"If set, does not allow any user to pin messages in a supergroup/chat"},{"name":"manage_topics","type":"true","typeModifiers":{"predicate":"flags.18"},"comment":"If set, does not allow any user to create, delete or modify forum topics »."},{"name":"send_photos","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"If set, does not allow a user to send photos in a supergroup/chat."},{"name":"send_videos","type":"true","typeModifiers":{"predicate":"flags.20"},"comment":"If set, does not allow a user to send videos in a supergroup/chat."},{"name":"send_roundvideos","type":"true","typeModifiers":{"predicate":"flags.21"},"comment":"If set, does not allow a user to send round videos in a supergroup/chat."},{"name":"send_audios","type":"true","typeModifiers":{"predicate":"flags.22"},"comment":"If set, does not allow a user to send audio files in a supergroup/chat."},{"name":"send_voices","type":"true","typeModifiers":{"predicate":"flags.23"},"comment":"If set, does not allow a user to send voice messages in a supergroup/chat."},{"name":"send_docs","type":"true","typeModifiers":{"predicate":"flags.24"},"comment":"If set, does not allow a user to send documents in a supergroup/chat."},{"name":"send_plain","type":"true","typeModifiers":{"predicate":"flags.25"},"comment":"If set, does not allow a user to send text messages in a supergroup/chat."},{"name":"until_date","type":"int","comment":"Validity of said permissions (it is considered forever any value less then 30 seconds or more then 366 days)."}]},{"kind":"class","name":"inputWallPaper","type":"InputWallPaper","id":3861952889,"comment":"Wallpaper","arguments":[{"name":"id","type":"long","comment":"Wallpaper ID"},{"name":"access_hash","type":"long","comment":"Access hash"}]},{"kind":"class","name":"inputWallPaperSlug","type":"InputWallPaper","id":1913199744,"comment":"Wallpaper by slug (a unique ID, obtained from a wallpaper link »)","arguments":[{"name":"slug","type":"string","comment":"Unique wallpaper ID"}]},{"kind":"class","name":"inputWallPaperNoFile","type":"InputWallPaper","id":2524595758,"comment":"Wallpaper with no file access hash, used for example when deleting (unsave=true) wallpapers using {@link account.RawSaveWallPaperRequest}, specifying just the wallpaper ID.","arguments":[{"name":"id","type":"long","comment":"Wallpaper ID"}]},{"kind":"class","name":"account.wallPapersNotModified","type":"account.WallPapers","id":471437699,"comment":"No new wallpapers were found","arguments":[]},{"kind":"class","name":"account.wallPapers","type":"account.WallPapers","id":3452142988,"comment":"Installed wallpapers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"wallpapers","type":"WallPaper","typeModifiers":{"isVector":true},"comment":"Wallpapers"}]},{"kind":"class","name":"codeSettings","type":"CodeSettings","id":2904898936,"comment":"Settings used by telegram servers for sending the confirm code.\n\nExample implementations: telegram for android, tdlib.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"allow_flashcall","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow phone verification via phone calls."},{"name":"current_number","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Pass true if the phone number is used on the current device. Ignored if allow_flashcall is not set."},{"name":"allow_app_hash","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If a token that will be included in eventually sent SMSs is required: required in newer versions of android, to use the android SMS receiver APIs"},{"name":"allow_missed_call","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this device supports receiving the code using the {@link auth.RawCodeTypeMissedCall} method"},{"name":"allow_firebase","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether Firebase auth is supported"},{"name":"unknown_number","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Set this flag if there is a SIM card in the current device, but it is not possible to check whether the specified phone number matches the SIM's phone number."},{"name":"logout_tokens","type":"bytes","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Previously stored future auth tokens, see the documentation for more info »"},{"name":"token","type":"string","typeModifiers":{"predicate":"flags.8"},"comment":"Used only by official iOS apps for Firebase auth: device token for apple push."},{"name":"app_sandbox","type":"Bool","typeModifiers":{"predicate":"flags.8"},"comment":"Used only by official iOS apps for firebase auth: whether a sandbox-certificate will be used during transmission of the push notification."}]},{"kind":"class","name":"wallPaperSettings","type":"WallPaperSettings","id":925826256,"comment":"Wallpaper rendering information.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blur","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"For image wallpapers »: if set, the JPEG must be downscaled to fit in 450x450 square and then box-blurred with radius 12."},{"name":"motion","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the background needs to be slightly moved when the device is rotated."},{"name":"background_color","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Used for solid », gradient » and freeform gradient » fills."},{"name":"second_background_color","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Used for gradient » and freeform gradient » fills."},{"name":"third_background_color","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Used for freeform gradient » fills."},{"name":"fourth_background_color","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Used for freeform gradient » fills."},{"name":"intensity","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Used for pattern wallpapers »."},{"name":"rotation","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Clockwise rotation angle of the gradient, in degrees; 0-359. Should be always divisible by 45."},{"name":"emoticon","type":"string","typeModifiers":{"predicate":"flags.7"},"comment":"If set, this wallpaper can be used as a channel wallpaper and is represented by the specified UTF-8 emoji."}]},{"kind":"class","name":"autoDownloadSettings","type":"AutoDownloadSettings","id":3131405864,"comment":"Autodownload settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"disabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Disable automatic media downloads?"},{"name":"video_preload_large","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to preload the first seconds of videos larger than the specified limit"},{"name":"audio_preload_next","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to preload the next audio track when you're listening to music"},{"name":"phonecalls_less_data","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether to enable data saving mode in phone calls"},{"name":"stories_preload","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether to preload stories; in particular, the first {@link RawDocumentAttributeVideo}.preload_prefix_size bytes of story videos should be preloaded."},{"name":"photo_size_max","type":"int","comment":"Maximum size of photos to preload"},{"name":"video_size_max","type":"int53","comment":"Maximum size of videos to preload"},{"name":"file_size_max","type":"int53","comment":"Maximum size of other files to preload"},{"name":"video_upload_maxbitrate","type":"int","comment":"Maximum suggested bitrate for uploading videos"},{"name":"small_queue_active_operations_max","type":"int","comment":"A limit, specifying the maximum number of files that should be downloaded in parallel from the same DC, for files smaller than 20MB."},{"name":"large_queue_active_operations_max","type":"int","comment":"A limit, specifying the maximum number of files that should be downloaded in parallel from the same DC, for files bigger than 20MB."}]},{"kind":"class","name":"account.autoDownloadSettings","type":"account.AutoDownloadSettings","id":1674235686,"comment":"Media autodownload settings","arguments":[{"name":"low","type":"AutoDownloadSettings","comment":"Low data usage preset"},{"name":"medium","type":"AutoDownloadSettings","comment":"Medium data usage preset"},{"name":"high","type":"AutoDownloadSettings","comment":"High data usage preset"}]},{"kind":"class","name":"emojiKeyword","type":"EmojiKeyword","id":3585325561,"comment":"Emoji keyword","arguments":[{"name":"keyword","type":"string","comment":"Keyword"},{"name":"emoticons","type":"string","typeModifiers":{"isVector":true},"comment":"Emojis associated to keyword"}]},{"kind":"class","name":"emojiKeywordDeleted","type":"EmojiKeyword","id":594408994,"comment":"Deleted emoji keyword","arguments":[{"name":"keyword","type":"string","comment":"Keyword"},{"name":"emoticons","type":"string","typeModifiers":{"isVector":true},"comment":"Emojis that were associated to keyword"}]},{"kind":"class","name":"emojiKeywordsDifference","type":"EmojiKeywordsDifference","id":1556570557,"comment":"Changes to emoji keywords","arguments":[{"name":"lang_code","type":"string","comment":"Language code for keywords"},{"name":"from_version","type":"int","comment":"Previous emoji keyword list version"},{"name":"version","type":"int","comment":"Current version of emoji keyword list"},{"name":"keywords","type":"EmojiKeyword","typeModifiers":{"isVector":true},"comment":"Emojis associated to keywords"}]},{"kind":"class","name":"emojiURL","type":"EmojiURL","id":2775937949,"comment":"An HTTP URL which can be used to automatically log in into translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation","arguments":[{"name":"url","type":"string","comment":"An HTTP URL which can be used to automatically log in into translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation"}]},{"kind":"class","name":"emojiLanguage","type":"EmojiLanguage","id":3019592545,"comment":"Emoji language","arguments":[{"name":"lang_code","type":"string","comment":"Language code"}]},{"kind":"class","name":"folder","type":"Folder","id":4283715173,"comment":"Folder","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"autofill_new_broadcasts","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Automatically add new channels to this folder"},{"name":"autofill_public_groups","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Automatically add joined new public supergroups to this folder"},{"name":"autofill_new_correspondents","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Automatically add new private chats to this folder"},{"name":"id","type":"int","comment":"Folder ID"},{"name":"title","type":"string","comment":"Folder title"},{"name":"photo","type":"ChatPhoto","typeModifiers":{"predicate":"flags.3"},"comment":"Folder picture"}]},{"kind":"class","name":"inputFolderPeer","type":"InputFolderPeer","id":4224893590,"comment":"Peer in a folder","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"}]},{"kind":"class","name":"folderPeer","type":"FolderPeer","id":3921323624,"comment":"Peer in a folder","arguments":[{"name":"peer","type":"Peer","comment":"Folder peer info"},{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"}]},{"kind":"class","name":"messages.searchCounter","type":"messages.SearchCounter","id":3896830975,"comment":"Indicates how many results would be found by a {@link messages.RawSearchRequest} call with the same parameters","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inexact","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, the results may be inexact"},{"name":"filter","type":"MessagesFilter","comment":"Provided message filter"},{"name":"count","type":"int","comment":"Number of results that were found server-side"}]},{"kind":"class","name":"urlAuthResultRequest","type":"UrlAuthResult","id":2463316494,"comment":"Details about the authorization request, for more info click here »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"request_write_access","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the bot would like to send messages to the user"},{"name":"bot","type":"User","comment":"Username of a bot, which will be used for user authorization. If not specified, the current bot's username will be assumed. The url's domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details."},{"name":"domain","type":"string","comment":"The domain name of the website on which the user will log in."}]},{"kind":"class","name":"urlAuthResultAccepted","type":"UrlAuthResult","id":2408320590,"comment":"Details about an accepted authorization request, for more info click here »","arguments":[{"name":"url","type":"string","comment":"The URL name of the website on which the user has logged in."}]},{"kind":"class","name":"urlAuthResultDefault","type":"UrlAuthResult","id":2849430303,"comment":"Details about an accepted authorization request, for more info click here »","arguments":[]},{"kind":"class","name":"channelLocationEmpty","type":"ChannelLocation","id":3216354699,"comment":"No location (normal supergroup)","arguments":[]},{"kind":"class","name":"channelLocation","type":"ChannelLocation","id":547062491,"comment":"Geographical location of supergroup (geogroups)","arguments":[{"name":"geo_point","type":"GeoPoint","comment":"Geographical location of supergroup"},{"name":"address","type":"string","comment":"Textual description of the address"}]},{"kind":"class","name":"peerLocated","type":"PeerLocated","id":3393592157,"comment":"Peer geolocated nearby","arguments":[{"name":"peer","type":"Peer","comment":"Peer"},{"name":"expires","type":"int","comment":"Validity period of current data"},{"name":"distance","type":"int","comment":"Distance from the peer in meters"}]},{"kind":"class","name":"peerSelfLocated","type":"PeerLocated","id":4176226379,"comment":"Current peer","arguments":[{"name":"expires","type":"int","comment":"Expiry of geolocation info for current peer"}]},{"kind":"class","name":"restrictionReason","type":"RestrictionReason","id":3497176244,"comment":"Restriction reason.\n\nContains the reason why access to a certain object must be restricted. Clients are supposed to deny access to the channel if the platform field is equal to all or to the current platform (ios, android, wp, etc.). Platforms can be concatenated (ios-android, ios-wp), unknown platforms are to be ignored. The text is the error message that should be shown to the user.","arguments":[{"name":"platform","type":"string","comment":"Platform identifier (ios, android, wp, all, etc.), can be concatenated with a dash as separator (android-ios, ios-wp, etc)"},{"name":"reason","type":"string","comment":"Restriction reason (porno, terms, etc.)"},{"name":"text","type":"string","comment":"Error message to be shown to the user"}]},{"kind":"class","name":"inputTheme","type":"InputTheme","id":1012306921,"comment":"Theme","arguments":[{"name":"id","type":"long","comment":"ID"},{"name":"access_hash","type":"long","comment":"Access hash"}]},{"kind":"class","name":"inputThemeSlug","type":"InputTheme","id":4119399921,"comment":"Theme by theme ID","arguments":[{"name":"slug","type":"string","comment":"Unique theme ID obtained from a theme deep link »"}]},{"kind":"class","name":"theme","type":"Theme","id":2685298646,"comment":"Theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the current user is the creator of this theme"},{"name":"default","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is the default theme"},{"name":"for_chat","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this theme is meant to be used as a chat theme"},{"name":"id","type":"long","comment":"Theme ID"},{"name":"access_hash","type":"long","comment":"Theme access hash"},{"name":"slug","type":"string","comment":"Unique theme ID"},{"name":"title","type":"string","comment":"Theme name"},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.2"},"comment":"Theme"},{"name":"settings","type":"ThemeSettings","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Theme settings"},{"name":"emoticon","type":"string","typeModifiers":{"predicate":"flags.6"},"comment":"Theme emoji"},{"name":"installs_count","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Installation count"}]},{"kind":"class","name":"account.themesNotModified","type":"account.Themes","id":4095653410,"comment":"No new themes were installed","arguments":[]},{"kind":"class","name":"account.themes","type":"account.Themes","id":2587724909,"comment":"Installed themes","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"themes","type":"Theme","typeModifiers":{"isVector":true},"comment":"Themes"}]},{"kind":"class","name":"auth.loginToken","type":"auth.LoginToken","id":1654593920,"comment":"Login token (for QR code login)","arguments":[{"name":"expires","type":"int","comment":"Expiration date of QR code"},{"name":"token","type":"bytes","comment":"Token to render in QR code"}]},{"kind":"class","name":"auth.loginTokenMigrateTo","type":"auth.LoginToken","id":110008598,"comment":"Repeat the query to the specified DC","arguments":[{"name":"dc_id","type":"int","comment":"DC ID"},{"name":"token","type":"bytes","comment":"Token to use for login"}]},{"kind":"class","name":"auth.loginTokenSuccess","type":"auth.LoginToken","id":957176926,"comment":"Login via token (QR code) succeeded!","arguments":[{"name":"authorization","type":"auth.Authorization","comment":"Authorization info"}]},{"kind":"class","name":"account.contentSettings","type":"account.ContentSettings","id":1474462241,"comment":"Sensitive content settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"sensitive_enabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether viewing of sensitive (NSFW) content is enabled"},{"name":"sensitive_can_change","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the current client can change the sensitive content settings to view NSFW content"}]},{"kind":"class","name":"messages.inactiveChats","type":"messages.InactiveChats","id":2837970629,"comment":"Inactive chat list","arguments":[{"name":"dates","type":"int","typeModifiers":{"isVector":true},"comment":"When was the chat last active"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chat list"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the chat list"}]},{"kind":"class","name":"baseThemeClassic","type":"BaseTheme","id":3282117730,"comment":"Classic theme","arguments":[]},{"kind":"class","name":"baseThemeDay","type":"BaseTheme","id":4225242760,"comment":"Day theme","arguments":[]},{"kind":"class","name":"baseThemeNight","type":"BaseTheme","id":3081969320,"comment":"Night theme","arguments":[]},{"kind":"class","name":"baseThemeTinted","type":"BaseTheme","id":1834973166,"comment":"Tinted theme","arguments":[]},{"kind":"class","name":"baseThemeArctic","type":"BaseTheme","id":1527845466,"comment":"Arctic theme","arguments":[]},{"kind":"class","name":"inputThemeSettings","type":"InputThemeSettings","id":2413711439,"comment":"Theme settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message_colors_animated","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the freeform gradient fill needs to be animated on every sent message"},{"name":"base_theme","type":"BaseTheme","comment":"Default theme on which this theme is based"},{"name":"accent_color","type":"int","comment":"Accent color, ARGB format"},{"name":"outbox_accent_color","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Accent color of outgoing messages in ARGB format"},{"name":"message_colors","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"The fill to be used as a background for outgoing messages, in RGB24 format.
If just one or two equal colors are provided, describes a solid fill of a background.
If two different colors are provided, describes the top and bottom colors of a 0-degree gradient.
If three or four colors are provided, describes a freeform gradient fill of a background."},{"name":"wallpaper","type":"InputWallPaper","typeModifiers":{"predicate":"flags.1"},"comment":"{@link RawInputWallPaper} or {@link RawInputWallPaper} when passing wallpaper files for image or pattern wallpapers, {@link RawInputWallPaperNoFile} with id=0 otherwise."},{"name":"wallpaper_settings","type":"WallPaperSettings","typeModifiers":{"predicate":"flags.1"},"comment":"Wallpaper settings."}]},{"kind":"class","name":"themeSettings","type":"ThemeSettings","id":4200117972,"comment":"Theme settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message_colors_animated","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the freeform gradient fill needs to be animated on every sent message."},{"name":"base_theme","type":"BaseTheme","comment":"Base theme"},{"name":"accent_color","type":"int","comment":"Accent color, ARGB format"},{"name":"outbox_accent_color","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Accent color of outgoing messages in ARGB format"},{"name":"message_colors","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"The fill to be used as a background for outgoing messages, in RGB24 format.
If just one or two equal colors are provided, describes a solid fill of a background.
If two different colors are provided, describes the top and bottom colors of a 0-degree gradient.
If three or four colors are provided, describes a freeform gradient fill of a background."},{"name":"wallpaper","type":"WallPaper","typeModifiers":{"predicate":"flags.1"},"comment":"Wallpaper"}]},{"kind":"class","name":"webPageAttributeTheme","type":"WebPageAttribute","id":1421174295,"comment":"Page theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"documents","type":"Document","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Theme files"},{"name":"settings","type":"ThemeSettings","typeModifiers":{"predicate":"flags.1"},"comment":"Theme settings"}]},{"kind":"class","name":"webPageAttributeStory","type":"WebPageAttribute","id":781501415,"comment":"Webpage preview of a Telegram story","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"Peer that posted the story"},{"name":"id","type":"int","comment":"Story ID"},{"name":"story","type":"StoryItem","typeModifiers":{"predicate":"flags.0"},"comment":"May contain the story, if not the story should be fetched when and if needed using {@link stories.RawGetStoriesByIDRequest} with the above id and peer."}]},{"kind":"class","name":"webPageAttributeStickerSet","type":"WebPageAttribute","id":1355547603,"comment":"Contains info about a stickerset », for a {@link RawWebPage} preview of a stickerset deep link » (the {@link RawWebPage} will have a type of telegram_stickerset).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this i s a custom emoji stickerset."},{"name":"text_color","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the color of this TGS custom emoji stickerset should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context."},{"name":"stickers","type":"Document","typeModifiers":{"isVector":true},"comment":"A subset of the stickerset in the stickerset."}]},{"kind":"class","name":"messages.votesList","type":"messages.VotesList","id":1218005070,"comment":"How users voted in a poll","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of votes for all options (or only for the chosen option, if provided to {@link messages.RawGetPollVotesRequest})"},{"name":"votes","type":"MessagePeerVote","typeModifiers":{"isVector":true},"comment":"Vote info for each user"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about users that voted in the poll"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset to use with the next {@link messages.RawGetPollVotesRequest} request, empty string if no more results are available."}]},{"kind":"class","name":"bankCardOpenUrl","type":"BankCardOpenUrl","id":4117234314,"comment":"Credit card info URL provided by the bank","arguments":[{"name":"url","type":"string","comment":"Info URL"},{"name":"name","type":"string","comment":"Bank name"}]},{"kind":"class","name":"payments.bankCardData","type":"payments.BankCardData","id":1042605427,"comment":"Credit card info, provided by the card's bank(s)","arguments":[{"name":"title","type":"string","comment":"Credit card title"},{"name":"open_urls","type":"BankCardOpenUrl","typeModifiers":{"isVector":true},"comment":"Info URL(s) provided by the card's bank(s)"}]},{"kind":"class","name":"dialogFilter","type":"DialogFilter","id":1605718587,"comment":"Dialog filter AKA folder","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to include all contacts in this folder"},{"name":"non_contacts","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to include all non-contacts in this folder"},{"name":"groups","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to include all groups in this folder"},{"name":"broadcasts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether to include all channels in this folder"},{"name":"bots","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether to include all bots in this folder"},{"name":"exclude_muted","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether to exclude muted chats from this folder"},{"name":"exclude_read","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether to exclude read chats from this folder"},{"name":"exclude_archived","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether to exclude archived chats from this folder"},{"name":"id","type":"int","comment":"Folder ID"},{"name":"title","type":"string","comment":"Folder name (max 12 UTF-8 chars)"},{"name":"emoticon","type":"string","typeModifiers":{"predicate":"flags.25"},"comment":"Emoji to use as icon for the folder."},{"name":"color","type":"int","typeModifiers":{"predicate":"flags.27"},"comment":"A color ID for the folder tag associated to this folder, see here » for more info."},{"name":"pinned_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Pinned chats, folders can have unlimited pinned chats"},{"name":"include_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Include the following chats in this folder"},{"name":"exclude_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Exclude the following chats from this folder"}]},{"kind":"class","name":"dialogFilterDefault","type":"DialogFilter","id":909284270,"comment":"Used only when reordering folders to indicate the default (all chats) folder.","arguments":[]},{"kind":"class","name":"dialogFilterChatlist","type":"DialogFilter","id":2682424996,"comment":"A folder imported using a chat folder deep link ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_my_invites","type":"true","typeModifiers":{"predicate":"flags.26"},"comment":"Whether the current user has created some chat folder deep links » to share the folder as well."},{"name":"id","type":"int","comment":"ID of the folder"},{"name":"title","type":"string","comment":"Name of the folder (max 12 UTF-8 chars)"},{"name":"emoticon","type":"string","typeModifiers":{"predicate":"flags.25"},"comment":"Emoji to use as icon for the folder."},{"name":"color","type":"int","typeModifiers":{"predicate":"flags.27"},"comment":"A color ID for the folder tag associated to this folder, see here » for more info."},{"name":"pinned_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Pinned chats, folders can have unlimited pinned chats"},{"name":"include_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Chats to include in the folder"}]},{"kind":"class","name":"dialogFilterSuggested","type":"DialogFilterSuggested","id":2004110666,"comment":"Suggested folders","arguments":[{"name":"filter","type":"DialogFilter","comment":"Folder info"},{"name":"description","type":"string","comment":"Folder description"}]},{"kind":"class","name":"statsDateRangeDays","type":"StatsDateRangeDays","id":3057118639,"comment":"Channel statistics date range","arguments":[{"name":"min_date","type":"int","comment":"Initial date"},{"name":"max_date","type":"int","comment":"Final date"}]},{"kind":"class","name":"statsAbsValueAndPrev","type":"StatsAbsValueAndPrev","id":3410210014,"comment":"Statistics value couple; initial and final value for period of time currently in consideration","arguments":[{"name":"current","type":"double","comment":"Current value"},{"name":"previous","type":"double","comment":"Previous value"}]},{"kind":"class","name":"statsPercentValue","type":"StatsPercentValue","id":3419287520,"comment":"Channel statistics percentage.
\nCompute the percentage simply by doing part * total / 100","arguments":[{"name":"part","type":"double","comment":"Partial value"},{"name":"total","type":"double","comment":"Total value"}]},{"kind":"class","name":"statsGraphAsync","type":"StatsGraph","id":1244130093,"comment":"This channel statistics graph must be generated asynchronously using {@link stats.RawLoadAsyncGraphRequest} to reduce server load","arguments":[{"name":"token","type":"string","comment":"Token to use for fetching the async graph"}]},{"kind":"class","name":"statsGraphError","type":"StatsGraph","id":3202127906,"comment":"An error occurred while generating the statistics graph","arguments":[{"name":"error","type":"string","comment":"The error"}]},{"kind":"class","name":"statsGraph","type":"StatsGraph","id":2393138358,"comment":"Channel statistics graph","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"json","type":"DataJSON","comment":"Statistics data"},{"name":"zoom_token","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Zoom token"}]},{"kind":"class","name":"stats.broadcastStats","type":"stats.BroadcastStats","id":963421692,"comment":"Channel statistics.","arguments":[{"name":"period","type":"StatsDateRangeDays","comment":"Period in consideration"},{"name":"followers","type":"StatsAbsValueAndPrev","comment":"Follower count change for period in consideration"},{"name":"views_per_post","type":"StatsAbsValueAndPrev","comment":"total_viewcount/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)."},{"name":"shares_per_post","type":"StatsAbsValueAndPrev","comment":"total_sharecount/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)"},{"name":"reactions_per_post","type":"StatsAbsValueAndPrev","comment":"total_reactions/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)"},{"name":"views_per_story","type":"StatsAbsValueAndPrev","comment":"total_views/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)"},{"name":"shares_per_story","type":"StatsAbsValueAndPrev","comment":"total_shares/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)"},{"name":"reactions_per_story","type":"StatsAbsValueAndPrev","comment":"total_reactions/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)"},{"name":"enabled_notifications","type":"StatsPercentValue","comment":"Percentage of subscribers with enabled notifications"},{"name":"growth_graph","type":"StatsGraph","comment":"Channel growth graph (absolute subscriber count)"},{"name":"followers_graph","type":"StatsGraph","comment":"Followers growth graph (relative subscriber count)"},{"name":"mute_graph","type":"StatsGraph","comment":"Muted users graph (relative)"},{"name":"top_hours_graph","type":"StatsGraph","comment":"Views per hour graph (absolute)"},{"name":"interactions_graph","type":"StatsGraph","comment":"Interactions graph (absolute)"},{"name":"iv_interactions_graph","type":"StatsGraph","comment":"IV interactions graph (absolute)"},{"name":"views_by_source_graph","type":"StatsGraph","comment":"Views by source graph (absolute)"},{"name":"new_followers_by_source_graph","type":"StatsGraph","comment":"New followers by source graph (absolute)"},{"name":"languages_graph","type":"StatsGraph","comment":"Subscriber language graph (pie chart)"},{"name":"reactions_by_emotion_graph","type":"StatsGraph","comment":"A graph containing the number of reactions on posts categorized by emotion"},{"name":"story_interactions_graph","type":"StatsGraph","comment":"A graph containing the number of story views and shares"},{"name":"story_reactions_by_emotion_graph","type":"StatsGraph","comment":"A graph containing the number of reactions on stories categorized by emotion"},{"name":"recent_posts_interactions","type":"PostInteractionCounters","typeModifiers":{"isVector":true},"comment":"Detailed statistics about number of views and shares of recently sent messages and stories"}]},{"kind":"class","name":"help.promoDataEmpty","type":"help.PromoData","id":2566302837,"comment":"No PSA/MTProxy info is available","arguments":[{"name":"expires","type":"int","comment":"Re-fetch PSA/MTProxy info after the specified number of seconds"}]},{"kind":"class","name":"help.promoData","type":"help.PromoData","id":2352576831,"comment":"MTProxy/Public Service Announcement information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"proxy","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"MTProxy-related channel"},{"name":"expires","type":"int","comment":"Expiry of PSA/MTProxy info"},{"name":"peer","type":"Peer","comment":"MTProxy/PSA peer"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chat info"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"User info"},{"name":"psa_type","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"PSA type"},{"name":"psa_message","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"PSA message"}]},{"kind":"class","name":"videoSize","type":"VideoSize","id":3727929492,"comment":"An animated profile picture in MPEG4 format","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"type","type":"string","comment":"u for animated profile pictures, and v for trimmed and downscaled video previews"},{"name":"w","type":"int","comment":"Video width"},{"name":"h","type":"int","comment":"Video height"},{"name":"size","type":"int","comment":"File size"},{"name":"video_start_ts","type":"double","typeModifiers":{"predicate":"flags.0"},"comment":"Timestamp that should be shown as static preview to the user (seconds)"}]},{"kind":"class","name":"videoSizeEmojiMarkup","type":"VideoSize","id":4166795580,"comment":"An animated profile picture based on a custom emoji sticker.","arguments":[{"name":"emoji_id","type":"long","comment":"Custom emoji ID: the custom emoji sticker is shown at the center of the profile picture and occupies at most 67% of it."},{"name":"background_colors","type":"int","typeModifiers":{"isVector":true},"comment":"1, 2, 3 or 4 RBG-24 colors used to generate a solid (1), gradient (2) or freeform gradient (3, 4) background, similar to how fill wallpapers are generated. The rotation angle for gradient backgrounds is 0."}]},{"kind":"class","name":"videoSizeStickerMarkup","type":"VideoSize","id":228623102,"comment":"An animated profile picture based on a sticker.","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset"},{"name":"sticker_id","type":"long","comment":"Sticker ID"},{"name":"background_colors","type":"int","typeModifiers":{"isVector":true},"comment":"1, 2, 3 or 4 RBG-24 colors used to generate a solid (1), gradient (2) or freeform gradient (3, 4) background, similar to how fill wallpapers are generated. The rotation angle for gradient backgrounds is 0."}]},{"kind":"class","name":"statsGroupTopPoster","type":"StatsGroupTopPoster","id":2634330011,"comment":"Information about an active user in a supergroup","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"messages","type":"int","comment":"Number of messages for statistics period in consideration"},{"name":"avg_chars","type":"int","comment":"Average number of characters per message"}]},{"kind":"class","name":"statsGroupTopAdmin","type":"StatsGroupTopAdmin","id":3612888199,"comment":"Information about an active admin in a supergroup","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"deleted","type":"int","comment":"Number of deleted messages for statistics period in consideration"},{"name":"kicked","type":"int","comment":"Number of kicked users for statistics period in consideration"},{"name":"banned","type":"int","comment":"Number of banned users for statistics period in consideration"}]},{"kind":"class","name":"statsGroupTopInviter","type":"StatsGroupTopInviter","id":1398765469,"comment":"Information about an active supergroup inviter","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"invitations","type":"int","comment":"Number of invitations for statistics period in consideration"}]},{"kind":"class","name":"stats.megagroupStats","type":"stats.MegagroupStats","id":4018141462,"comment":"Supergroup statistics","arguments":[{"name":"period","type":"StatsDateRangeDays","comment":"Period in consideration"},{"name":"members","type":"StatsAbsValueAndPrev","comment":"Member count change for period in consideration"},{"name":"messages","type":"StatsAbsValueAndPrev","comment":"Message number change for period in consideration"},{"name":"viewers","type":"StatsAbsValueAndPrev","comment":"Number of users that viewed messages, for range in consideration"},{"name":"posters","type":"StatsAbsValueAndPrev","comment":"Number of users that posted messages, for range in consideration"},{"name":"growth_graph","type":"StatsGraph","comment":"Supergroup growth graph (absolute subscriber count)"},{"name":"members_graph","type":"StatsGraph","comment":"Members growth (relative subscriber count)"},{"name":"new_members_by_source_graph","type":"StatsGraph","comment":"New members by source graph"},{"name":"languages_graph","type":"StatsGraph","comment":"Subscriber language graph (pie chart)"},{"name":"messages_graph","type":"StatsGraph","comment":"Message activity graph (stacked bar graph, message type)"},{"name":"actions_graph","type":"StatsGraph","comment":"Group activity graph (deleted, modified messages, blocked users)"},{"name":"top_hours_graph","type":"StatsGraph","comment":"Activity per hour graph (absolute)"},{"name":"weekdays_graph","type":"StatsGraph","comment":"Activity per day of week graph (absolute)"},{"name":"top_posters","type":"StatsGroupTopPoster","typeModifiers":{"isVector":true},"comment":"Info about most active group members"},{"name":"top_admins","type":"StatsGroupTopAdmin","typeModifiers":{"isVector":true},"comment":"Info about most active group admins"},{"name":"top_inviters","type":"StatsGroupTopInviter","typeModifiers":{"isVector":true},"comment":"Info about most active group inviters"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about users mentioned in statistics"}]},{"kind":"class","name":"globalPrivacySettings","type":"GlobalPrivacySettings","id":1934380235,"comment":"Global privacy settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"archive_and_mute_new_noncontact_peers","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to archive and mute new chats from non-contacts"},{"name":"keep_archived_unmuted","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether unmuted chats will be kept in the Archive chat list when they get a new message."},{"name":"keep_archived_folders","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether unmuted chats that are always included or pinned in a folder, will be kept in the Archive chat list when they get a new message. Ignored if keep_archived_unmuted is set."},{"name":"hide_read_marks","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If this flag is set, the {@link RawInputPrivacyKeyStatusTimestamp} key will also apply to the ability to use {@link messages.RawGetOutboxReadDateRequest} on messages sent to us.
Meaning, users that cannot see our exact last online date due to the current value of the {@link RawInputPrivacyKeyStatusTimestamp} key will receive a 403 USER_PRIVACY_RESTRICTED error when invoking {@link messages.RawGetOutboxReadDateRequest} to fetch the exact read date of a message they sent to us.
The {@link RawUserFull}.read_dates_private flag will be set for users that have this flag enabled."},{"name":"new_noncontact_peers_require_premium","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, only users that have a premium account, are in our contact list, or already have a private chat with us can write to us; a 403 PRIVACY_PREMIUM_REQUIRED error will be emitted otherwise.
The {@link RawUserFull}.contact_require_premium flag will be set for users that have this flag enabled.
To check whether we can write to a user with this flag enabled, if we haven't yet cached all the required information (for example we don't have the {@link RawUserFull} or history of all users while displaying the chat list in the sharing UI) the {@link users.RawGetIsPremiumRequiredToContactRequest} method may be invoked, passing the list of users currently visible in the UI, returning a list of booleans that directly specify whether we can or cannot write to each user.
Premium users only, non-Premium users will receive a PREMIUM_ACCOUNT_REQUIRED error when trying to enable this flag."}]},{"kind":"class","name":"help.countryCode","type":"help.CountryCode","id":1107543535,"comment":"Country code and phone number pattern of a specific country","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"country_code","type":"string","comment":"ISO country code"},{"name":"prefixes","type":"string","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Possible phone prefixes"},{"name":"patterns","type":"string","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Phone patterns: for example, XXX XXX XXX"}]},{"kind":"class","name":"help.country","type":"help.Country","id":3280440867,"comment":"Name, ISO code, localized name and phone codes/patterns of a specific country","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"hidden","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this country should not be shown in the list"},{"name":"iso2","type":"string","comment":"ISO code of country"},{"name":"default_name","type":"string","comment":"Name of the country in the country's language"},{"name":"name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Name of the country in the user's language, if different from the original name"},{"name":"country_codes","type":"help.CountryCode","typeModifiers":{"isVector":true},"comment":"Phone codes/patterns"}]},{"kind":"class","name":"help.countriesListNotModified","type":"help.CountriesList","id":2479628082,"comment":"The country list has not changed","arguments":[]},{"kind":"class","name":"help.countriesList","type":"help.CountriesList","id":2278585758,"comment":"Name, ISO code, localized name and phone codes/patterns of all available countries","arguments":[{"name":"countries","type":"help.Country","typeModifiers":{"isVector":true},"comment":"Name, ISO code, localized name and phone codes/patterns of all available countries"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"}]},{"kind":"class","name":"messageViews","type":"MessageViews","id":1163625789,"comment":"View, forward counter + info about replies of a specific message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"views","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"View count of message"},{"name":"forwards","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Forward count of message"},{"name":"replies","type":"MessageReplies","typeModifiers":{"predicate":"flags.2"},"comment":"Reply and thread information of message"}]},{"kind":"class","name":"messages.messageViews","type":"messages.MessageViews","id":3066361155,"comment":"View, forward counter + info about replies","arguments":[{"name":"views","type":"MessageViews","typeModifiers":{"isVector":true},"comment":"View, forward counter + info about replies"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in constructor"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in constructor"}]},{"kind":"class","name":"messages.discussionMessage","type":"messages.DiscussionMessage","id":2788431746,"comment":"Information about a message thread","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"The messages from which the thread starts. The messages are returned in reverse chronological order (i.e., in order of decreasing message ID)."},{"name":"max_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Message ID of latest reply in this thread"},{"name":"read_inbox_max_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Message ID of latest read incoming message in this thread"},{"name":"read_outbox_max_id","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Message ID of latest read outgoing message in this thread"},{"name":"unread_count","type":"int","comment":"Number of unread messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in constructor"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in constructor"}]},{"kind":"class","name":"messageReplyHeader","type":"MessageReplyHeader","id":2948336091,"comment":"Message replies and thread information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reply_to_scheduled","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"This is a reply to a scheduled message."},{"name":"forum_topic","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this message was sent in a forum topic (except for the General topic)."},{"name":"quote","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether this message is quoting a part of another message."},{"name":"reply_to_msg_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"ID of message to which this message is replying"},{"name":"reply_to_peer_id","type":"Peer","typeModifiers":{"predicate":"flags.0"},"comment":"For replies sent in channel discussion threads of which the current user is not a member, the discussion group ID"},{"name":"reply_from","type":"MessageFwdHeader","typeModifiers":{"predicate":"flags.5"},"comment":"When replying to a message sent by a certain peer to another chat, contains info about the peer that originally sent the message to that other chat."},{"name":"reply_media","type":"MessageMedia","typeModifiers":{"predicate":"flags.8"},"comment":"When replying to a media sent by a certain peer to another chat, contains the media of the replied-to message."},{"name":"reply_to_top_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"ID of the message that started this message thread"},{"name":"quote_text","type":"string","typeModifiers":{"predicate":"flags.6"},"comment":"Used to quote-reply to only a certain section (specified here) of the original message."},{"name":"quote_entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.7","isVector":true},"comment":"Message entities for styled text from the quote_text field."},{"name":"quote_offset","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Offset of the message quote_text within the original message (in UTF-16 code units)."}]},{"kind":"class","name":"messageReplyStoryHeader","type":"MessageReplyHeader","id":240843065,"comment":"Represents a reply to a story","arguments":[{"name":"peer","type":"Peer","comment":"Sender of the story."},{"name":"story_id","type":"int","comment":"Story ID"}]},{"kind":"class","name":"messageReplies","type":"MessageReplies","id":2211844034,"comment":"Info about the comment section of a channel post, or a simple message thread","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"comments","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this constructor contains information about the comment section of a channel post, or a simple message thread"},{"name":"replies","type":"int","comment":"Contains the total number of replies in this thread or comment section."},{"name":"replies_pts","type":"int","comment":"PTS of the message that started this thread."},{"name":"recent_repliers","type":"Peer","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"For channel post comments, contains information about the last few comment posters for a specific thread, to show a small list of commenter profile pictures in client previews."},{"name":"channel_id","type":"int53","typeModifiers":{"predicate":"flags.0"},"comment":"For channel post comments, contains the ID of the associated discussion supergroup"},{"name":"max_id","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"ID of the latest message in this thread or comment section."},{"name":"read_max_id","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Contains the ID of the latest read message in this thread or comment section."}]},{"kind":"class","name":"peerBlocked","type":"PeerBlocked","id":3908927508,"comment":"Information about a blocked peer","arguments":[{"name":"peer_id","type":"Peer","comment":"Peer ID"},{"name":"date","type":"int","comment":"When was the peer blocked"}]},{"kind":"class","name":"stats.messageStats","type":"stats.MessageStats","id":2145983508,"comment":"Message statistics","arguments":[{"name":"views_graph","type":"StatsGraph","comment":"Message view graph"},{"name":"reactions_by_emotion_graph","type":"StatsGraph","comment":"A graph containing the number of reactions on stories categorized by emotion"}]},{"kind":"class","name":"groupCallDiscarded","type":"GroupCall","id":2004925620,"comment":"An ended group call","arguments":[{"name":"id","type":"long","comment":"Group call ID"},{"name":"access_hash","type":"long","comment":"Group call access hash"},{"name":"duration","type":"int","comment":"Group call duration"}]},{"kind":"class","name":"groupCall","type":"GroupCall","id":3583468812,"comment":"Info about a group call or livestream","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"join_muted","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the user should be muted upon joining the call"},{"name":"can_change_join_muted","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the current user can change the value of the join_muted flag using {@link phone.RawToggleGroupCallSettingsRequest}"},{"name":"join_date_asc","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Specifies the ordering to use when locally sorting by date and displaying in the UI group call participants."},{"name":"schedule_start_subscribed","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Whether we subscribed to the scheduled call"},{"name":"can_start_video","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether you can start streaming video into the call"},{"name":"record_video_active","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether the group call is currently being recorded"},{"name":"rtmp_stream","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether RTMP streams are allowed"},{"name":"listeners_hidden","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether the listeners list is hidden and cannot be fetched using {@link phone.RawGetGroupParticipantsRequest}. The phone.groupParticipants.count and groupCall.participants_count counters will still include listeners."},{"name":"id","type":"long","comment":"Group call ID"},{"name":"access_hash","type":"long","comment":"Group call access hash"},{"name":"participants_count","type":"int","comment":"Participant count"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Group call title"},{"name":"stream_dc_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"DC ID to be used for livestream chunks"},{"name":"record_start_date","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"When was the recording started"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.7"},"comment":"When is the call scheduled to start"},{"name":"unmuted_video_count","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Number of people currently streaming video into the call"},{"name":"unmuted_video_limit","type":"int","comment":"Maximum number of people allowed to stream video into the call"},{"name":"version","type":"int","comment":"Version"}]},{"kind":"class","name":"inputGroupCall","type":"InputGroupCall","id":3635053583,"comment":"Points to a specific group call","arguments":[{"name":"id","type":"long","comment":"Group call ID"},{"name":"access_hash","type":"long","comment":"Group call access hash"}]},{"kind":"class","name":"groupCallParticipant","type":"GroupCallParticipant","id":3953538814,"comment":"Info about a group call participant","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"muted","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the participant is muted"},{"name":"left","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the participant has left"},{"name":"can_self_unmute","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the participant can unmute themselves"},{"name":"just_joined","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether the participant has just joined"},{"name":"versioned","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, and {@link RawUpdateGroupCallParticipants}.version < locally stored call.version, info about this participant should be ignored. If (...), and {@link RawUpdateGroupCallParticipants}.version > call.version+1, the participant list should be refetched using {@link phone.RawGetGroupParticipantsRequest}."},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"If not set, the volume and muted_by_you fields can be safely used to overwrite locally cached information; otherwise, volume will contain valid information only if volume_by_admin is set both in the cache and in the received constructor."},{"name":"muted_by_you","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether this participant was muted by the current user"},{"name":"volume_by_admin","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Whether our volume can only changed by an admin"},{"name":"self","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether this participant is the current user"},{"name":"video_joined","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Whether this participant is currently broadcasting video"},{"name":"peer","type":"Peer","comment":"Peer information"},{"name":"date","type":"int","comment":"When did this participant join the group call"},{"name":"active_date","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"When was this participant last active in the group call"},{"name":"source","type":"int","comment":"Source ID"},{"name":"volume","type":"int","typeModifiers":{"predicate":"flags.7"},"comment":"Volume, if not set the volume is set to 100%."},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.11"},"comment":"Info about this participant"},{"name":"raise_hand_rating","type":"long","typeModifiers":{"predicate":"flags.13"},"comment":"Specifies the UI visualization order of peers with raised hands: peers with a higher rating should be showed first in the list."},{"name":"video","type":"GroupCallParticipantVideo","typeModifiers":{"predicate":"flags.6"},"comment":"Info about the video stream the participant is currently broadcasting"},{"name":"presentation","type":"GroupCallParticipantVideo","typeModifiers":{"predicate":"flags.14"},"comment":"Info about the screen sharing stream the participant is currently broadcasting"}]},{"kind":"class","name":"phone.groupCall","type":"phone.GroupCall","id":2658302637,"comment":"Contains info about a group call, and partial info about its participants.","arguments":[{"name":"call","type":"GroupCall","comment":"Info about the group call"},{"name":"participants","type":"GroupCallParticipant","typeModifiers":{"isVector":true},"comment":"A partial list of participants."},{"name":"participants_next_offset","type":"string","comment":"Next offset to use when fetching the remaining participants using {@link phone.RawGetGroupParticipantsRequest}"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in the participants vector"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the participants vector"}]},{"kind":"class","name":"phone.groupParticipants","type":"phone.GroupParticipants","id":4101460406,"comment":"Info about the participants of a group call or livestream","arguments":[{"name":"count","type":"int","comment":"Number of participants"},{"name":"participants","type":"GroupCallParticipant","typeModifiers":{"isVector":true},"comment":"List of participants"},{"name":"next_offset","type":"string","comment":"If not empty, the specified list of participants is partial, and more participants can be fetched specifying this parameter as offset in {@link phone.RawGetGroupParticipantsRequest}."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"},{"name":"version","type":"int","comment":"Version info"}]},{"kind":"class","name":"inlineQueryPeerTypeSameBotPM","type":"InlineQueryPeerType","id":813821341,"comment":"Peer type: private chat with the bot itself","arguments":[]},{"kind":"class","name":"inlineQueryPeerTypePM","type":"InlineQueryPeerType","id":2201751468,"comment":"Peer type: private chat","arguments":[]},{"kind":"class","name":"inlineQueryPeerTypeChat","type":"InlineQueryPeerType","id":3613836554,"comment":"Peer type: chat","arguments":[]},{"kind":"class","name":"inlineQueryPeerTypeMegagroup","type":"InlineQueryPeerType","id":1589952067,"comment":"Peer type: supergroup","arguments":[]},{"kind":"class","name":"inlineQueryPeerTypeBroadcast","type":"InlineQueryPeerType","id":1664413338,"comment":"Peer type: channel","arguments":[]},{"kind":"class","name":"inlineQueryPeerTypeBotPM","type":"InlineQueryPeerType","id":238759180,"comment":"Peer type: private chat with a bot.","arguments":[]},{"kind":"class","name":"messages.historyImport","type":"messages.HistoryImport","id":375566091,"comment":"ID of a specific chat import session, click here for more info ».","arguments":[{"name":"id","type":"long","comment":"History import ID"}]},{"kind":"class","name":"messages.historyImportParsed","type":"messages.HistoryImportParsed","id":1578088377,"comment":"Contains information about a chat export file generated by a foreign chat app, click here for more info.
\nIf neither the pm or group flags are set, the specified chat export was generated from a chat of unknown type.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pm","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"The chat export file was generated from a private chat."},{"name":"group","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"The chat export file was generated from a group chat."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Title of the chat."}]},{"kind":"class","name":"messages.affectedFoundMessages","type":"messages.AffectedFoundMessages","id":4019011180,"comment":"Messages found and affected by changes","arguments":[{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"},{"name":"offset","type":"int","comment":"If bigger than zero, the request must be repeated to remove more messages"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"Affected message IDs"}]},{"kind":"class","name":"chatInviteImporter","type":"ChatInviteImporter","id":2354765785,"comment":"When and which user joined the chat using a chat invite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"requested","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this user currently has a pending join request »"},{"name":"via_chatlist","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"The participant joined by importing a chat folder deep link »."},{"name":"user_id","type":"int53","comment":"The user"},{"name":"date","type":"int","comment":"When did the user join"},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"For users with pending requests, contains bio of the user that requested to join"},{"name":"approved_by","type":"int53","typeModifiers":{"predicate":"flags.1"},"comment":"The administrator that approved the join request » of the user"}]},{"kind":"class","name":"messages.exportedChatInvites","type":"messages.ExportedChatInvites","id":3183881676,"comment":"Info about chat invites exported by a certain admin.","arguments":[{"name":"count","type":"int","comment":"Number of invites exported by the admin"},{"name":"invites","type":"ExportedChatInvite","typeModifiers":{"isVector":true},"comment":"Exported invites"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about the admin"}]},{"kind":"class","name":"messages.exportedChatInvite","type":"messages.ExportedChatInvite","id":410107472,"comment":"Info about a chat invite","arguments":[{"name":"invite","type":"ExportedChatInvite","comment":"Info about the chat invite"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.exportedChatInviteReplaced","type":"messages.ExportedChatInvite","id":572915951,"comment":"The specified chat invite was replaced with another one","arguments":[{"name":"invite","type":"ExportedChatInvite","comment":"The replaced chat invite"},{"name":"new_invite","type":"ExportedChatInvite","comment":"The invite that replaces the previous invite"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.chatInviteImporters","type":"messages.ChatInviteImporters","id":2176233482,"comment":"Info about the users that joined the chat using a specific chat invite","arguments":[{"name":"count","type":"int","comment":"Number of users that joined"},{"name":"importers","type":"ChatInviteImporter","typeModifiers":{"isVector":true},"comment":"The users that joined"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"The users that joined"}]},{"kind":"class","name":"chatAdminWithInvites","type":"ChatAdminWithInvites","id":4075613987,"comment":"Info about chat invites generated by admins.","arguments":[{"name":"admin_id","type":"int53","comment":"The admin"},{"name":"invites_count","type":"int","comment":"Number of invites generated by the admin"},{"name":"revoked_invites_count","type":"int","comment":"Number of revoked invites"}]},{"kind":"class","name":"messages.chatAdminsWithInvites","type":"messages.ChatAdminsWithInvites","id":3063640791,"comment":"Info about chat invites generated by admins.","arguments":[{"name":"admins","type":"ChatAdminWithInvites","typeModifiers":{"isVector":true},"comment":"Info about chat invites generated by admins."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.checkedHistoryImportPeer","type":"messages.CheckedHistoryImportPeer","id":2723014423,"comment":"Contains a confirmation text to be shown to the user, upon importing chat history, click here for more info ».","arguments":[{"name":"confirm_text","type":"string","comment":"A confirmation text to be shown to the user, upon importing chat history »."}]},{"kind":"class","name":"phone.joinAsPeers","type":"phone.JoinAsPeers","id":2951045695,"comment":"A list of peers that can be used to join a group call, presenting yourself as a specific user/channel.","arguments":[{"name":"peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"Peers"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in the peers vector"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the peers vector"}]},{"kind":"class","name":"phone.exportedGroupCallInvite","type":"phone.ExportedGroupCallInvite","id":541839704,"comment":"An invite to a group call or livestream","arguments":[{"name":"link","type":"string","comment":"Invite link"}]},{"kind":"class","name":"groupCallParticipantVideoSourceGroup","type":"GroupCallParticipantVideoSourceGroup","id":3702593719,"comment":"Describes a group of video synchronization source identifiers","arguments":[{"name":"semantics","type":"string","comment":"SDP semantics"},{"name":"sources","type":"int","typeModifiers":{"isVector":true},"comment":"Source IDs"}]},{"kind":"class","name":"groupCallParticipantVideo","type":"GroupCallParticipantVideo","id":1735736008,"comment":"Info about a video stream","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"paused","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the stream is currently paused"},{"name":"endpoint","type":"string","comment":"Endpoint"},{"name":"source_groups","type":"GroupCallParticipantVideoSourceGroup","typeModifiers":{"isVector":true},"comment":"Source groups"},{"name":"audio_source","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Audio source ID"}]},{"kind":"class","name":"stickers.suggestedShortName","type":"stickers.SuggestedShortName","id":2248056895,"comment":"A suggested short name for a stickerpack","arguments":[{"name":"short_name","type":"string","comment":"Suggested short name"}]},{"kind":"class","name":"botCommandScopeDefault","type":"BotCommandScope","id":795652779,"comment":"The commands will be valid in all dialogs","arguments":[]},{"kind":"class","name":"botCommandScopeUsers","type":"BotCommandScope","id":1011811544,"comment":"The specified bot commands will only be valid in all private chats with users.","arguments":[]},{"kind":"class","name":"botCommandScopeChats","type":"BotCommandScope","id":1877059713,"comment":"The specified bot commands will be valid in all groups and supergroups.","arguments":[]},{"kind":"class","name":"botCommandScopeChatAdmins","type":"BotCommandScope","id":3114950762,"comment":"The specified bot commands will be valid only for chat administrators, in all groups and supergroups.","arguments":[]},{"kind":"class","name":"botCommandScopePeer","type":"BotCommandScope","id":3684534653,"comment":"The specified bot commands will be valid only in a specific dialog.","arguments":[{"name":"peer","type":"InputPeer","comment":"The dialog"}]},{"kind":"class","name":"botCommandScopePeerAdmins","type":"BotCommandScope","id":1071145937,"comment":"The specified bot commands will be valid for all admins of the specified group or supergroup.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat"}]},{"kind":"class","name":"botCommandScopePeerUser","type":"BotCommandScope","id":169026035,"comment":"The specified bot commands will be valid only for a specific user in the specified group or supergroup.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat"},{"name":"user_id","type":"InputUser","comment":"The user"}]},{"kind":"class","name":"account.resetPasswordFailedWait","type":"account.ResetPasswordResult","id":3816265825,"comment":"You recently requested a password reset that was canceled, please wait until the specified date before requesting another reset.","arguments":[{"name":"retry_date","type":"int","comment":"Wait until this date before requesting another reset."}]},{"kind":"class","name":"account.resetPasswordRequestedWait","type":"account.ResetPasswordResult","id":3924819069,"comment":"You successfully requested a password reset, please wait until the specified date before finalizing the reset.","arguments":[{"name":"until_date","type":"int","comment":"Wait until this date before finalizing the reset."}]},{"kind":"class","name":"account.resetPasswordOk","type":"account.ResetPasswordResult","id":3911636542,"comment":"The 2FA password was reset successfully.","arguments":[]},{"kind":"class","name":"sponsoredMessage","id":1301522832,"type":"SponsoredMessage","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"recommended","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the message needs to be labeled as \"recommended\" instead of \"sponsored\""},{"name":"can_report","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether this message can be reported as specified here »."},{"name":"random_id","type":"bytes","comment":"Message ID"},{"name":"url","type":"string","comment":"Contains the URL to open when the user clicks on the sponsored message."},{"name":"title","type":"string","comment":"Contains the title of the sponsored message."},{"name":"message","type":"string","comment":"Sponsored message"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text in message."},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.6"},"comment":"If set, contains a custom profile photo bubble that should be displayed for the sponsored message, like for messages sent in groups."},{"name":"media","type":"MessageMedia","typeModifiers":{"predicate":"flags.14"}},{"name":"color","type":"PeerColor","typeModifiers":{"predicate":"flags.13"},"comment":"If set, the sponsored message should use the message accent color » specified in color."},{"name":"button_text","type":"string","comment":"Label of the sponsored message button."},{"name":"sponsor_info","type":"string","typeModifiers":{"predicate":"flags.7"},"comment":"If set, contains additional information about the sponsor to be shown along with the message."},{"name":"additional_info","type":"string","typeModifiers":{"predicate":"flags.8"},"comment":"If set, contains additional information about the sponsored message to be shown along with the message."}],"comment":"A sponsored message."},{"kind":"class","name":"messages.sponsoredMessages","type":"messages.SponsoredMessages","id":3387825543,"comment":"A set of sponsored messages associated to a channel","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"posts_between","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, specifies the minimum number of messages between shown sponsored messages; otherwise, only one sponsored message must be shown after all ordinary messages."},{"name":"messages","type":"SponsoredMessage","typeModifiers":{"isVector":true},"comment":"Sponsored messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in the sponsored messages"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the sponsored messages"}]},{"kind":"class","name":"messages.sponsoredMessagesEmpty","type":"messages.SponsoredMessages","id":406407439,"comment":"No sponsored messages are available.","arguments":[]},{"kind":"class","name":"searchResultsCalendarPeriod","type":"SearchResultsCalendarPeriod","id":3383776159,"comment":"Information about found messages sent on a specific day, used to split the messages in {@link messages.RawSearchResultsCalendar} constructors by days.\n\nMultiple searchResultsCalendarPeriod constructors are returned in {@link messages.RawSearchResultsCalendar}, each containing information about the first, last and total number of messages matching the filter that were sent on a specific day.","arguments":[{"name":"date","type":"int","comment":"The day this object is referring to."},{"name":"min_msg_id","type":"int","comment":"First message ID that was sent on this day."},{"name":"max_msg_id","type":"int","comment":"Last message ID that was sent on this day."},{"name":"count","type":"int","comment":"All messages that were sent on this day."}]},{"kind":"class","name":"messages.searchResultsCalendar","type":"messages.SearchResultsCalendar","id":343859772,"comment":"Information about found messages sent on a specific day","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inexact","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the results may be inexact"},{"name":"count","type":"int","comment":"Total number of results matching query"},{"name":"min_date","type":"int","comment":"Starting timestamp of attached messages"},{"name":"min_msg_id","type":"int","comment":"Ending timestamp of attached messages"},{"name":"offset_id_offset","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}."},{"name":"periods","type":"SearchResultsCalendarPeriod","typeModifiers":{"isVector":true},"comment":"Used to split the messages by days: multiple SearchResultsCalendarPeriod constructors are returned, each containing information about the first, last and total number of messages matching the filter that were sent on a specific day.
This information can be easily used to split the returned messages by day."},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"Messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"searchResultPosition","type":"SearchResultsPosition","id":2137295719,"comment":"Information about a message in a specific position","arguments":[{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"date","type":"int","comment":"When was the message sent"},{"name":"offset","type":"int","comment":"0-based message position in the full list of suitable messages"}]},{"kind":"class","name":"messages.searchResultsPositions","type":"messages.SearchResultsPositions","id":1404185519,"comment":"Information about sparse positions of messages","arguments":[{"name":"count","type":"int","comment":"Total number of found messages"},{"name":"positions","type":"SearchResultsPosition","typeModifiers":{"isVector":true},"comment":"List of message positions"}]},{"kind":"class","name":"channels.sendAsPeers","type":"channels.SendAsPeers","id":4103516358,"comment":"A list of peers that can be used to send messages in a specific group","arguments":[{"name":"peers","type":"SendAsPeer","typeModifiers":{"isVector":true},"comment":"Peers that can be used to send messages to the group"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"users.userFull","type":"users.UserFull","id":997004590,"comment":"Full user information","arguments":[{"name":"full_user","type":"UserFull","comment":"Full user information"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.peerSettings","type":"messages.PeerSettings","id":1753266509,"comment":"Peer settings","arguments":[{"name":"settings","type":"PeerSettings","comment":"Peer settings"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"auth.loggedOut","type":"auth.LoggedOut","id":3282207583,"comment":"Future auth token » to be used on subsequent authorizations","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"future_auth_token","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Future auth token » to be used on subsequent authorizations"}]},{"kind":"class","name":"reactionCount","type":"ReactionCount","id":2748435328,"comment":"Reactions","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chosen_order","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the current user also sent this reaction.
The integer value indicates when was the reaction added: the bigger the value, the newer the reaction."},{"name":"reaction","type":"Reaction","comment":"The reaction."},{"name":"count","type":"int","comment":"Number of users that reacted with this emoji."}]},{"kind":"class","name":"messageReactions","id":171155211,"type":"MessageReactions","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Similar to min objects, used for message reaction » constructors that are the same for all users so they don't have the reactions sent by the current user (you can use {@link messages.RawGetMessagesReactionsRequest} to get the full reaction info)."},{"name":"can_see_list","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether {@link messages.RawGetMessageReactionsListRequest} can be used to see how each specific peer reacted to the message"},{"name":"reactions_as_tags","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set or if there are no reactions, all present and future reactions should be treated as message tags, see here » for more info."},{"name":"results","type":"ReactionCount","typeModifiers":{"isVector":true},"comment":"Reactions"},{"name":"recent_reactions","type":"MessagePeerReaction","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"List of recent peers and their reactions"},{"name":"top_reactors","type":"MessageReactor","typeModifiers":{"predicate":"flags.4","isVector":true}}],"comment":"Message reactions »"},{"kind":"class","name":"messages.messageReactionsList","type":"messages.MessageReactionsList","id":834488621,"comment":"List of peers that reacted to a specific message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of reactions matching query"},{"name":"reactions","type":"MessagePeerReaction","typeModifiers":{"isVector":true},"comment":"List of peers that reacted to a specific message"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates the next offset to use to load more results by invoking {@link messages.RawGetMessageReactionsListRequest}."}]},{"kind":"class","name":"availableReaction","type":"AvailableReaction","id":3229084673,"comment":"Animations associated with a message reaction","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inactive","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If not set, the reaction can be added to new messages and enabled in chats."},{"name":"premium","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this reaction can only be used by Telegram Premium users"},{"name":"reaction","type":"string","comment":"Reaction emoji"},{"name":"title","type":"string","comment":"Reaction description"},{"name":"static_icon","type":"Document","comment":"Static icon for the reaction"},{"name":"appear_animation","type":"Document","comment":"The animated sticker to show when the user opens the reaction dropdown"},{"name":"select_animation","type":"Document","comment":"The animated sticker to show when the user hovers over the reaction"},{"name":"activate_animation","type":"Document","comment":"The animated sticker to show when the reaction is chosen and activated"},{"name":"effect_animation","type":"Document","comment":"The background effect (still an animated sticker) to play under the activate_animation, when the reaction is chosen and activated"},{"name":"around_animation","type":"Document","typeModifiers":{"predicate":"flags.1"},"comment":"The animation that plays around the button when you press an existing reaction (played together with center_icon)."},{"name":"center_icon","type":"Document","typeModifiers":{"predicate":"flags.1"},"comment":"The animation of the emoji inside the button when you press an existing reaction (played together with around_animation)."}]},{"kind":"class","name":"messages.availableReactionsNotModified","type":"messages.AvailableReactions","id":2668042583,"comment":"No new reactions are available","arguments":[]},{"kind":"class","name":"messages.availableReactions","type":"messages.AvailableReactions","id":1989032621,"comment":"Animations and metadata associated with message reactions »","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"reactions","type":"AvailableReaction","typeModifiers":{"isVector":true},"comment":"Animations and metadata associated with message reactions »"}]},{"kind":"class","name":"messagePeerReaction","type":"MessagePeerReaction","id":2356786748,"comment":"How a certain peer reacted to the message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"big","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the specified message reaction » should elicit a bigger and longer reaction"},{"name":"unread","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the reaction wasn't yet marked as read by the current user"},{"name":"my","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Starting from layer 159, {@link messages.RawSendReactionRequest} will send reactions from the peer (user or channel) specified using {@link messages.RawSaveDefaultSendAsRequest}.
If set, this flag indicates that this reaction was sent by us, even if the peer doesn't point to the current account."},{"name":"peer_id","type":"Peer","comment":"Peer that reacted to the message"},{"name":"date","type":"int","comment":"When was this reaction added"},{"name":"reaction","type":"Reaction","comment":"Reaction emoji"}]},{"kind":"class","name":"groupCallStreamChannel","type":"GroupCallStreamChannel","id":2162903215,"comment":"Info about an RTMP stream in a group call or livestream","arguments":[{"name":"channel","type":"int","comment":"Channel ID"},{"name":"scale","type":"int","comment":"Specifies the duration of the video segment to fetch in milliseconds, by bitshifting 1000 to the right scale times: duration_ms := 1000 >> scale."},{"name":"last_timestamp_ms","type":"long","comment":"Last seen timestamp to easily start fetching livestream chunks using {@link RawInputGroupCallStream}"}]},{"kind":"class","name":"phone.groupCallStreamChannels","type":"phone.GroupCallStreamChannels","id":3504636594,"comment":"Info about RTMP streams in a group call or livestream","arguments":[{"name":"channels","type":"GroupCallStreamChannel","typeModifiers":{"isVector":true},"comment":"RTMP streams"}]},{"kind":"class","name":"phone.groupCallStreamRtmpUrl","type":"phone.GroupCallStreamRtmpUrl","id":767505458,"comment":"RTMP URL and stream key to be used in streaming software","arguments":[{"name":"url","type":"string","comment":"RTMP URL"},{"name":"key","type":"string","comment":"Stream key"}]},{"kind":"class","name":"attachMenuBotIconColor","type":"AttachMenuBotIconColor","id":1165423600,"comment":"Represents an attachment menu icon color for bot mini apps »","arguments":[{"name":"name","type":"string","comment":"One of the following values:
light_icon - Color of the attachment menu icon (light mode)
light_text - Color of the attachment menu label, once selected (light mode)
dark_icon - Color of the attachment menu icon (dark mode)
dark_text - Color of the attachment menu label, once selected (dark mode)"},{"name":"color","type":"int","comment":"Color in RGB24 format"}]},{"kind":"class","name":"attachMenuBotIcon","type":"AttachMenuBotIcon","id":2997303403,"comment":"Represents an attachment menu icon for bot mini apps »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"name","type":"string","comment":"One of the following values: note that animated icons must be played when the user clicks on the button, activating the bot mini app.

default_static - Default attachment menu icon in SVG format
placeholder_static - Default placeholder for opened Web Apps in SVG format
ios_static - Attachment menu icon in SVG format for the official iOS app
ios_animated - Animated attachment menu icon in TGS format for the official iOS app
android_animated - Animated attachment menu icon in TGS format for the official Android app
macos_animated - Animated attachment menu icon in TGS format for the official native Mac OS app
ios_side_menu_static - Side menu icon in PNG format for the official iOS app
android_side_menu_static - Side menu icon in SVG format for the official android app
macos_side_menu_static - Side menu icon in PNG format for the official native Mac OS app"},{"name":"icon","type":"Document","comment":"The actual icon file."},{"name":"colors","type":"AttachMenuBotIconColor","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Attachment menu icon colors."}]},{"kind":"class","name":"attachMenuBot","type":"AttachMenuBot","id":3641544190,"comment":"Represents a bot mini app that can be launched from the attachment/side menu »\n\nAt least one of the show_in_attach_menu or the show_in_side_menu flags will always be set.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inactive","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, before launching the mini app the client should ask the user to add the mini app to the attachment/side menu, and only if the user accepts, after invoking {@link messages.RawToggleBotInAttachMenuRequest} the app should be opened."},{"name":"has_settings","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Deprecated flag, can be ignored."},{"name":"request_write_access","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the bot would like to send messages to the user."},{"name":"show_in_attach_menu","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether, when installed, an attachment menu entry should be shown for the Mini App."},{"name":"show_in_side_menu","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether, when installed, an entry in the main view side menu should be shown for the Mini App."},{"name":"side_menu_disclaimer_needed","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If inactive if set and the user hasn't previously accepted the third-party mini apps Terms of Service for this bot, when showing the mini app installation prompt, an additional mandatory checkbox to accept the mini apps TOS and a disclaimer indicating that this Mini App is not affiliated to Telegram should be shown."},{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"short_name","type":"string","comment":"Attachment menu item name"},{"name":"peer_types","type":"AttachMenuPeerType","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"List of dialog types where this attachment menu entry should be shown"},{"name":"icons","type":"AttachMenuBotIcon","typeModifiers":{"isVector":true},"comment":"List of platform-specific static icons and animations to use for the attachment menu button"}]},{"kind":"class","name":"attachMenuBotsNotModified","type":"AttachMenuBots","id":4057500252,"comment":"The list of bot mini apps hasn't changed","arguments":[]},{"kind":"class","name":"attachMenuBots","type":"AttachMenuBots","id":1011024320,"comment":"Represents a list of bot mini apps that can be launched from the attachment menu »","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"bots","type":"AttachMenuBot","typeModifiers":{"isVector":true},"comment":"List of bot mini apps that can be launched from the attachment menu »"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about related users/bots"}]},{"kind":"class","name":"attachMenuBotsBot","type":"AttachMenuBotsBot","id":2478794367,"comment":"Represents a bot mini app that can be launched from the attachment menu »","arguments":[{"name":"bot","type":"AttachMenuBot","comment":"Represents a bot mini app that can be launched from the attachment menu »
"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about related users and bots"}]},{"kind":"class","name":"webViewResultUrl","type":"WebViewResult","id":1294139288,"comment":"Contains the webview URL with appropriate theme and user info parameters added","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"fullsize","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, the app must be opened in fullsize mode instead of compact mode."},{"name":"query_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"Webview session ID (only returned by inline button mini apps, menu button mini apps, attachment menu mini apps)."},{"name":"url","type":"string","comment":"Webview URL to open"}]},{"kind":"class","name":"webViewMessageSent","type":"WebViewMessageSent","id":211046684,"comment":"Info about a sent inline webview message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"msg_id","type":"InputBotInlineMessageID","typeModifiers":{"predicate":"flags.0"},"comment":"Message ID"}]},{"kind":"class","name":"botMenuButtonDefault","type":"BotMenuButton","id":1966318984,"comment":"Placeholder bot menu button never returned to users: see the docs for more info.","arguments":[]},{"kind":"class","name":"botMenuButtonCommands","type":"BotMenuButton","id":1113113093,"comment":"Bot menu button that opens the bot command list when clicked.","arguments":[]},{"kind":"class","name":"botMenuButton","type":"BotMenuButton","id":3350559974,"comment":"Bot menu button that opens a web app when clicked.","arguments":[{"name":"text","type":"string","comment":"Title to be displayed on the menu button instead of 'Menu'"},{"name":"url","type":"string","comment":"URL of a web app to open when the user clicks on the button"}]},{"kind":"class","name":"account.savedRingtonesNotModified","type":"account.SavedRingtones","id":4227262641,"comment":"The notification sound list hasn't changed.","arguments":[]},{"kind":"class","name":"account.savedRingtones","type":"account.SavedRingtones","id":3253284037,"comment":"A list of saved notification sounds","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"ringtones","type":"Document","typeModifiers":{"isVector":true},"comment":"Saved notification sounds"}]},{"kind":"class","name":"notificationSoundDefault","type":"NotificationSound","id":2548612798,"comment":"Indicates the default notification sound should be used","arguments":[]},{"kind":"class","name":"notificationSoundNone","type":"NotificationSound","id":1863070943,"comment":"No notification sound should be used","arguments":[]},{"kind":"class","name":"notificationSoundLocal","type":"NotificationSound","id":2198575844,"comment":"Indicates a specific local notification sound should be used","arguments":[{"name":"title","type":"string","comment":"Notification sound title"},{"name":"data","type":"string","comment":"Notification sound identifier (arbitrary data used by the client to identify a specific local notification sound)"}]},{"kind":"class","name":"notificationSoundRingtone","type":"NotificationSound","id":4285300809,"comment":"A specific previously uploaded notification sound should be used","arguments":[{"name":"id","type":"long","comment":"Document ID of notification sound uploaded using {@link account.RawUploadRingtoneRequest}"}]},{"kind":"class","name":"account.savedRingtone","type":"account.SavedRingtone","id":3072737133,"comment":"The notification sound was already in MP3 format and was saved without any modification","arguments":[]},{"kind":"class","name":"account.savedRingtoneConverted","type":"account.SavedRingtone","id":523271863,"comment":"The notification sound was not in MP3 format and was successfully converted and saved, use the returned Document to refer to the notification sound from now on","arguments":[{"name":"document","type":"Document","comment":"The converted notification sound"}]},{"kind":"class","name":"attachMenuPeerTypeSameBotPM","type":"AttachMenuPeerType","id":2104224014,"comment":"The bot attachment menu entry is available in the chat with the bot that offers it","arguments":[]},{"kind":"class","name":"attachMenuPeerTypeBotPM","type":"AttachMenuPeerType","id":3274439194,"comment":"The bot attachment menu entry is available in private chats with other bots (excluding the bot that offers the current attachment menu)","arguments":[]},{"kind":"class","name":"attachMenuPeerTypePM","type":"AttachMenuPeerType","id":4047950623,"comment":"The bot attachment menu entry is available in private chats with other users (not bots)","arguments":[]},{"kind":"class","name":"attachMenuPeerTypeChat","type":"AttachMenuPeerType","id":84480319,"comment":"The bot attachment menu entry is available in groups and supergroups","arguments":[]},{"kind":"class","name":"attachMenuPeerTypeBroadcast","type":"AttachMenuPeerType","id":2080104188,"comment":"The bot attachment menu entry is available in channels","arguments":[]},{"kind":"class","name":"inputInvoiceMessage","type":"InputInvoice","id":3317000281,"comment":"An invoice contained in a {@link RawMessageMediaInvoice} message or paid media ».","arguments":[{"name":"peer","type":"InputPeer","comment":"Chat where the invoice/paid media was sent"},{"name":"msg_id","type":"int","comment":"Message ID"}]},{"kind":"class","name":"inputInvoiceSlug","type":"InputInvoice","id":3274099439,"comment":"An invoice slug taken from an invoice deep link or from the premium_invoice_slug app config parameter »","arguments":[{"name":"slug","type":"string","comment":"The invoice slug"}]},{"kind":"class","name":"inputInvoicePremiumGiftCode","type":"InputInvoice","id":2560125965,"comment":"Used if the user wishes to start a channel/supergroup giveaway or send some giftcodes to members of a channel/supergroup, in exchange for boosts.","arguments":[{"name":"purpose","type":"InputStorePaymentPurpose","comment":"Should be populated with {@link RawInputStorePaymentPremiumGiveaway} for giveaways and {@link RawInputStorePaymentPremiumGiftCode} for gifts."},{"name":"option","type":"PremiumGiftCodeOption","comment":"Should be populated with one of the giveaway options returned by {@link payments.RawGetPremiumGiftCodeOptionsRequest}, see the giveaways » documentation for more info."}]},{"kind":"class","name":"inputInvoiceStars","type":"InputInvoice","id":1710230755,"comment":"Used to top up the Telegram Stars balance of the current account or someone else's account.","arguments":[{"name":"purpose","type":"InputStorePaymentPurpose","comment":"Either an {@link RawInputStorePaymentStarsTopup} or an {@link RawInputStorePaymentStarsGift}."}]},{"kind":"class","name":"inputInvoiceChatInviteSubscription","type":"InputInvoice","id":887591921,"arguments":[{"name":"hash","type":"string"}]},{"kind":"class","name":"inputInvoiceStarGift","id":634962392,"type":"InputInvoice","arguments":[{"name":"flags","type":"#"},{"name":"hide_name","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"user_id","type":"InputUser"},{"name":"gift_id","type":"long"},{"name":"message","type":"TextWithEntities","typeModifiers":{"predicate":"flags.1"}}]},{"kind":"class","name":"payments.exportedInvoice","type":"payments.ExportedInvoice","id":2932919257,"comment":"Exported invoice deep link","arguments":[{"name":"url","type":"string","comment":"Exported invoice deep link"}]},{"kind":"class","name":"messages.transcribedAudio","type":"messages.TranscribedAudio","id":3485063511,"comment":"Transcribed text from a voice message »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pending","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the transcription is partial because audio transcription is still in progress, if set the user may receive further {@link RawUpdateTranscribedAudio} updates with the updated transcription."},{"name":"transcription_id","type":"long","comment":"Transcription ID"},{"name":"text","type":"string","comment":"Transcripted text"},{"name":"trial_remains_num","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For non-Premium users, this flag will be set, indicating the remaining transcriptions in the free trial period."},{"name":"trial_remains_until_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For non-Premium users, this flag will be set, indicating the date when the trial_remains_num counter will be reset to the maximum value of transcribe_audio_trial_weekly_number."}]},{"kind":"class","name":"help.premiumPromo","type":"help.PremiumPromo","id":1395946908,"comment":"Telegram Premium promotion information\n\nNote that the video_sections+videos fields are a list of videos, and the corresponding premium feature identifiers.
\nThey're equivalent to a section => video dictionary, with keys from video_section and values from videos.
\nThe keys in video_sections correspond to a specific feature identifier, and the associated promotional video should be shown when the associated feature row is clicked.","arguments":[{"name":"status_text","type":"string","comment":"Description of the current state of the user's Telegram Premium subscription"},{"name":"status_entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"},{"name":"video_sections","type":"string","typeModifiers":{"isVector":true},"comment":"A list of premium feature identifiers », associated to each video"},{"name":"videos","type":"Document","typeModifiers":{"isVector":true},"comment":"A list of videos"},{"name":"period_options","type":"PremiumSubscriptionOption","typeModifiers":{"isVector":true},"comment":"Telegram Premium subscription options"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related user information"}]},{"kind":"class","name":"inputStorePaymentPremiumSubscription","type":"InputStorePaymentPurpose","id":2792693350,"comment":"Info about a Telegram Premium purchase","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"restore","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Pass true if this is a restore of a Telegram Premium purchase; only for the App Store"},{"name":"upgrade","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Pass true if this is an upgrade from a monthly subscription to a yearly subscription; only for App Store"}]},{"kind":"class","name":"inputStorePaymentGiftPremium","type":"InputStorePaymentPurpose","id":1634697192,"comment":"Info about a gifted Telegram Premium purchase","arguments":[{"name":"user_id","type":"InputUser","comment":"The user to which the Telegram Premium subscription was gifted"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"inputStorePaymentPremiumGiftCode","type":"InputStorePaymentPurpose","id":2743099199,"comment":"Used to gift Telegram Premium subscriptions only to some specific subscribers of a channel/supergroup or to some of our contacts, see here » for more info on giveaways and gifts.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"The users that will receive the Telegram Premium subscriptions."},{"name":"boost_peer","type":"InputPeer","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the gifts will be sent on behalf of a channel/supergroup we are an admin of, which will also assign some boosts to it. Otherwise, the gift will be sent directly from the currently logged in user, and we will gain some extra boost slots. See here » for more info on giveaways and gifts."},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"inputStorePaymentPremiumGiveaway","type":"InputStorePaymentPurpose","id":369444042,"comment":"Used to pay for a giveaway, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"only_new_subscribers","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, only new subscribers starting from the giveaway creation date will be able to participate to the giveaway."},{"name":"winners_are_visible","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, giveaway winners are public and will be listed in a {@link RawMessageMediaGiveawayResults} message that will be automatically sent to the channel once the giveaway ends."},{"name":"boost_peer","type":"InputPeer","comment":"The channel/supergroup starting the giveaway, that the user must join to participate, that will receive the giveaway boosts; see here » for more info on giveaways."},{"name":"additional_peers","type":"InputPeer","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Additional channels that the user must join to participate to the giveaway can be specified here."},{"name":"countries_iso2","type":"string","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"The set of users that can participate to the giveaway can be restricted by passing here an explicit whitelist of up to giveaway_countries_max countries, specified as two-letter ISO 3166-1 alpha-2 country codes."},{"name":"prize_description","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Can contain a textual description of additional giveaway prizes."},{"name":"random_id","type":"long","comment":"Random ID to avoid resending the giveaway"},{"name":"until_date","type":"int","comment":"The end date of the giveaway, must be at most giveaway_period_max seconds in the future; see here » for more info on giveaways."},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"inputStorePaymentStarsTopup","type":"InputStorePaymentPurpose","id":3722252118,"comment":"Used to top up the Telegram Stars balance of the current account.","arguments":[{"name":"stars","type":"long","comment":"Amount of stars to topup"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"inputStorePaymentStarsGift","type":"InputStorePaymentPurpose","id":494149367,"comment":"Used to gift Telegram Stars to a friend.","arguments":[{"name":"user_id","type":"InputUser","comment":"The user to which the stars should be gifted."},{"name":"stars","type":"long","comment":"Amount of stars to gift"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"inputStorePaymentStarsGiveaway","type":"InputStorePaymentPurpose","id":1964968186,"arguments":[{"name":"flags","type":"#"},{"name":"only_new_subscribers","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"winners_are_visible","type":"true","typeModifiers":{"predicate":"flags.3"}},{"name":"stars","type":"long"},{"name":"boost_peer","type":"InputPeer"},{"name":"additional_peers","type":"InputPeer","typeModifiers":{"predicate":"flags.1","isVector":true}},{"name":"countries_iso2","type":"string","typeModifiers":{"predicate":"flags.2","isVector":true}},{"name":"prize_description","type":"string","typeModifiers":{"predicate":"flags.4"}},{"name":"random_id","type":"long"},{"name":"until_date","type":"int"},{"name":"currency","type":"string"},{"name":"amount","type":"long"},{"name":"users","type":"int"}]},{"kind":"class","name":"premiumGiftOption","type":"PremiumGiftOption","id":1958953753,"comment":"Telegram Premium gift option","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"months","type":"int","comment":"Duration of gifted Telegram Premium subscription"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"bot_url","type":"string","comment":"An invoice deep link » to an invoice for in-app payment, using the official Premium bot; may be empty if direct payment isn't available."},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"An identifier for the App Store/Play Store product associated with the Premium gift."}]},{"kind":"class","name":"paymentFormMethod","type":"PaymentFormMethod","id":2298016283,"comment":"Represents an additional payment method","arguments":[{"name":"url","type":"string","comment":"URL to open in a webview to process the payment"},{"name":"title","type":"string","comment":"Payment method description"}]},{"kind":"class","name":"emojiStatusEmpty","type":"EmojiStatus","id":769727150,"comment":"No emoji status is set","arguments":[]},{"kind":"class","name":"emojiStatus","type":"EmojiStatus","id":2459656605,"comment":"An emoji status","arguments":[{"name":"document_id","type":"long","comment":"Custom emoji document ID"}]},{"kind":"class","name":"emojiStatusUntil","type":"EmojiStatus","id":4197492935,"comment":"An emoji status valid until the specified date","arguments":[{"name":"document_id","type":"long","comment":"Custom emoji document ID"},{"name":"until","type":"int","comment":"This status is valid until this date"}]},{"kind":"class","name":"account.emojiStatusesNotModified","type":"account.EmojiStatuses","id":3498894917,"comment":"The server-side list of emoji statuses hasn't changed","arguments":[]},{"kind":"class","name":"account.emojiStatuses","type":"account.EmojiStatuses","id":2428790737,"comment":"A list of emoji statuses","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"statuses","type":"EmojiStatus","typeModifiers":{"isVector":true},"comment":"Emoji statuses"}]},{"kind":"class","name":"reactionEmpty","type":"Reaction","id":2046153753,"comment":"No reaction","arguments":[]},{"kind":"class","name":"reactionEmoji","type":"Reaction","id":455247544,"comment":"Normal emoji message reaction","arguments":[{"name":"emoticon","type":"string","comment":"Emoji"}]},{"kind":"class","name":"reactionCustomEmoji","type":"Reaction","id":2302016627,"comment":"Custom emoji message reaction","arguments":[{"name":"document_id","type":"long","comment":"Custom emoji document ID"}]},{"kind":"class","name":"reactionPaid","type":"Reaction","id":1379771627,"arguments":[]},{"kind":"class","name":"chatReactionsNone","type":"ChatReactions","id":3942396604,"comment":"No reactions are allowed","arguments":[]},{"kind":"class","name":"chatReactionsAll","type":"ChatReactions","id":1385335754,"comment":"All reactions or all non-custom reactions are allowed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"allow_custom","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow custom reactions"}]},{"kind":"class","name":"chatReactionsSome","type":"ChatReactions","id":1713193015,"comment":"Some reactions are allowed","arguments":[{"name":"reactions","type":"Reaction","typeModifiers":{"isVector":true},"comment":"Allowed set of reactions: the reactions_in_chat_max configuration field indicates the maximum number of reactions that can be specified in this field."}]},{"kind":"class","name":"messages.reactionsNotModified","type":"messages.Reactions","id":2960120799,"comment":"The server-side list of message reactions hasn't changed","arguments":[]},{"kind":"class","name":"messages.reactions","type":"messages.Reactions","id":3942512406,"comment":"List of message reactions","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"reactions","type":"Reaction","typeModifiers":{"isVector":true},"comment":"Reactions"}]},{"kind":"class","name":"emailVerifyPurposeLoginSetup","type":"EmailVerifyPurpose","id":1128644211,"comment":"Email verification purpose: setup login email","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash as specified by the documentation"}]},{"kind":"class","name":"emailVerifyPurposeLoginChange","type":"EmailVerifyPurpose","id":1383932651,"comment":"Email verification purpose: change login email","arguments":[]},{"kind":"class","name":"emailVerifyPurposePassport","type":"EmailVerifyPurpose","id":3153401477,"comment":"Verify an email for use in telegram passport","arguments":[]},{"kind":"class","name":"emailVerificationCode","type":"EmailVerification","id":2452510121,"comment":"Email verification code","arguments":[{"name":"code","type":"string","comment":"Received verification code"}]},{"kind":"class","name":"emailVerificationGoogle","type":"EmailVerification","id":3683688130,"comment":"Google ID email verification token","arguments":[{"name":"token","type":"string","comment":"Token"}]},{"kind":"class","name":"emailVerificationApple","type":"EmailVerification","id":2530243837,"comment":"Apple ID email verification token","arguments":[{"name":"token","type":"string","comment":"Token"}]},{"kind":"class","name":"account.emailVerified","type":"account.EmailVerified","id":731303195,"comment":"The email was verified correctly.","arguments":[{"name":"email","type":"string","comment":"The verified email address."}]},{"kind":"class","name":"account.emailVerifiedLogin","type":"account.EmailVerified","id":3787132257,"comment":"The email was verified correctly, and a login code was just sent to it.","arguments":[{"name":"email","type":"string","comment":"The verified email address."},{"name":"sent_code","type":"auth.SentCode","comment":"Info about the sent login code"}]},{"kind":"class","name":"premiumSubscriptionOption","type":"PremiumSubscriptionOption","id":1596792306,"comment":"Describes a Telegram Premium subscription option","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"current","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this subscription option is currently in use."},{"name":"can_purchase_upgrade","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this subscription option can be used to upgrade the existing Telegram Premium subscription. When upgrading Telegram Premium subscriptions bought through stores, make sure that the store transaction ID is equal to transaction, to avoid upgrading someone else's account, if the client is currently logged into multiple accounts."},{"name":"transaction","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Identifier of the last in-store transaction for the currently used subscription on the current account."},{"name":"months","type":"int","comment":"Duration of subscription in months"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"bot_url","type":"string","comment":"Deep link used to initiate payment"},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Store product ID, only for official apps"}]},{"kind":"class","name":"sendAsPeer","type":"SendAsPeer","id":3088871476,"comment":"Indicates a peer that can be used to send messages","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"premium_required","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether a Telegram Premium account is required to send messages as this peer"},{"name":"peer","type":"Peer","comment":"Peer"}]},{"kind":"class","name":"messageExtendedMediaPreview","type":"MessageExtendedMedia","id":2908916936,"comment":"Paid media preview for not yet purchased paid media, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"w","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Width"},{"name":"h","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Height"},{"name":"thumb","type":"PhotoSize","typeModifiers":{"predicate":"flags.1"},"comment":"Extremely low resolution thumbnail."},{"name":"video_duration","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Video duration for videos."}]},{"kind":"class","name":"messageExtendedMedia","type":"MessageExtendedMedia","id":3997670500,"comment":"Already purchased paid media, see here » for more info.","arguments":[{"name":"media","type":"MessageMedia","comment":"The media we purchased."}]},{"kind":"class","name":"stickerKeyword","type":"StickerKeyword","id":4244550300,"comment":"Keywords for a certain sticker","arguments":[{"name":"document_id","type":"long","comment":"Sticker ID"},{"name":"keyword","type":"string","typeModifiers":{"isVector":true},"comment":"Keywords"}]},{"kind":"class","name":"username","type":"Username","id":3020371527,"comment":"Contains information about a username.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"editable","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the username is editable, meaning it wasn't bought on fragment."},{"name":"active","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the username is active."},{"name":"username","type":"string","comment":"The username."}]},{"kind":"class","name":"forumTopicDeleted","type":"ForumTopic","id":37687451,"comment":"Represents a deleted forum topic.","arguments":[{"name":"id","type":"int","comment":"The ID of the deleted forum topic."}]},{"kind":"class","name":"forumTopic","type":"ForumTopic","id":1903173033,"comment":"Represents a forum topic.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the topic was created by the current user"},{"name":"closed","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the topic is closed (no messages can be sent to it)"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the topic is pinned"},{"name":"short","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this constructor is a reduced version of the full topic information.
If set, only the my, closed, id, date, title, icon_color, icon_emoji_id and from_id parameters will contain valid information.
Reduced info is usually only returned in topic-related admin log events » and in the {@link messages.RawChannelMessages} constructor: if needed, full information can be fetched using {@link channels.RawGetForumTopicsByIDRequest}."},{"name":"hidden","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether the topic is hidden (only valid for the \"General\" topic, id=1)"},{"name":"id","type":"int","comment":"Topic ID"},{"name":"date","type":"int","comment":"Topic creation date"},{"name":"title","type":"string","comment":"Topic title"},{"name":"icon_color","type":"int","comment":"If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F."},{"name":"icon_emoji_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the custom emoji used as topic icon."},{"name":"top_message","type":"int","comment":"ID of the last message that was sent to this topic"},{"name":"read_inbox_max_id","type":"int","comment":"Position up to which all incoming messages are read."},{"name":"read_outbox_max_id","type":"int","comment":"Position up to which all outgoing messages are read."},{"name":"unread_count","type":"int","comment":"Number of unread messages"},{"name":"unread_mentions_count","type":"int","comment":"Number of unread mentions"},{"name":"unread_reactions_count","type":"int","comment":"Number of unread reactions to messages you sent"},{"name":"from_id","type":"Peer","comment":"ID of the peer that created the topic"},{"name":"notify_settings","type":"PeerNotifySettings","comment":"Notification settings"},{"name":"draft","type":"DraftMessage","typeModifiers":{"predicate":"flags.4"},"comment":"Message draft"}]},{"kind":"class","name":"messages.forumTopics","type":"messages.ForumTopics","id":913709011,"comment":"Contains information about multiple forum topics","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"order_by_create_date","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the returned topics are ordered by creation date; if set, pagination by offset_date should use {@link RawForumTopic}.date; otherwise topics are ordered by the last message date, so paginate by the date of the message referenced by {@link RawForumTopic}.top_message."},{"name":"count","type":"int","comment":"Total number of topics matching query; may be more than the topics contained in topics, in which case pagination is required."},{"name":"topics","type":"ForumTopic","typeModifiers":{"isVector":true},"comment":"Forum topics"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"Related messages (contains the messages mentioned by {@link RawForumTopic}.top_message)."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Related chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related users"},{"name":"pts","type":"int","comment":"Event count after generation"}]},{"kind":"class","name":"defaultHistoryTTL","type":"DefaultHistoryTTL","id":1135897376,"comment":"Contains info about the default value of the Time-To-Live setting, applied to all new chats.","arguments":[{"name":"period","type":"int","comment":"Time-To-Live setting applied to all new chats."}]},{"kind":"class","name":"exportedContactToken","type":"ExportedContactToken","id":1103040667,"comment":"Describes a temporary profile link.","arguments":[{"name":"url","type":"string","comment":"The temporary profile link."},{"name":"expires","type":"int","comment":"Its expiration date"}]},{"kind":"class","name":"requestPeerTypeUser","type":"RequestPeerType","id":1597737472,"comment":"Choose a user.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bot","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow choosing only bots."},{"name":"premium","type":"Bool","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to allow choosing only Premium users."}]},{"kind":"class","name":"requestPeerTypeChat","type":"RequestPeerType","id":3387977243,"comment":"Choose a chat or supergroup","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow only choosing chats or supergroups that were created by the current user."},{"name":"bot_participant","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to allow only choosing chats or supergroups where the bot is a participant."},{"name":"has_username","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"If specified, allows only choosing channels with or without a username, according to the value of Bool."},{"name":"forum","type":"Bool","typeModifiers":{"predicate":"flags.4"},"comment":"If specified, allows only choosing chats or supergroups that are or aren't forums, according to the value of Bool."},{"name":"user_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.1"},"comment":"If specified, allows only choosing chats or supergroups where the current user is an admin with at least the specified admin rights."},{"name":"bot_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.2"},"comment":"If specified, allows only choosing chats or supergroups where the bot is an admin with at least the specified admin rights."}]},{"kind":"class","name":"requestPeerTypeBroadcast","type":"RequestPeerType","id":865857388,"comment":"Choose a channel","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow only choosing channels that were created by the current user."},{"name":"has_username","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"If specified, allows only choosing channels with or without a username, according to the value of Bool."},{"name":"user_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.1"},"comment":"If specified, allows only choosing channels where the current user is an admin with at least the specified admin rights."},{"name":"bot_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.2"},"comment":"If specified, allows only choosing channels where the bot is an admin with at least the specified admin rights."}]},{"kind":"class","name":"emojiListNotModified","type":"EmojiList","id":1209970170,"comment":"The list of custom emojis hasn't changed.","arguments":[]},{"kind":"class","name":"emojiList","type":"EmojiList","id":2048790993,"comment":"Represents a list of custom emojis.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"document_id","type":"long","typeModifiers":{"isVector":true},"comment":"Custom emoji IDs"}]},{"kind":"class","name":"emojiGroup","type":"EmojiGroup","id":2056961449,"comment":"Represents an emoji category.","arguments":[{"name":"title","type":"string","comment":"Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on..."},{"name":"icon_emoji_id","type":"long","comment":"A single custom emoji used as preview for the category."},{"name":"emoticons","type":"string","typeModifiers":{"isVector":true},"comment":"A list of UTF-8 emojis, matching the category."}]},{"kind":"class","name":"emojiGroupGreeting","type":"EmojiGroup","id":2161274055,"comment":"Represents an emoji category, that should be moved to the top of the list when choosing a sticker for a business introduction","arguments":[{"name":"title","type":"string","comment":"Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on..."},{"name":"icon_emoji_id","type":"long","comment":"A single custom emoji used as preview for the category."},{"name":"emoticons","type":"string","typeModifiers":{"isVector":true},"comment":"A list of UTF-8 emojis, matching the category."}]},{"kind":"class","name":"emojiGroupPremium","type":"EmojiGroup","id":154914612,"comment":"An emoji category, used to select all Premium-only stickers (i.e. those with a Premium effect »)/Premium-only custom emojis (i.e. those where the {@link RawDocumentAttributeCustomEmoji}.free flag is not set)","arguments":[{"name":"title","type":"string","comment":"Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on..."},{"name":"icon_emoji_id","type":"long","comment":"A single custom emoji used as preview for the category."}]},{"kind":"class","name":"messages.emojiGroupsNotModified","type":"messages.EmojiGroups","id":1874111879,"comment":"The list of emoji categories hasn't changed.","arguments":[]},{"kind":"class","name":"messages.emojiGroups","type":"messages.EmojiGroups","id":2283780427,"comment":"Represents a list of emoji categories.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"groups","type":"EmojiGroup","typeModifiers":{"isVector":true},"comment":"A list of emoji categories."}]},{"kind":"class","name":"textWithEntities","type":"TextWithEntities","id":1964978502,"comment":"Styled text with message entities","arguments":[{"name":"text","type":"string","comment":"Text"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"}]},{"kind":"class","name":"messages.translateResult","type":"messages.TranslatedText","id":870003448,"comment":"Translated text with entities","arguments":[{"name":"result","type":"TextWithEntities","typeModifiers":{"isVector":true},"comment":"Text+entities, for each input message."}]},{"kind":"class","name":"autoSaveSettings","type":"AutoSaveSettings","id":3360175310,"comment":"Media autosave settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"photos","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether photos should be autosaved to the gallery."},{"name":"videos","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether videos should be autosaved to the gallery."},{"name":"video_max_size","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"If set, specifies a size limit for autosavable videos"}]},{"kind":"class","name":"autoSaveException","type":"AutoSaveException","id":2170563911,"comment":"Peer-specific media autosave settings","arguments":[{"name":"peer","type":"Peer","comment":"The peer"},{"name":"settings","type":"AutoSaveSettings","comment":"Media autosave settings"}]},{"kind":"class","name":"account.autoSaveSettings","type":"account.AutoSaveSettings","id":1279133341,"comment":"Contains media autosave settings","arguments":[{"name":"users_settings","type":"AutoSaveSettings","comment":"Default media autosave settings for private chats"},{"name":"chats_settings","type":"AutoSaveSettings","comment":"Default media autosave settings for groups and supergroups"},{"name":"broadcasts_settings","type":"AutoSaveSettings","comment":"Default media autosave settings for channels"},{"name":"exceptions","type":"AutoSaveException","typeModifiers":{"isVector":true},"comment":"Peer-specific granular autosave settings"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in the peer-specific granular autosave settings"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the peer-specific granular autosave settings"}]},{"kind":"class","name":"help.appConfigNotModified","type":"help.AppConfig","id":2094949405,"comment":"The client configuration parameters haven't changed","arguments":[]},{"kind":"class","name":"help.appConfig","type":"help.AppConfig","id":3709368366,"comment":"Contains various client configuration parameters","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"config","type":"JSONValue","comment":"Client configuration parameters"}]},{"kind":"class","name":"inputBotAppID","type":"InputBotApp","id":2837495162,"comment":"Used to fetch information about a direct link Mini App by its ID","arguments":[{"name":"id","type":"long","comment":"direct link Mini App ID."},{"name":"access_hash","type":"long","comment":"Access hash, obtained from the {@link RawBotApp} constructor."}]},{"kind":"class","name":"inputBotAppShortName","type":"InputBotApp","id":2425095175,"comment":"Used to fetch information about a direct link Mini App by its short name","arguments":[{"name":"bot_id","type":"InputUser","comment":"ID of the bot that owns the bot mini app"},{"name":"short_name","type":"string","comment":"Short name, obtained from a Direct Mini App deep link"}]},{"kind":"class","name":"botAppNotModified","type":"BotApp","id":1571189943,"comment":"Bot app info hasn't changed.","arguments":[]},{"kind":"class","name":"botApp","type":"BotApp","id":2516373974,"comment":"Contains information about a direct link Mini App.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"long","comment":"bot mini app ID"},{"name":"access_hash","type":"long","comment":"bot mini app access hash"},{"name":"short_name","type":"string","comment":"bot mini app short name, used to generate Direct Mini App deep links."},{"name":"title","type":"string","comment":"bot mini app title."},{"name":"description","type":"string","comment":"bot mini app description."},{"name":"photo","type":"Photo","comment":"bot mini app photo."},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.0"},"comment":"bot mini app animation."},{"name":"hash","type":"long","comment":"Hash to pass to {@link messages.RawGetBotAppRequest}, to avoid refetching bot app info if it hasn't changed."}]},{"kind":"class","name":"messages.botApp","type":"messages.BotApp","id":3947933173,"comment":"Contains information about a direct link Mini App","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inactive","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the web app was never used by the user, and confirmation must be asked from the user before opening it."},{"name":"request_write_access","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"The bot is asking permission to send messages to the user: if the user agrees, set the write_allowed flag when invoking {@link messages.RawRequestAppWebViewRequest}."},{"name":"has_settings","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Deprecated flag, can be ignored."},{"name":"app","type":"BotApp","comment":"Bot app information"}]},{"kind":"class","name":"inlineBotWebView","type":"InlineBotWebView","id":3044185557,"comment":"Specifies an inline mode mini app button, shown on top of the inline query results list.","arguments":[{"name":"text","type":"string","comment":"Text of the button"},{"name":"url","type":"string","comment":"Webapp URL"}]},{"kind":"class","name":"readParticipantDate","type":"ReadParticipantDate","id":1246753138,"comment":"Contains info about when a certain participant has read a message","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"date","type":"int","comment":"When the user read the message"}]},{"kind":"class","name":"inputChatlistDialogFilter","type":"InputChatlist","id":4091599411,"comment":"Folder ID","arguments":[{"name":"filter_id","type":"int","comment":"Folder ID"}]},{"kind":"class","name":"exportedChatlistInvite","type":"ExportedChatlistInvite","id":206668204,"comment":"Exported chat folder deep link ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Name of the link"},{"name":"url","type":"string","comment":"The chat folder deep link »."},{"name":"peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"Peers to import"}]},{"kind":"class","name":"chatlists.exportedChatlistInvite","type":"chatlists.ExportedChatlistInvite","id":283567014,"comment":"Info about an exported chat folder deep link ».","arguments":[{"name":"filter","type":"DialogFilter","comment":"Folder ID"},{"name":"invite","type":"ExportedChatlistInvite","comment":"The exported chat folder deep link »."}]},{"kind":"class","name":"chatlists.exportedInvites","type":"chatlists.ExportedInvites","id":279670215,"comment":"Info about multiple chat folder deep links ».","arguments":[{"name":"invites","type":"ExportedChatlistInvite","typeModifiers":{"isVector":true},"comment":"The chat folder deep links »."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Related chat information"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related user information"}]},{"kind":"class","name":"chatlists.chatlistInviteAlready","type":"chatlists.ChatlistInvite","id":4203214425,"comment":"Updated info about a chat folder deep link » we already imported.","arguments":[{"name":"filter_id","type":"int","comment":"ID of the imported folder"},{"name":"missing_peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"New peers to be imported"},{"name":"already_peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"Peers that were already imported"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Related chat information"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related user information"}]},{"kind":"class","name":"chatlists.chatlistInvite","type":"chatlists.ChatlistInvite","id":500007837,"comment":"Info about a chat folder deep link ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Name of the link"},{"name":"emoticon","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Emoji to use as icon for the folder."},{"name":"peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"Supergroups and channels to join"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Related chat information"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related user information"}]},{"kind":"class","name":"chatlists.chatlistUpdates","type":"chatlists.ChatlistUpdates","id":2478671757,"comment":"Updated information about a chat folder deep link ».","arguments":[{"name":"missing_peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"New peers to join"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Related chat information"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related user information"}]},{"kind":"class","name":"bots.botInfo","type":"bots.BotInfo","id":3903288752,"comment":"Localized information about a bot.","arguments":[{"name":"name","type":"string","comment":"Bot name"},{"name":"about","type":"string","comment":"Bot about text"},{"name":"description","type":"string","comment":"Bot description"}]},{"kind":"class","name":"messagePeerVote","type":"MessagePeerVote","id":3066834268,"comment":"How a peer voted in a poll","arguments":[{"name":"peer","type":"Peer","comment":"Peer ID"},{"name":"option","type":"bytes","comment":"The option chosen by the peer"},{"name":"date","type":"int","comment":"When did the peer cast the vote"}]},{"kind":"class","name":"messagePeerVoteInputOption","type":"MessagePeerVote","id":1959634180,"comment":"How a peer voted in a poll (reduced constructor, returned if an option was provided to {@link messages.RawGetPollVotesRequest})","arguments":[{"name":"peer","type":"Peer","comment":"The peer that voted for the queried option"},{"name":"date","type":"int","comment":"When did the peer cast the vote"}]},{"kind":"class","name":"messagePeerVoteMultiple","type":"MessagePeerVote","id":1177089766,"comment":"How a peer voted in a multiple-choice poll","arguments":[{"name":"peer","type":"Peer","comment":"Peer ID"},{"name":"options","type":"bytes","typeModifiers":{"isVector":true},"comment":"Options chosen by the peer"},{"name":"date","type":"int","comment":"When did the peer cast their votes"}]},{"kind":"class","name":"storyViews","type":"StoryViews","id":2371443926,"comment":"Aggregated view and reaction information of a story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_viewers","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, indicates that the viewers list is currently viewable, and was not yet deleted because the story has expired while the user didn't have a Premium account."},{"name":"views_count","type":"int","comment":"View counter of the story"},{"name":"forwards_count","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Forward counter of the story"},{"name":"reactions","type":"ReactionCount","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"All reactions sent to this story"},{"name":"reactions_count","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Number of reactions added to the story"},{"name":"recent_viewers","type":"int53","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"User IDs of some recent viewers of the story"}]},{"kind":"class","name":"storyItemDeleted","type":"StoryItem","id":1374088783,"comment":"Represents a previously active story, that was deleted","arguments":[{"name":"id","type":"int","comment":"Story ID"}]},{"kind":"class","name":"storyItemSkipped","type":"StoryItem","id":4289579283,"comment":"Represents an active story, whose full information was omitted for space and performance reasons; use {@link stories.RawGetStoriesByIDRequest} to fetch full info about the skipped story when and if needed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"close_friends","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Whether this story can only be viewed by our close friends, see here » for more info"},{"name":"id","type":"int","comment":"Story ID"},{"name":"date","type":"int","comment":"When was the story posted."},{"name":"expire_date","type":"int","comment":"When does the story expire."}]},{"kind":"class","name":"storyItem","type":"StoryItem","id":2041735716,"comment":"Represents a story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this story is pinned on the user's profile"},{"name":"public","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether this story is public and can be viewed by everyone"},{"name":"close_friends","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Whether this story can only be viewed by our close friends, see here » for more info"},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Full information about this story was omitted for space and performance reasons; use {@link stories.RawGetStoriesByIDRequest} to fetch full info about this story when and if needed."},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Whether this story is protected and thus cannot be forwarded; clients should also prevent users from saving attached media (i.e. videos should only be streamed, photos should be kept in RAM, et cetera)."},{"name":"edited","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Indicates whether the story was edited."},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether this story can only be viewed by our contacts"},{"name":"selected_contacts","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether this story can only be viewed by a select list of our contacts"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"indicates whether we sent this story."},{"name":"id","type":"int","comment":"ID of the story."},{"name":"date","type":"int","comment":"When was the story posted."},{"name":"from_id","type":"Peer","typeModifiers":{"predicate":"flags.18"},"comment":"Sender of the story."},{"name":"fwd_from","type":"StoryFwdHeader","typeModifiers":{"predicate":"flags.17"},"comment":"For reposted stories », contains info about the original story."},{"name":"expire_date","type":"int","comment":"When does the story expire."},{"name":"caption","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Story caption."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"media","type":"MessageMedia","comment":"Story media."},{"name":"media_areas","type":"MediaArea","typeModifiers":{"predicate":"flags.14","isVector":true},"comment":"List of media areas, see here » for more info on media areas."},{"name":"privacy","type":"PrivacyRule","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"Privacy rules indicating who can and can't view this story"},{"name":"views","type":"StoryViews","typeModifiers":{"predicate":"flags.3"},"comment":"View date and reaction information"},{"name":"sent_reaction","type":"Reaction","typeModifiers":{"predicate":"flags.15"},"comment":"The reaction we sent."}]},{"kind":"class","name":"stories.allStoriesNotModified","type":"stories.AllStories","id":291044926,"comment":"The list of active (or active and hidden) stories has not changed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"state","type":"string","comment":"State to use to ask for updates"},{"name":"stealth_mode","type":"StoriesStealthMode","comment":"Current stealth mode information"}]},{"kind":"class","name":"stories.allStories","type":"stories.AllStories","id":1862033025,"comment":"Full list of active (or active and hidden) stories.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_more","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether more results can be fetched as described here »."},{"name":"count","type":"int","comment":"Total number of active (or active and hidden) stories"},{"name":"state","type":"string","comment":"State to use for pagination"},{"name":"peer_stories","type":"PeerStories","typeModifiers":{"isVector":true},"comment":"Stories"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"},{"name":"stealth_mode","type":"StoriesStealthMode","comment":"Current stealth mode information"}]},{"kind":"class","name":"stories.stories","type":"stories.Stories","id":1673780490,"comment":"List of stories","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of stories that can be fetched"},{"name":"stories","type":"StoryItem","typeModifiers":{"isVector":true},"comment":"Stories"},{"name":"pinned_to_top","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"IDs of pinned stories."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"storyView","type":"StoryView","id":2965236421,"comment":"Story view date and reaction information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we have completely blocked this user, including from viewing more of our stories."},{"name":"blocked_my_stories_from","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether we have blocked this user from viewing more of our stories."},{"name":"user_id","type":"int53","comment":"The user that viewed the story"},{"name":"date","type":"int","comment":"When did the user view the story"},{"name":"reaction","type":"Reaction","typeModifiers":{"predicate":"flags.2"},"comment":"If present, contains the reaction that the user left on the story"}]},{"kind":"class","name":"storyViewPublicForward","type":"StoryView","id":2424530699,"comment":"A certain peer has forwarded the story as a message to a public chat or channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we have completely blocked this user, including from viewing more of our stories."},{"name":"blocked_my_stories_from","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether we have blocked this user from viewing more of our stories."},{"name":"message","type":"Message","comment":"The message with the forwarded story."}]},{"kind":"class","name":"storyViewPublicRepost","type":"StoryView","id":3178549065,"comment":"A certain peer has reposted the story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we have completely blocked this user, including from viewing more of our stories."},{"name":"blocked_my_stories_from","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether we have blocked this user from viewing more of our stories."},{"name":"peer_id","type":"Peer","comment":"The peer that reposted the story."},{"name":"story","type":"StoryItem","comment":"The reposted story."}]},{"kind":"class","name":"stories.storyViewsList","type":"stories.StoryViewsList","id":1507299269,"comment":"Reaction and view counters for a story","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of results that can be fetched"},{"name":"views_count","type":"int","comment":"Total number of story views"},{"name":"forwards_count","type":"int","comment":"Total number of story forwards/reposts"},{"name":"reactions_count","type":"int","comment":"Number of reactions that were added to the story"},{"name":"views","type":"StoryView","typeModifiers":{"isVector":true},"comment":"Story view date and reaction information"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset for pagination"}]},{"kind":"class","name":"stories.storyViews","type":"stories.StoryViews","id":3734957341,"comment":"Reaction and view counters for a list of stories","arguments":[{"name":"views","type":"StoryViews","typeModifiers":{"isVector":true},"comment":"View date and reaction information of multiple stories"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"inputReplyToMessage","type":"InputReplyTo","id":583071445,"comment":"Reply to a message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reply_to_msg_id","type":"int","comment":"The message ID to reply to."},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"This field must contain the topic ID only when replying to messages in forum topics different from the \"General\" topic (i.e. reply_to_msg_id is set and reply_to_msg_id != topicID and topicID != 1).
If the replied-to message is deleted before the method finishes execution, the value in this field will be used to send the message to the correct topic, instead of the \"General\" topic."},{"name":"reply_to_peer_id","type":"InputPeer","typeModifiers":{"predicate":"flags.1"},"comment":"Used to reply to messages sent to another chat (specified here), can only be used for non-protected chats and messages."},{"name":"quote_text","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Used to quote-reply to only a certain section (specified here) of the original message. The maximum UTF-8 length for quotes is specified in the quote_length_max config key."},{"name":"quote_entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text from the quote_text field."},{"name":"quote_offset","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Offset of the message quote_text within the original message (in UTF-16 code units)."}]},{"kind":"class","name":"inputReplyToStory","type":"InputReplyTo","id":1484862010,"comment":"Reply to a story.","arguments":[{"name":"peer","type":"InputPeer","comment":"Sender of the story"},{"name":"story_id","type":"int","comment":"ID of the story to reply to."}]},{"kind":"class","name":"exportedStoryLink","type":"ExportedStoryLink","id":1070138683,"comment":"Represents a story deep link.","arguments":[{"name":"link","type":"string","comment":"The story deep link."}]},{"kind":"class","name":"storiesStealthMode","type":"StoriesStealthMode","id":1898850301,"comment":"Information about the current stealth mode session.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"active_until_date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"The date up to which stealth mode will be active."},{"name":"cooldown_until_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"The date starting from which the user will be allowed to re-enable stealth mode again."}]},{"kind":"class","name":"mediaAreaCoordinates","type":"MediaAreaCoordinates","id":3486113794,"comment":"Coordinates and size of a clicable rectangular area on top of a story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"x","type":"double","comment":"The abscissa of the rectangle's center, as a percentage of the media width (0-100)."},{"name":"y","type":"double","comment":"The ordinate of the rectangle's center, as a percentage of the media height (0-100)."},{"name":"w","type":"double","comment":"The width of the rectangle, as a percentage of the media width (0-100)."},{"name":"h","type":"double","comment":"The height of the rectangle, as a percentage of the media height (0-100)."},{"name":"rotation","type":"double","comment":"Clockwise rotation angle of the rectangle, in degrees (0-360)."},{"name":"radius","type":"double","typeModifiers":{"predicate":"flags.0"},"comment":"The radius of the rectangle corner rounding, as a percentage of the media width."}]},{"kind":"class","name":"mediaAreaVenue","type":"MediaArea","id":3196246940,"comment":"Represents a location tag attached to a story, with additional venue information.","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the location sticker on top of the story media."},{"name":"geo","type":"GeoPoint","comment":"Coordinates of the venue"},{"name":"title","type":"string","comment":"Venue name"},{"name":"address","type":"string","comment":"Address"},{"name":"provider","type":"string","comment":"Venue provider: currently only \"foursquare\" and \"gplaces\" need to be supported."},{"name":"venue_id","type":"string","comment":"Venue ID in the provider's database"},{"name":"venue_type","type":"string","comment":"Venue type in the provider's database"}]},{"kind":"class","name":"inputMediaAreaVenue","type":"MediaArea","id":2994872703,"comment":"Represents a location tag attached to a story, with additional venue information.","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the location sticker on top of the story media."},{"name":"query_id","type":"long","comment":"The query_id from {@link messages.RawBotResults}, see here » for more info."},{"name":"result_id","type":"string","comment":"The id of the chosen result, see here » for more info."}]},{"kind":"class","name":"mediaAreaGeoPoint","type":"MediaArea","id":3402974509,"comment":"Represents a geolocation tag attached to a story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and position of the media area corresponding to the location sticker on top of the story media."},{"name":"geo","type":"GeoPoint","comment":"Coordinates of the geolocation tag."},{"name":"address","type":"GeoPointAddress","typeModifiers":{"predicate":"flags.0"},"comment":"Optional textual representation of the address."}]},{"kind":"class","name":"mediaAreaSuggestedReaction","type":"MediaArea","id":340088945,"comment":"Represents a reaction bubble.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the reaction bubble has a dark background."},{"name":"flipped","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the reaction bubble is mirrored (see here » for more info)."},{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The coordinates of the media area corresponding to the reaction button."},{"name":"reaction","type":"Reaction","comment":"The reaction that should be sent when this area is clicked."}]},{"kind":"class","name":"mediaAreaChannelPost","type":"MediaArea","id":1996756655,"comment":"Represents a channel post.","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the location sticker on top of the story media."},{"name":"channel_id","type":"int53","comment":"The channel that posted the message"},{"name":"msg_id","type":"int","comment":"ID of the channel message"}]},{"kind":"class","name":"inputMediaAreaChannelPost","type":"MediaArea","id":577893055,"comment":"Represents a channel post","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the location sticker on top of the story media."},{"name":"channel","type":"InputChannel","comment":"The channel that posted the message"},{"name":"msg_id","type":"int","comment":"ID of the channel message"}]},{"kind":"class","name":"mediaAreaUrl","type":"MediaArea","id":926421125,"comment":"Represents a URL media area.","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the URL button on top of the story media."},{"name":"url","type":"string","comment":"URL to open when clicked."}]},{"kind":"class","name":"mediaAreaWeather","type":"MediaArea","id":1235637404,"comment":"Represents a weather widget ».","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the widget on top of the story media."},{"name":"emoji","type":"string","comment":"Weather emoji, should be rendered as an animated emoji."},{"name":"temperature_c","type":"double","comment":"Temperature in degrees Celsius."},{"name":"color","type":"int","comment":"ARGB background color."}]},{"kind":"class","name":"peerStories","type":"PeerStories","id":2587224473,"comment":"Stories associated to a peer","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"The peer"},{"name":"max_read_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, contains the ID of the maximum read story"},{"name":"stories","type":"StoryItem","typeModifiers":{"isVector":true},"comment":"Stories"}]},{"kind":"class","name":"stories.peerStories","type":"stories.PeerStories","id":3404105576,"comment":"Active story list of a specific peer.","arguments":[{"name":"stories","type":"PeerStories","comment":"Stories"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.webPage","type":"messages.WebPage","id":4250800829,"comment":"Represents an Instant View webpage.","arguments":[{"name":"webpage","type":"WebPage","comment":"The instant view webpage."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in the webpage."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the webpage."}]},{"kind":"class","name":"premiumGiftCodeOption","type":"PremiumGiftCodeOption","id":629052971,"comment":"Contains info about a giveaway/gift option.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"users","type":"int","comment":"Number of users which will be able to activate the gift codes."},{"name":"months","type":"int","comment":"Duration in months of each gifted Telegram Premium subscription."},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Identifier of the store product associated with the option, official apps only."},{"name":"store_quantity","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Number of times the store product must be paid"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"payments.checkedGiftCode","type":"payments.CheckedGiftCode","id":675942550,"comment":"Contains info about a Telegram Premium giftcode link.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_giveaway","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this giftcode was created by a giveaway."},{"name":"from_id","type":"Peer","typeModifiers":{"predicate":"flags.4"},"comment":"The peer that created the gift code."},{"name":"giveaway_msg_id","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Message ID of the giveaway in the channel specified in from_id."},{"name":"to_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"The destination user of the gift."},{"name":"date","type":"int","comment":"Creation date of the gift code."},{"name":"months","type":"int","comment":"Duration in months of the gifted Telegram Premium subscription."},{"name":"used_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"When was the giftcode imported, if it was imported."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"payments.giveawayInfo","type":"payments.GiveawayInfo","id":1130879648,"comment":"Contains info about an ongoing giveaway.\n\nIf neither the participating, joined_too_early_date, admin_disallowed_chat_id or disallowed_country flags are set, the user is not currently participating in the giveaway but could participate by joining all the channels specified in the {@link RawMessageMediaGiveaway}.channels field.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"participating","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"The current user is participating in the giveaway."},{"name":"preparing_results","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, the giveaway has ended and the results are being prepared."},{"name":"start_date","type":"int","comment":"When was the giveaway started"},{"name":"joined_too_early_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"The current user can't participate in the giveaway, because they were already a member of the channel when the giveaway started, and the only_new_subscribers was set when starting the giveaway."},{"name":"admin_disallowed_chat_id","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the current user can't participate in the giveaway, because they are an administrator in one of the channels (ID specified in this flag) that created the giveaway."},{"name":"disallowed_country","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"If set, the current user can't participate in this giveaway, because their phone number is from the specified disallowed country (specified as a two-letter ISO 3166-1 alpha-2 country code)."}]},{"kind":"class","name":"payments.giveawayInfoResults","id":3782600303,"type":"payments.GiveawayInfo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"winner","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we're one of the winners of this giveaway."},{"name":"refunded","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the giveaway was canceled and was fully refunded."},{"name":"start_date","type":"int","comment":"Start date of the giveaway"},{"name":"gift_code_slug","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"If we're one of the winners of this giveaway, contains the Premium gift code, see here » for more info on the full giveaway flow."},{"name":"stars_prize","type":"long","typeModifiers":{"predicate":"flags.4"}},{"name":"finish_date","type":"int","comment":"End date of the giveaway. May be bigger than the end date specified in parameters of the giveaway."},{"name":"winners_count","type":"int","comment":"Number of winners in the giveaway"},{"name":"activated_count","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Number of winners, which activated their gift codes."}],"comment":"A giveaway has ended."},{"kind":"class","name":"prepaidGiveaway","type":"PrepaidGiveaway","id":2991824212,"comment":"Contains info about a prepaid giveaway ».","arguments":[{"name":"id","type":"long","comment":"Prepaid giveaway ID."},{"name":"months","type":"int","comment":"Duration in months of each gifted Telegram Premium subscription."},{"name":"quantity","type":"int","comment":"Number of given away Telegram Premium subscriptions."},{"name":"date","type":"int","comment":"Payment date."}]},{"kind":"class","name":"prepaidStarsGiveaway","type":"PrepaidGiveaway","id":2594011104,"arguments":[{"name":"id","type":"long"},{"name":"stars","type":"long"},{"name":"quantity","type":"int"},{"name":"boosts","type":"int"},{"name":"date","type":"int"}]},{"kind":"class","name":"boost","id":1262359766,"type":"Boost","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"gift","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this boost was applied because the channel/supergroup directly gifted a subscription to the user."},{"name":"giveaway","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this boost was applied because the user was chosen in a giveaway started by the channel/supergroup."},{"name":"unclaimed","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, the user hasn't yet invoked {@link payments.RawApplyGiftCodeRequest} to claim a subscription gifted directly or in a giveaway by the channel."},{"name":"id","type":"string","comment":"Unique ID for this set of boosts."},{"name":"user_id","type":"int53","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the user that applied the boost."},{"name":"giveaway_msg_id","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"The message ID of the giveaway"},{"name":"date","type":"int","comment":"When was the boost applied"},{"name":"expires","type":"int","comment":"When does the boost expire"},{"name":"used_gift_slug","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"The created Telegram Premium gift code, only set if either gift or giveaway are set AND it is either a gift code for the currently logged in user or if it was already claimed."},{"name":"multiplier","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"If set, this boost counts as multiplier boosts, otherwise it counts as a single boost."},{"name":"stars","type":"long","typeModifiers":{"predicate":"flags.6"}}],"comment":"Info about one or more boosts applied by a specific user."},{"kind":"class","name":"premium.boostsList","type":"premium.BoostsList","id":2264424764,"comment":"List of boosts that were applied to a peer by multiple users.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of results"},{"name":"boosts","type":"Boost","typeModifiers":{"isVector":true},"comment":"Boosts"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset that can be used for pagination."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"myBoost","type":"MyBoost","id":3293069660,"comment":"Contains information about a single boost slot ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"slot","type":"int","comment":"Boost slot ID »"},{"name":"peer","type":"Peer","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates this slot is currently occupied, i.e. we are boosting this peer.
Note that we can assign multiple boost slots to the same peer."},{"name":"date","type":"int","comment":"When (unixtime) we started boosting the peer, 0 otherwise."},{"name":"expires","type":"int","comment":"Indicates the (unixtime) expiration date of the boost in peer (0 if peer is not set)."},{"name":"cooldown_until_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"If peer is set, indicates the (unixtime) date after which this boost can be reassigned to another channel."}]},{"kind":"class","name":"premium.myBoosts","type":"premium.MyBoosts","id":2598512866,"comment":"A list of peers we are currently boosting, and how many boost slots we have left.","arguments":[{"name":"my_boosts","type":"MyBoost","typeModifiers":{"isVector":true},"comment":"Info about boosted peers and remaining boost slots."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Referenced chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Referenced users"}]},{"kind":"class","name":"premium.boostsStatus","type":"premium.BoostsStatus","id":1230586490,"comment":"Contains info about the current boost status of a peer.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my_boost","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether we're currently boosting this channel/supergroup, my_boost_slots will also be set."},{"name":"level","type":"int","comment":"The current boost level of the channel/supergroup."},{"name":"current_level_boosts","type":"int","comment":"The number of boosts acquired so far in the current level."},{"name":"boosts","type":"int","comment":"Total number of boosts acquired so far."},{"name":"gift_boosts","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"The number of boosts acquired from created Telegram Premium gift codes and giveaways; only returned to channel/supergroup admins."},{"name":"next_level_boosts","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Total number of boosts needed to reach the next level; if absent, the next level isn't available."},{"name":"premium_audience","type":"StatsPercentValue","typeModifiers":{"predicate":"flags.1"},"comment":"Only returned to channel/supergroup admins: contains the approximated number of Premium users subscribed to the channel/supergroup, related to the total number of subscribers."},{"name":"boost_url","type":"string","comment":"Boost deep link » that can be used to boost the chat."},{"name":"prepaid_giveaways","type":"PrepaidGiveaway","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"A list of prepaid giveaways available for the chat; only returned to channel/supergroup admins."},{"name":"my_boost_slots","type":"int","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"Indicates which of our boost slots we've assigned to this peer (populated if my_boost is set)."}]},{"kind":"class","name":"storyFwdHeader","type":"StoryFwdHeader","id":3089555792,"comment":"Contains info about the original poster of a reposted story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"modified","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the story media was modified before reposting it (for example by overlaying a round video with a reaction)."},{"name":"from","type":"Peer","typeModifiers":{"predicate":"flags.0"},"comment":"Peer that originally posted the story; will be empty for stories forwarded from a user with forwards privacy enabled, in which case from_name will be set, instead."},{"name":"from_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Will be set for stories forwarded from a user with forwards privacy enabled, in which case from will also be empty."},{"name":"story_id","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":", contains the story ID"}]},{"kind":"class","name":"postInteractionCountersMessage","type":"PostInteractionCounters","id":3875901055,"comment":"Interaction counters for a message.","arguments":[{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"views","type":"int","comment":"Number of views"},{"name":"forwards","type":"int","comment":"Number of forwards to public channels"},{"name":"reactions","type":"int","comment":"Number of reactions"}]},{"kind":"class","name":"postInteractionCountersStory","type":"PostInteractionCounters","id":2319978023,"comment":"Interaction counters for a story.","arguments":[{"name":"story_id","type":"int","comment":"Story ID"},{"name":"views","type":"int","comment":"Number of views"},{"name":"forwards","type":"int","comment":"Number of forwards and reposts to public chats and channels"},{"name":"reactions","type":"int","comment":"Number of reactions"}]},{"kind":"class","name":"stats.storyStats","type":"stats.StoryStats","id":1355613820,"comment":"Contains statistics about a story.","arguments":[{"name":"views_graph","type":"StatsGraph","comment":"A graph containing the number of story views and shares"},{"name":"reactions_by_emotion_graph","type":"StatsGraph","comment":"A bar graph containing the number of story reactions categorized by \"emotion\" (i.e. Positive, Negative, Other, etc...)"}]},{"kind":"class","name":"publicForwardMessage","type":"PublicForward","id":32685898,"comment":"Contains info about a forward of a story as a message.","arguments":[{"name":"message","type":"Message","comment":"Info about the message with the reposted story."}]},{"kind":"class","name":"publicForwardStory","type":"PublicForward","id":3992169936,"comment":"Contains info about a forward of a story as a repost by a public channel.","arguments":[{"name":"peer","type":"Peer","comment":"The channel that reposted the story."},{"name":"story","type":"StoryItem","comment":"The reposted story (may be different from the original story)."}]},{"kind":"class","name":"stats.publicForwards","type":"stats.PublicForwards","id":2466479648,"comment":"Contains info about the forwards of a story as a message to public chats and reposts by public channels.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of results"},{"name":"forwards","type":"PublicForward","typeModifiers":{"isVector":true},"comment":"Info about the forwards of a story."},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset used for pagination."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"peerColor","type":"PeerColor","id":3041614543,"comment":"Represents a color palette ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"color","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Color palette ID, see here » for more info; if not set, the default palette should be used."},{"name":"background_emoji_id","type":"long","typeModifiers":{"predicate":"flags.1"},"comment":"Optional custom emoji ID used to generate the pattern."}]},{"kind":"class","name":"help.peerColorSet","type":"help.PeerColorSet","id":639736408,"comment":"Represents a color palette that can be used in message accents ».","arguments":[{"name":"colors","type":"int","typeModifiers":{"isVector":true},"comment":"A list of 1-3 colors in RGB format, describing the accent color."}]},{"kind":"class","name":"help.peerColorProfileSet","type":"help.PeerColorSet","id":1987928555,"comment":"Represents a color palette that can be used in profile pages ».","arguments":[{"name":"palette_colors","type":"int","typeModifiers":{"isVector":true},"comment":"A list of 1-2 colors in RGB format, shown in the color palette settings to describe the current palette."},{"name":"bg_colors","type":"int","typeModifiers":{"isVector":true},"comment":"A list of 1-2 colors in RGB format describing the colors used to generate the actual background used in the profile page."},{"name":"story_colors","type":"int","typeModifiers":{"isVector":true},"comment":"A list of 2 colors in RGB format describing the colors of the gradient used for the unread active story indicator around the profile photo."}]},{"kind":"class","name":"help.peerColorOption","type":"help.PeerColorOption","id":2917953214,"comment":"Contains info about a color palette ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"hidden","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this palette should not be displayed as an option to the user when choosing a palette to apply to profile pages or message accents."},{"name":"color_id","type":"int","comment":"Palette ID."},{"name":"colors","type":"help.PeerColorSet","typeModifiers":{"predicate":"flags.1"},"comment":"Light mode palette.
Will be empty for IDs 0 to 6 inclusive, in which case a palette containing a single color from the following colors should be used: red, orange, violet, green, cyan, blue, pink for indexes 0 to 6 (i.e. the same colors used for randomized fallback message accent colors)."},{"name":"dark_colors","type":"help.PeerColorSet","typeModifiers":{"predicate":"flags.2"},"comment":"Dark mode palette. Optional, defaults to the palette in colors (or the autogenerated palette for IDs 0 to 6) if absent."},{"name":"channel_min_level","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Channels can use this palette only after reaching at least the boost level specified in this field."},{"name":"group_min_level","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Supergroups can use this palette only after reaching at least the boost level specified in this field."}]},{"kind":"class","name":"help.peerColorsNotModified","type":"help.PeerColors","id":732034510,"comment":"The list of color palettes has not changed.","arguments":[]},{"kind":"class","name":"help.peerColors","type":"help.PeerColors","id":16313608,"comment":"Contains info about multiple color palettes ».","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"colors","type":"help.PeerColorOption","typeModifiers":{"isVector":true},"comment":"Usable color palettes."}]},{"kind":"class","name":"storyReaction","type":"StoryReaction","id":1620104917,"comment":"How a certain peer reacted to a story","arguments":[{"name":"peer_id","type":"Peer","comment":"The peer"},{"name":"date","type":"int","comment":"Reaction date"},{"name":"reaction","type":"Reaction","comment":"The reaction"}]},{"kind":"class","name":"storyReactionPublicForward","type":"StoryReaction","id":3148555843,"comment":"A certain peer has forwarded the story as a message to a public chat or channel.","arguments":[{"name":"message","type":"Message","comment":"The message with the forwarded story."}]},{"kind":"class","name":"storyReactionPublicRepost","type":"StoryReaction","id":3486322451,"comment":"A certain peer has reposted the story.","arguments":[{"name":"peer_id","type":"Peer","comment":"The peer that reposted the story."},{"name":"story","type":"StoryItem","comment":"The reposted story."}]},{"kind":"class","name":"stories.storyReactionsList","type":"stories.StoryReactionsList","id":2858383516,"comment":"List of peers that reacted to or intercated with a specific story","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of reactions matching query"},{"name":"reactions","type":"StoryReaction","typeModifiers":{"isVector":true},"comment":"List of peers that reacted to or interacted with a specific story"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates the next offset to use to load more results by invoking {@link stories.RawGetStoryReactionsListRequest}."}]},{"kind":"class","name":"savedDialog","type":"SavedDialog","id":3179793260,"comment":"Represents a saved dialog ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is the dialog pinned"},{"name":"peer","type":"Peer","comment":"The dialog"},{"name":"top_message","type":"int","comment":"The latest message ID"}]},{"kind":"class","name":"messages.savedDialogs","type":"messages.SavedDialogs","id":4164608545,"comment":"Represents some saved message dialogs ».","arguments":[{"name":"dialogs","type":"SavedDialog","typeModifiers":{"isVector":true},"comment":"Saved message dialogs »."},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of last messages from each saved dialog"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.savedDialogsSlice","type":"messages.SavedDialogs","id":1153080793,"comment":"Incomplete list of saved message dialogs » with messages and auxiliary data.","arguments":[{"name":"count","type":"int","comment":"Total number of saved message dialogs"},{"name":"dialogs","type":"SavedDialog","typeModifiers":{"isVector":true},"comment":"List of saved message dialogs"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of last messages from dialogs"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.savedDialogsNotModified","type":"messages.SavedDialogs","id":3223285736,"comment":"The saved dialogs haven't changed","arguments":[{"name":"count","type":"int","comment":"Number of saved dialogs found server-side by the query"}]},{"kind":"class","name":"savedReactionTag","type":"SavedReactionTag","id":3413112872,"comment":"Info about a saved message reaction tag ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reaction","type":"Reaction","comment":"Reaction associated to the tag."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Custom tag name assigned by the user (max 12 UTF-8 chars)."},{"name":"count","type":"int","comment":"Number of messages tagged with this tag."}]},{"kind":"class","name":"messages.savedReactionTagsNotModified","type":"messages.SavedReactionTags","id":2291882479,"comment":"The list of reaction tag » names assigned by the user hasn't changed.","arguments":[]},{"kind":"class","name":"messages.savedReactionTags","type":"messages.SavedReactionTags","id":844731658,"comment":"List of reaction tag » names assigned by the user.","arguments":[{"name":"tags","type":"SavedReactionTag","typeModifiers":{"isVector":true},"comment":"Saved reaction tags."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}]},{"kind":"class","name":"outboxReadDate","type":"OutboxReadDate","id":1001931436,"comment":"Exact read date of a private message we sent to another user.","arguments":[{"name":"date","type":"int","comment":"UNIX timestamp with the read date."}]},{"kind":"class","name":"smsjobs.eligibleToJoin","type":"smsjobs.EligibilityToJoin","id":3700114639,"comment":"SMS jobs eligibility","arguments":[{"name":"terms_url","type":"string","comment":"Terms of service URL"},{"name":"monthly_sent_sms","type":"int","comment":"Monthly sent SMSes"}]},{"kind":"class","name":"smsjobs.status","type":"smsjobs.Status","id":720277905,"comment":"Status","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"allow_international","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Allow international numbers"},{"name":"recent_sent","type":"int","comment":"Recently sent"},{"name":"recent_since","type":"int","comment":"Since"},{"name":"recent_remains","type":"int","comment":"Remaining"},{"name":"total_sent","type":"int","comment":"Total sent"},{"name":"total_since","type":"int","comment":"Total since"},{"name":"last_gift_slug","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Last gift deep link"},{"name":"terms_url","type":"string","comment":"Terms of service URL"}]},{"kind":"class","name":"smsJob","type":"SmsJob","id":3869372088,"comment":"Info about an SMS job.","arguments":[{"name":"job_id","type":"string","comment":"Job ID"},{"name":"phone_number","type":"string","comment":"Destination phone number"},{"name":"text","type":"string","comment":"Text"}]},{"kind":"class","name":"businessWeeklyOpen","type":"BusinessWeeklyOpen","id":302717625,"comment":"A time interval, indicating the opening hours of a business.\n\nNote that opening hours specified by the user must be appropriately validated and transformed before uploading them to the server, as specified here ».","arguments":[{"name":"start_minute","type":"int","comment":"Start minute in minutes of the week, 0 to 7*24*60 inclusively."},{"name":"end_minute","type":"int","comment":"End minute in minutes of the week, 1 to 8*24*60 inclusively (8 and not 7 because this allows to specify intervals that, for example, start on Sunday 21:00 and end on Monday 04:00 (6*24*60+21*60 to 7*24*60+4*60) without passing an invalid end_minute < start_minute). See here » for more info."}]},{"kind":"class","name":"businessWorkHours","type":"BusinessWorkHours","id":2358423704,"comment":"Specifies a set of Telegram Business opening hours.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"open_now","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Ignored if set while invoking {@link account.RawUpdateBusinessWorkHoursRequest}, only returned by the server in {@link RawUserFull}.business_work_hours, indicating whether the business is currently open according to the current time and the values in weekly_open and timezone."},{"name":"timezone_id","type":"string","comment":"An ID of one of the timezones returned by {@link help.RawGetTimezonesListRequest}.
The timezone ID is contained {@link RawTimezone}.id, a human-readable, localized name of the timezone is available in {@link RawTimezone}.name and the {@link RawTimezone}.utc_offset field contains the UTC offset in seconds, which may be displayed in hh:mm format by the client together with the human-readable name (i.e. $name UTC -01:00)."},{"name":"weekly_open","type":"BusinessWeeklyOpen","typeModifiers":{"isVector":true},"comment":"A list of time intervals (max 28) represented by {@link RawBusinessWeeklyOpen}, indicating the opening hours of their business."}]},{"kind":"class","name":"businessLocation","type":"BusinessLocation","id":2891717367,"comment":"Represents the location of a Telegram Business ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo_point","type":"GeoPoint","typeModifiers":{"predicate":"flags.0"},"comment":"Geographical coordinates (optional)."},{"name":"address","type":"string","comment":"Textual description of the address (mandatory)."}]},{"kind":"class","name":"inputBusinessRecipients","type":"InputBusinessRecipients","id":1871393450,"comment":"Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"existing_chats","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"All existing private chats."},{"name":"new_chats","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"All new private chats."},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"All private chats with contacts."},{"name":"non_contacts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"All private chats with non-contacts."},{"name":"exclude_selected","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, inverts the selection."},{"name":"users","type":"InputUser","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Only private chats with the specified users."}]},{"kind":"class","name":"businessRecipients","type":"BusinessRecipients","id":554733559,"comment":"Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"existing_chats","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"All existing private chats."},{"name":"new_chats","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"All new private chats."},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"All private chats with contacts."},{"name":"non_contacts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"All private chats with non-contacts."},{"name":"exclude_selected","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, inverts the selection."},{"name":"users","type":"int53","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Only private chats with the specified users."}]},{"kind":"class","name":"businessAwayMessageScheduleAlways","type":"BusinessAwayMessageSchedule","id":3384402617,"comment":"Always send Telegram Business away messages to users writing to us in private.","arguments":[]},{"kind":"class","name":"businessAwayMessageScheduleOutsideWorkHours","type":"BusinessAwayMessageSchedule","id":3287479553,"comment":"Send Telegram Business away messages to users writing to us in private outside of the configured Telegram Business working hours.","arguments":[]},{"kind":"class","name":"businessAwayMessageScheduleCustom","type":"BusinessAwayMessageSchedule","id":3427638988,"comment":"Send Telegram Business away messages to users writing to us in private in the specified time span.","arguments":[{"name":"start_date","type":"int","comment":"Start date (UNIX timestamp)."},{"name":"end_date","type":"int","comment":"End date (UNIX timestamp)."}]},{"kind":"class","name":"inputBusinessGreetingMessage","type":"InputBusinessGreetingMessage","id":26528571,"comment":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","arguments":[{"name":"shortcut_id","type":"int","comment":"ID of a quick reply shorcut, containing the greeting messages to send, see here » for more info."},{"name":"recipients","type":"InputBusinessRecipients","comment":"Allowed recipients for the greeting messages."},{"name":"no_activity_days","type":"int","comment":"The number of days after which a private chat will be considered as inactive; currently, must be one of 7, 14, 21, or 28."}]},{"kind":"class","name":"businessGreetingMessage","type":"BusinessGreetingMessage","id":3843664811,"comment":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","arguments":[{"name":"shortcut_id","type":"int","comment":"ID of a quick reply shorcut, containing the greeting messages to send, see here » for more info."},{"name":"recipients","type":"BusinessRecipients","comment":"Allowed recipients for the greeting messages."},{"name":"no_activity_days","type":"int","comment":"The number of days after which a private chat will be considered as inactive; currently, must be one of 7, 14, 21, or 28."}]},{"kind":"class","name":"inputBusinessAwayMessage","type":"InputBusinessAwayMessage","id":2200008160,"comment":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"offline_only","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the messages will not be sent if the account was online in the last 10 minutes."},{"name":"shortcut_id","type":"int","comment":"ID of a quick reply shorcut, containing the away messages to send, see here » for more info."},{"name":"schedule","type":"BusinessAwayMessageSchedule","comment":"Specifies when should the away messages be sent."},{"name":"recipients","type":"InputBusinessRecipients","comment":"Allowed recipients for the away messages."}]},{"kind":"class","name":"businessAwayMessage","type":"BusinessAwayMessage","id":4011158108,"comment":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"offline_only","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the messages will not be sent if the account was online in the last 10 minutes."},{"name":"shortcut_id","type":"int","comment":"ID of a quick reply shorcut, containing the away messages to send, see here » for more info."},{"name":"schedule","type":"BusinessAwayMessageSchedule","comment":"Specifies when should the away messages be sent."},{"name":"recipients","type":"BusinessRecipients","comment":"Allowed recipients for the away messages."}]},{"kind":"class","name":"timezone","type":"Timezone","id":4287793653,"comment":"Timezone information.","arguments":[{"name":"id","type":"string","comment":"Unique timezone ID."},{"name":"name","type":"string","comment":"Human-readable and localized timezone name."},{"name":"utc_offset","type":"int","comment":"UTC offset in seconds, which may be displayed in hh:mm format by the client together with the human-readable name (i.e. $name UTC -01:00)."}]},{"kind":"class","name":"help.timezonesListNotModified","type":"help.TimezonesList","id":2533820620,"comment":"The timezone list has not changed.","arguments":[]},{"kind":"class","name":"help.timezonesList","type":"help.TimezonesList","id":2071260529,"comment":"Timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».","arguments":[{"name":"timezones","type":"Timezone","typeModifiers":{"isVector":true},"comment":"Timezones"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"}]},{"kind":"class","name":"quickReply","type":"QuickReply","id":110563371,"comment":"A quick reply shortcut.","arguments":[{"name":"shortcut_id","type":"int","comment":"Unique shortcut ID."},{"name":"shortcut","type":"string","comment":"Shortcut name."},{"name":"top_message","type":"int","comment":"ID of the last message in the shortcut."},{"name":"count","type":"int","comment":"Total number of messages in the shortcut."}]},{"kind":"class","name":"inputQuickReplyShortcut","type":"InputQuickReplyShortcut","id":609840449,"comment":"Selects a quick reply shortcut by name.","arguments":[{"name":"shortcut","type":"string","comment":"Shortcut name."}]},{"kind":"class","name":"inputQuickReplyShortcutId","type":"InputQuickReplyShortcut","id":18418929,"comment":"Selects a quick reply shortcut by its numeric ID.","arguments":[{"name":"shortcut_id","type":"int","comment":"Shortcut ID."}]},{"kind":"class","name":"messages.quickReplies","type":"messages.QuickReplies","id":3331155605,"comment":"Info about quick reply shortcuts ».","arguments":[{"name":"quick_replies","type":"QuickReply","typeModifiers":{"isVector":true},"comment":"Quick reply shortcuts."},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"Messages mentioned in quick_replies."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.quickRepliesNotModified","type":"messages.QuickReplies","id":1603398491,"comment":"Info about quick reply shortcuts » hasn't changed.","arguments":[]},{"kind":"class","name":"connectedBot","type":"ConnectedBot","id":3171321345,"comment":"Contains info about a connected business bot ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_reply","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the the bot can reply to messages it receives through the connection"},{"name":"bot_id","type":"int53","comment":"ID of the connected bot"},{"name":"recipients","type":"BusinessBotRecipients","comment":"Specifies the private chats that a connected business bot » may receive messages and interact with.
"}]},{"kind":"class","name":"account.connectedBots","type":"account.ConnectedBots","id":400029819,"comment":"Info about currently connected business bots.","arguments":[{"name":"connected_bots","type":"ConnectedBot","typeModifiers":{"isVector":true},"comment":"Info about the connected bots"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Bot information"}]},{"kind":"class","name":"messages.dialogFilters","type":"messages.DialogFilters","id":718878489,"comment":"Folder and folder tags information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"tags_enabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether folder tags are enabled."},{"name":"filters","type":"DialogFilter","typeModifiers":{"isVector":true},"comment":"Folders."}]},{"kind":"class","name":"birthday","type":"Birthday","id":1821253126,"comment":"Birthday information for a user.\n\nAlso used to invite users to gift Telegram Premium subscriptions » to other users with birthdays within a +1/-1 day time range, related to the current day.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"day","type":"int","comment":"Birth day"},{"name":"month","type":"int","comment":"Birth month"},{"name":"year","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"(Optional) birth year."}]},{"kind":"class","name":"botBusinessConnection","type":"BotBusinessConnection","id":2305045428,"comment":"Contains info about a bot business connection.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_reply","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the bot can reply on behalf of the user to messages it receives through the business connection"},{"name":"disabled","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this business connection is currently disabled"},{"name":"connection_id","type":"string","comment":"Business connection ID, used to identify messages coming from the connection and to reply to them as specified here »."},{"name":"user_id","type":"int53","comment":"ID of the user that the bot is connected to via this connection."},{"name":"dc_id","type":"int","comment":"ID of the datacenter where to send queries wrapped in a {@link RawInvokeWithBusinessConnectionRequest} as specified here »."},{"name":"date","type":"int","comment":"When was the connection created."}]},{"kind":"class","name":"inputBusinessIntro","type":"InputBusinessIntro","id":163867085,"comment":"Telegram Business introduction ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Title of the introduction message"},{"name":"description","type":"string","comment":"Profile introduction"},{"name":"sticker","type":"InputDocument","typeModifiers":{"predicate":"flags.0"},"comment":"Optional introduction sticker."}]},{"kind":"class","name":"businessIntro","type":"BusinessIntro","id":1510606445,"comment":"Telegram Business introduction ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Title of the introduction message (max intro_title_length_limit » UTF-8 characters)."},{"name":"description","type":"string","comment":"Profile introduction (max intro_description_length_limit » UTF-8 characters)."},{"name":"sticker","type":"Document","typeModifiers":{"predicate":"flags.0"},"comment":"Optional introduction sticker."}]},{"kind":"class","name":"messages.myStickers","type":"messages.MyStickers","id":4211040925,"comment":"The list of stickersets owned by the current account ».","arguments":[{"name":"count","type":"int","comment":"Total number of owned stickersets."},{"name":"sets","type":"StickerSetCovered","typeModifiers":{"isVector":true},"comment":"Stickersets"}]},{"kind":"class","name":"inputCollectibleUsername","type":"InputCollectible","id":3818152105,"comment":"Represents a username fragment collectible","arguments":[{"name":"username","type":"string","comment":"Username"}]},{"kind":"class","name":"inputCollectiblePhone","type":"InputCollectible","id":2732725412,"comment":"Represents a phone number fragment collectible","arguments":[{"name":"phone","type":"string","comment":"Phone number"}]},{"kind":"class","name":"fragment.collectibleInfo","type":"fragment.CollectibleInfo","id":1857945489,"comment":"Info about a fragment collectible.","arguments":[{"name":"purchase_date","type":"int","comment":"Purchase date (unixtime)"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code for amount"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"crypto_currency","type":"string","comment":"Cryptocurrency name."},{"name":"crypto_amount","type":"long","comment":"Price, in the smallest units of the cryptocurrency."},{"name":"url","type":"string","comment":"Fragment URL with more info about the collectible"}]},{"kind":"class","name":"inputBusinessBotRecipients","type":"InputBusinessBotRecipients","id":3303379486,"comment":"Specifies the private chats that a connected business bot » may interact with.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"existing_chats","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Selects all existing private chats."},{"name":"new_chats","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Selects all new private chats."},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Selects all private chats with contacts."},{"name":"non_contacts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Selects all private chats with non-contacts."},{"name":"exclude_selected","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, then all private chats except the ones selected by existing_chats, new_chats, contacts, non_contacts and users are chosen.
Note that if this flag is set, any values passed in exclude_users will be merged and moved into users by the server."},{"name":"users","type":"InputUser","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Explicitly selected private chats."},{"name":"exclude_users","type":"InputUser","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Identifiers of private chats that are always excluded."}]},{"kind":"class","name":"businessBotRecipients","type":"BusinessBotRecipients","id":3096245107,"comment":"Specifies the private chats that a connected business bot » may receive messages and interact with.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"existing_chats","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Selects all existing private chats."},{"name":"new_chats","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Selects all new private chats."},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Selects all private chats with contacts."},{"name":"non_contacts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Selects all private chats with non-contacts."},{"name":"exclude_selected","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, then all private chats except the ones selected by existing_chats, new_chats, contacts, non_contacts and users are chosen.
Note that if this flag is set, any values passed in exclude_users will be merged and moved into users by the server, thus exclude_users will always be empty."},{"name":"users","type":"int53","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Explicitly selected private chats."},{"name":"exclude_users","type":"int53","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Identifiers of private chats that are always excluded."}]},{"kind":"class","name":"contactBirthday","type":"ContactBirthday","id":496600883,"comment":"Birthday information of a contact.","arguments":[{"name":"contact_id","type":"int53","comment":"User ID."},{"name":"birthday","type":"Birthday","comment":"Birthday information."}]},{"kind":"class","name":"contacts.contactBirthdays","type":"contacts.ContactBirthdays","id":290452237,"comment":"Birthday information of our contacts.","arguments":[{"name":"contacts","type":"ContactBirthday","typeModifiers":{"isVector":true},"comment":"Birthday info"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"User information"}]},{"kind":"class","name":"missingInvitee","type":"MissingInvitee","id":1653379620,"comment":"Info about why a specific user could not be invited ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"premium_would_allow_invite","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, we could not add the user only because the current account needs to purchase a Telegram Premium subscription to complete the operation."},{"name":"premium_required_for_pm","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, we could not add the user because of their privacy settings, and additionally, the current account needs to purchase a Telegram Premium subscription to directly share an invite link with the user via a private message."},{"name":"user_id","type":"int53","comment":"ID of the user. If neither of the flags below are set, we could not add the user because of their privacy settings, and we can create and directly share an invite link with them using a normal message, instead."}]},{"kind":"class","name":"messages.invitedUsers","type":"messages.InvitedUsers","id":2136862630,"comment":"Contains info about successfully or unsuccessfully invited » users.","arguments":[{"name":"updates","type":"Updates","comment":"List of updates about successfully invited users (and eventually info about the created group)"},{"name":"missing_invitees","type":"MissingInvitee","typeModifiers":{"isVector":true},"comment":"A list of users that could not be invited, along with the reason why they couldn't be invited."}]},{"kind":"class","name":"inputBusinessChatLink","type":"InputBusinessChatLink","id":292003751,"comment":"Contains info about a business chat deep link » to be created by the current account.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message","type":"string","comment":"Message to pre-fill in the message input field."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Message entities for styled text"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Human-readable name of the link, to simplify management in the UI (only visible to the creator of the link)."}]},{"kind":"class","name":"businessChatLink","type":"BusinessChatLink","id":3031328367,"comment":"Contains info about a business chat deep link » created by the current account.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"link","type":"string","comment":"Business chat deep link."},{"name":"message","type":"string","comment":"Message to pre-fill in the message input field."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Message entities for styled text"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Human-readable name of the link, to simplify management in the UI (only visible to the creator of the link)."},{"name":"views","type":"int","comment":"Number of times the link was resolved (clicked/scanned/etc...)."}]},{"kind":"class","name":"account.businessChatLinks","type":"account.BusinessChatLinks","id":3963855569,"comment":"Contains info about business chat deep links » created by the current account.","arguments":[{"name":"links","type":"BusinessChatLink","typeModifiers":{"isVector":true},"comment":"Links"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"account.resolvedBusinessChatLinks","type":"account.ResolvedBusinessChatLinks","id":2586029857,"comment":"Contains info about a single resolved business chat deep link ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"Destination peer"},{"name":"message","type":"string","comment":"Message to pre-fill in the message input field."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Message entities for styled text"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"requestedPeerUser","type":"RequestedPeer","id":3593466986,"comment":"Info about a user, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen user, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"user_id","type":"int53","comment":"User ID."},{"name":"first_name","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"First name."},{"name":"last_name","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Last name."},{"name":"username","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Username."},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.2"},"comment":"Profile photo."}]},{"kind":"class","name":"requestedPeerChat","type":"RequestedPeer","id":1929860175,"comment":"Info about a chat, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen chat, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chat_id","type":"int53","comment":"Chat ID."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Chat title."},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.2"},"comment":"Chat photo."}]},{"kind":"class","name":"requestedPeerChannel","type":"RequestedPeer","id":2342781924,"comment":"Info about a channel/supergroup, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen channel/supergroup, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Channel/supergroup title."},{"name":"username","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Channel/supergroup username."},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.2"},"comment":"Channel/supergroup photo."}]},{"kind":"class","name":"sponsoredMessageReportOption","type":"SponsoredMessageReportOption","id":1124938064,"comment":"A report option for a sponsored message ».","arguments":[{"name":"text","type":"string","comment":"Localized description of the option."},{"name":"option","type":"bytes","comment":"Option identifier to pass to {@link channels.RawReportSponsoredMessageRequest}."}]},{"kind":"class","name":"channels.sponsoredMessageReportResultChooseOption","type":"channels.SponsoredMessageReportResult","id":2221907522,"comment":"The user must choose a report option from the localized options available in options, and after selection, {@link channels.RawReportSponsoredMessageRequest} must be invoked again, passing the option's option field to the option param of the method.","arguments":[{"name":"title","type":"string","comment":"Title of the option selection popup."},{"name":"options","type":"SponsoredMessageReportOption","typeModifiers":{"isVector":true},"comment":"Localized list of options."}]},{"kind":"class","name":"channels.sponsoredMessageReportResultAdsHidden","type":"channels.SponsoredMessageReportResult","id":1044107055,"comment":"Sponsored messages were hidden for the user in all chats.","arguments":[]},{"kind":"class","name":"channels.sponsoredMessageReportResultReported","type":"channels.SponsoredMessageReportResult","id":2910423113,"comment":"The sponsored message was reported successfully.","arguments":[]},{"kind":"class","name":"stats.broadcastRevenueStats","type":"stats.BroadcastRevenueStats","id":1409802903,"comment":"Channel revenue ad statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in the smallest unit of the chosen cryptocurrency (currently nanotons for TONs, so to obtain a value in USD divide the chosen amount by 10^9, and then divide by usd_rate).","arguments":[{"name":"top_hours_graph","type":"StatsGraph","comment":"Ad impressions graph"},{"name":"revenue_graph","type":"StatsGraph","comment":"Ad revenue graph (in the smallest unit of the cryptocurrency in which revenue is calculated)"},{"name":"balances","type":"BroadcastRevenueBalances","comment":"Current balance, current withdrawable balance and overall revenue"},{"name":"usd_rate","type":"double","comment":"Current conversion rate of the cryptocurrency (not in the smallest unit) in which revenue is calculated to USD"}]},{"kind":"class","name":"stats.broadcastRevenueWithdrawalUrl","type":"stats.BroadcastRevenueWithdrawalUrl","id":3966080823,"comment":"Contains the URL to use to withdraw channel ad revenue.","arguments":[{"name":"url","type":"string","comment":"A unique URL to a Fragment page where the user will be able to specify and submit the address of the TON wallet where the funds will be sent."}]},{"kind":"class","name":"broadcastRevenueTransactionProceeds","type":"BroadcastRevenueTransaction","id":1434332356,"comment":"Describes earnings from sponsored messages in a channel in some time frame, see here » for more info.","arguments":[{"name":"amount","type":"long","comment":"Amount in the smallest unit of the cryptocurrency."},{"name":"from_date","type":"int","comment":"Start unixtime for the timeframe."},{"name":"to_date","type":"int","comment":"End unixtime for the timeframe."}]},{"kind":"class","name":"broadcastRevenueTransactionWithdrawal","type":"BroadcastRevenueTransaction","id":1515784568,"comment":"Describes a withdrawal of ad earnings »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pending","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the withdrawal is currently pending"},{"name":"failed","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the withdrawal has failed"},{"name":"amount","type":"long","comment":"Amount withdrawn"},{"name":"date","type":"int","comment":"Withdrawal date"},{"name":"provider","type":"string","comment":"Payment provider name"},{"name":"transaction_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain the point in time (UNIX timestamp in seconds) when the withdrawal was completed successfully."},{"name":"transaction_url","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain a URL where the withdrawal transaction can be viewed."}]},{"kind":"class","name":"broadcastRevenueTransactionRefund","type":"BroadcastRevenueTransaction","id":1121127726,"comment":"Describes a refund for failed withdrawal of ad earnings »","arguments":[{"name":"amount","type":"long","comment":"Amount refunded."},{"name":"date","type":"int","comment":"Date of refund."},{"name":"provider","type":"string","comment":"Payment provider name."}]},{"kind":"class","name":"stats.broadcastRevenueTransactions","type":"stats.BroadcastRevenueTransactions","id":2266334310,"comment":"Channel ad revenue transactions ».","arguments":[{"name":"count","type":"int","comment":"Total number of transactions."},{"name":"transactions","type":"BroadcastRevenueTransaction","typeModifiers":{"isVector":true},"comment":"Transactions"}]},{"kind":"class","name":"reactionNotificationsFromContacts","type":"ReactionNotificationsFrom","id":3133384218,"comment":"Receive notifications about reactions made only by our contacts.","arguments":[]},{"kind":"class","name":"reactionNotificationsFromAll","type":"ReactionNotificationsFrom","id":1268654752,"comment":"Receive notifications about reactions made by any user.","arguments":[]},{"kind":"class","name":"reactionsNotifySettings","type":"ReactionsNotifySettings","id":1457736048,"comment":"Reaction notification settings, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"messages_notify_from","type":"ReactionNotificationsFrom","typeModifiers":{"predicate":"flags.0"},"comment":"Message reaction notification settings, if not set completely disables notifications/updates about message reactions."},{"name":"stories_notify_from","type":"ReactionNotificationsFrom","typeModifiers":{"predicate":"flags.1"},"comment":"Story reaction notification settings, if not set completely disables notifications/updates about reactions to stories."},{"name":"sound","type":"NotificationSound","comment":"Notification sound for reactions »"},{"name":"show_previews","type":"Bool","comment":"If false, push notifications » about message/story reactions will only be of type REACT_HIDDEN/REACT_STORY_HIDDEN, without any information about the reacted-to story or the reaction itself."}]},{"kind":"class","name":"broadcastRevenueBalances","id":3288297959,"type":"BroadcastRevenueBalances","arguments":[{"name":"flags","type":"#"},{"name":"withdrawal_enabled","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"current_balance","type":"long","comment":"Amount of not-yet-withdrawn cryptocurrency."},{"name":"available_balance","type":"long","comment":"Amount of withdrawable cryptocurrency, out of the currently available balance (available_balance <= current_balance)."},{"name":"overall_revenue","type":"long","comment":"Total amount of earned cryptocurrency."}],"comment":"Describes channel ad revenue balances ».\n\nNote that all balances are in the smallest unit of the chosen cryptocurrency (currently nanotons for TONs, so to obtain a value in USD divide the chosen amount by 10^9, and then divide by usd_rate)."},{"kind":"class","name":"availableEffect","type":"AvailableEffect","id":2479088254,"comment":"Represents a message effect ».\n\nAll long IDs except for id are {@link RawDocument}.ids from the containing {@link messages.RawAvailableEffects} constructor.\n\nSee here » for more info on how to use following fields.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"premium_required","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether a Premium subscription is required to use this effect."},{"name":"id","type":"long","comment":"Unique effect ID."},{"name":"emoticon","type":"string","comment":"Emoji corresponding to the effect, to be used as icon for the effect if static_icon_id is not set."},{"name":"static_icon_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the document containing the static icon (WEBP) of the effect."},{"name":"effect_sticker_id","type":"long","comment":"Contains the preview animation (TGS format »), used for the effect selection menu."},{"name":"effect_animation_id","type":"long","typeModifiers":{"predicate":"flags.1"},"comment":"If set, contains the actual animated effect (TGS format »). If not set, the animated effect must be set equal to the premium animated sticker effect associated to the animated sticker specified in effect_sticker_id (always different from the preview animation, fetched thanks to the {@link RawVideoSize} of type f as specified here »)."}]},{"kind":"class","name":"messages.availableEffectsNotModified","type":"messages.AvailableEffects","id":3522009691,"comment":"The full list of usable animated message effects » hasn't changed.","arguments":[]},{"kind":"class","name":"messages.availableEffects","type":"messages.AvailableEffects","id":3185271150,"comment":"The full list of usable animated message effects ».","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"effects","type":"AvailableEffect","typeModifiers":{"isVector":true},"comment":"Message effects"},{"name":"documents","type":"Document","typeModifiers":{"isVector":true},"comment":"Documents specified in the effects constructors."}]},{"kind":"class","name":"factCheck","type":"FactCheck","id":3097230543,"comment":"Represents a fact-check » created by an independent fact-checker.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"need_check","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the country/text fields will not be set, and the fact check must be fetched manually by the client (if it isn't already cached with the key specified in hash) using bundled {@link messages.RawGetFactCheckRequest} requests, when the message with the factcheck scrolls into view."},{"name":"country","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"A two-letter ISO 3166-1 alpha-2 country code of the country for which the fact-check should be shown."},{"name":"text","type":"TextWithEntities","typeModifiers":{"predicate":"flags.1"},"comment":"The fact-check."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}]},{"kind":"class","name":"starsTransactionPeerUnsupported","type":"StarsTransactionPeer","id":2515714020,"comment":"Describes a Telegram Star transaction that cannot be described using the current layer.","arguments":[]},{"kind":"class","name":"starsTransactionPeerAppStore","type":"StarsTransactionPeer","id":3025646453,"comment":"Describes a Telegram Star transaction with the App Store, used when purchasing Telegram Stars through the App Store.","arguments":[]},{"kind":"class","name":"starsTransactionPeerPlayMarket","type":"StarsTransactionPeer","id":2069236235,"comment":"Describes a Telegram Star transaction with the Play Store, used when purchasing Telegram Stars through the Play Store.","arguments":[]},{"kind":"class","name":"starsTransactionPeerPremiumBot","type":"StarsTransactionPeer","id":621656824,"comment":"Describes a Telegram Star transaction made using @PremiumBot (i.e. using the {@link RawInputInvoiceStars} flow described here »).","arguments":[]},{"kind":"class","name":"starsTransactionPeerFragment","type":"StarsTransactionPeer","id":3912227074,"comment":"Describes a Telegram Star transaction with Fragment, used when purchasing Telegram Stars through Fragment.","arguments":[]},{"kind":"class","name":"starsTransactionPeer","type":"StarsTransactionPeer","id":3624771933,"comment":"Describes a Telegram Star transaction with another peer.","arguments":[{"name":"peer","type":"Peer","comment":"The peer."}]},{"kind":"class","name":"starsTransactionPeerAds","type":"StarsTransactionPeer","id":1617438738,"comment":"Describes a Telegram Star transaction used to pay for Telegram ads as specified here ».","arguments":[]},{"kind":"class","name":"starsTopupOption","type":"StarsTopupOption","id":198776256,"comment":"Telegram Stars topup option.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"extended","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, the option must only be shown in the full list of topup options."},{"name":"stars","type":"long","comment":"Amount of Telegram stars."},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Identifier of the store product associated with the option, official apps only."},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"starsTransaction","id":178185410,"type":"StarsTransaction","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"refund","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this transaction is a refund."},{"name":"pending","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"The transaction is currently pending."},{"name":"failed","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"This transaction has failed."},{"name":"gift","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"This transaction was a gift from the user in peer.peer."},{"name":"reaction","type":"true","typeModifiers":{"predicate":"flags.11"}},{"name":"id","type":"string","comment":"Transaction ID."},{"name":"stars","type":"long","comment":"Amount of Stars (negative for outgoing transactions)."},{"name":"date","type":"int","comment":"Date of the transaction (unixtime)."},{"name":"peer","type":"StarsTransactionPeer","comment":"Source of the incoming transaction, or its recipient for outgoing transactions."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"For transactions with bots, title of the bought product."},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"For transactions with bots, description of the bought product."},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.2"},"comment":"For transactions with bots, photo of the bought product."},{"name":"transaction_date","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain the point in time (UNIX timestamp in seconds) when the withdrawal was completed successfully."},{"name":"transaction_url","type":"string","typeModifiers":{"predicate":"flags.5"},"comment":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain a URL where the withdrawal transaction can be viewed."},{"name":"bot_payload","type":"bytes","typeModifiers":{"predicate":"flags.7"},"comment":"Bot specified invoice payload (i.e. the payload passed to {@link RawInputMediaInvoice} when creating the invoice)."},{"name":"msg_id","type":"int","typeModifiers":{"predicate":"flags.8"},"comment":"For paid media transactions », message ID of the paid media posted to peer.peer (can point to a deleted message; either way, extended_media will always contain the bought media)."},{"name":"extended_media","type":"MessageMedia","typeModifiers":{"predicate":"flags.9","isVector":true},"comment":"The purchased paid media »."},{"name":"subscription_period","type":"int","typeModifiers":{"predicate":"flags.12"}},{"name":"giveaway_post_id","type":"int","typeModifiers":{"predicate":"flags.13"}},{"name":"stargift","type":"StarGift","typeModifiers":{"predicate":"flags.14"}}],"comment":"Represents a Telegram Stars transaction »."},{"kind":"class","name":"payments.starsStatus","id":3153736044,"type":"payments.StarsStatus","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"balance","type":"long","comment":"Current Telegram Star balance."},{"name":"subscriptions","type":"StarsSubscription","typeModifiers":{"predicate":"flags.1","isVector":true}},{"name":"subscriptions_next_offset","type":"string","typeModifiers":{"predicate":"flags.2"}},{"name":"subscriptions_missing_balance","type":"long","typeModifiers":{"predicate":"flags.4"}},{"name":"history","type":"StarsTransaction","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"List of Telegram Star transactions (partial if next_offset is set)."},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset to use to fetch more transactions from the transaction history using {@link payments.RawGetStarsTransactionsRequest}."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in history."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in history."}],"comment":"Info about the current Telegram Star balance and transaction history »."},{"kind":"class","name":"foundStory","type":"FoundStory","id":3900361664,"comment":"A story found using global story search ».","arguments":[{"name":"peer","type":"Peer","comment":"The peer that posted the story."},{"name":"story","type":"StoryItem","comment":"The story."}]},{"kind":"class","name":"stories.foundStories","type":"stories.FoundStories","id":3806230327,"comment":"Stories found using global story search ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of results found for the query."},{"name":"stories","type":"FoundStory","typeModifiers":{"isVector":true},"comment":"Matching stories."},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset used to fetch the next page, if not set this is the final page."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"geoPointAddress","type":"GeoPointAddress","id":3729546643,"comment":"Address optionally associated to a {@link RawGeoPoint}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"country_iso2","type":"string","comment":"Two-letter ISO 3166-1 alpha-2 country code"},{"name":"state","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"State"},{"name":"city","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"City"},{"name":"street","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Street"}]},{"kind":"class","name":"starsRevenueStatus","type":"StarsRevenueStatus","id":2033461574,"comment":"Describes Telegram Star revenue balances ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"withdrawal_enabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the user may withdraw up to available_balance stars."},{"name":"current_balance","type":"long","comment":"Amount of not-yet-withdrawn Telegram Stars."},{"name":"available_balance","type":"long","comment":"Amount of withdrawable Telegram Stars."},{"name":"overall_revenue","type":"long","comment":"Total amount of earned Telegram Stars."},{"name":"next_withdrawal_at","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Unixtime indicating when will withdrawal be available to the user. If not set, withdrawal can be started now."}]},{"kind":"class","name":"payments.starsRevenueStats","type":"payments.StarsRevenueStats","id":3375085371,"comment":"Star revenue statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in Stars.","arguments":[{"name":"revenue_graph","type":"StatsGraph","comment":"Star revenue graph (number of earned stars)"},{"name":"status","type":"StarsRevenueStatus","comment":"Current balance, current withdrawable balance and overall earned Telegram Stars"},{"name":"usd_rate","type":"double","comment":"Current conversion rate of Telegram Stars to USD"}]},{"kind":"class","name":"payments.starsRevenueWithdrawalUrl","type":"payments.StarsRevenueWithdrawalUrl","id":497778871,"comment":"Contains the URL to use to withdraw Telegram Star revenue.","arguments":[{"name":"url","type":"string","comment":"Contains the URL to use to withdraw Telegram Star revenue."}]},{"kind":"class","name":"payments.starsRevenueAdsAccountUrl","type":"payments.StarsRevenueAdsAccountUrl","id":961445665,"comment":"Contains a URL leading to a page where the user will be able to place ads for the channel/bot, paying using Telegram Stars.","arguments":[{"name":"url","type":"string","comment":"URL to open."}]},{"kind":"class","name":"inputStarsTransaction","type":"InputStarsTransaction","id":543876817,"comment":"Used to fetch info about a Telegram Star transaction ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"refund","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, fetches info about the refund transaction for this transaction."},{"name":"id","type":"string","comment":"Transaction ID."}]},{"kind":"class","name":"starsGiftOption","type":"StarsGiftOption","id":1577421297,"comment":"Telegram Stars gift option.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"extended","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, the option must only be shown in the full list of topup options."},{"name":"stars","type":"long","comment":"Amount of Telegram stars."},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Identifier of the store product associated with the option, official apps only."},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"bots.popularAppBots","type":"bots.PopularAppBots","id":428978491,"comment":"Popular Main Mini Apps, to be used in the apps tab of global search ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset for pagination."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"The bots associated to each Main Mini App, see here » for more info."}]},{"kind":"class","name":"botPreviewMedia","type":"BotPreviewMedia","id":602479523,"comment":"Represents a Main Mini App preview media, see here » for more info.","arguments":[{"name":"date","type":"int","comment":"When was this media last updated."},{"name":"media","type":"MessageMedia","comment":"The actual photo/video."}]},{"kind":"class","name":"bots.previewInfo","type":"bots.PreviewInfo","id":212278628,"comment":"Contains info about Main Mini App previews, see here » for more info.","arguments":[{"name":"media","type":"BotPreviewMedia","typeModifiers":{"isVector":true},"comment":"All preview medias for the language code passed to {@link bots.RawGetPreviewInfoRequest}."},{"name":"lang_codes","type":"string","typeModifiers":{"isVector":true},"comment":"All available language codes for which preview medias were uploaded (regardless of the language code passed to {@link bots.RawGetPreviewInfoRequest})."}]},{"kind":"class","name":"starsSubscriptionPricing","type":"StarsSubscriptionPricing","id":88173912,"arguments":[{"name":"period","type":"int"},{"name":"amount","type":"long"}]},{"kind":"class","name":"starsSubscription","type":"StarsSubscription","id":1401868056,"arguments":[{"name":"flags","type":"#"},{"name":"canceled","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"can_refulfill","type":"true","typeModifiers":{"predicate":"flags.1"}},{"name":"missing_balance","type":"true","typeModifiers":{"predicate":"flags.2"}},{"name":"id","type":"string"},{"name":"peer","type":"Peer"},{"name":"until_date","type":"int"},{"name":"pricing","type":"StarsSubscriptionPricing"},{"name":"chat_invite_hash","type":"string","typeModifiers":{"predicate":"flags.3"}}]},{"kind":"class","name":"messageReactor","type":"MessageReactor","id":1269016922,"arguments":[{"name":"flags","type":"#"},{"name":"top","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"my","type":"true","typeModifiers":{"predicate":"flags.1"}},{"name":"anonymous","type":"true","typeModifiers":{"predicate":"flags.2"}},{"name":"peer_id","type":"Peer","typeModifiers":{"predicate":"flags.3"}},{"name":"count","type":"int"}]},{"kind":"class","name":"starsGiveawayOption","type":"StarsGiveawayOption","id":2496562474,"arguments":[{"name":"flags","type":"#"},{"name":"extended","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"default","type":"true","typeModifiers":{"predicate":"flags.1"}},{"name":"stars","type":"long"},{"name":"yearly_boosts","type":"int"},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.2"}},{"name":"currency","type":"string"},{"name":"amount","type":"long"},{"name":"winners","type":"StarsGiveawayWinnersOption","typeModifiers":{"isVector":true}}]},{"kind":"class","name":"starsGiveawayWinnersOption","type":"StarsGiveawayWinnersOption","id":1411605001,"arguments":[{"name":"flags","type":"#"},{"name":"default","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"users","type":"int"},{"name":"per_user_stars","type":"long"}]},{"kind":"class","name":"starGift","id":2929816814,"type":"StarGift","arguments":[{"name":"flags","type":"#"},{"name":"limited","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"id","type":"long"},{"name":"sticker","type":"Document"},{"name":"stars","type":"long"},{"name":"availability_remains","type":"int","typeModifiers":{"predicate":"flags.0"}},{"name":"availability_total","type":"int","typeModifiers":{"predicate":"flags.0"}},{"name":"convert_stars","type":"long"}]},{"kind":"class","name":"payments.starGiftsNotModified","id":2743640936,"type":"payments.StarGifts","arguments":[]},{"kind":"class","name":"payments.starGifts","id":2417396202,"type":"payments.StarGifts","arguments":[{"name":"hash","type":"int"},{"name":"gifts","type":"StarGift","typeModifiers":{"isVector":true}}]},{"kind":"class","name":"userStarGift","id":4003764846,"type":"UserStarGift","arguments":[{"name":"flags","type":"#"},{"name":"name_hidden","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"unsaved","type":"true","typeModifiers":{"predicate":"flags.5"}},{"name":"from_id","type":"int53","typeModifiers":{"predicate":"flags.1"}},{"name":"date","type":"int"},{"name":"gift","type":"StarGift"},{"name":"message","type":"TextWithEntities","typeModifiers":{"predicate":"flags.2"}},{"name":"msg_id","type":"int","typeModifiers":{"predicate":"flags.3"}},{"name":"convert_stars","type":"long","typeModifiers":{"predicate":"flags.4"}}]},{"kind":"class","name":"payments.userStarGifts","id":1801827607,"type":"payments.UserStarGifts","arguments":[{"name":"flags","type":"#"},{"name":"count","type":"int"},{"name":"gifts","type":"UserStarGift","typeModifiers":{"isVector":true}},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"}},{"name":"users","type":"User","typeModifiers":{"isVector":true}}]},{"kind":"class","name":"messageReportOption","id":2030298073,"type":"MessageReportOption","arguments":[{"name":"text","type":"string"},{"name":"option","type":"bytes"}]},{"kind":"class","name":"reportResultChooseOption","id":4041531574,"type":"ReportResult","arguments":[{"name":"title","type":"string"},{"name":"options","type":"MessageReportOption","typeModifiers":{"isVector":true}}]},{"kind":"class","name":"reportResultAddComment","id":1862904881,"type":"ReportResult","arguments":[{"name":"flags","type":"#"},{"name":"optional","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"option","type":"bytes"}]},{"kind":"class","name":"reportResultReported","id":2377333835,"type":"ReportResult","arguments":[]},{"kind":"class","name":"mtcute.dummyUpdate","id":614906126,"type":"Update","arguments":[{"name":"pts","type":"int"},{"name":"pts_count","type":"int"},{"name":"channel_id","type":"int53"}]},{"kind":"class","name":"mtcute.dummyInputPeerMinUser","id":2240546338,"type":"InputPeer","arguments":[{"name":"user_id","type":"int"}]},{"kind":"class","name":"mtcute.dummyInputPeerMinChannel","id":1796171926,"type":"InputPeer","arguments":[{"name":"channel_id","type":"int"}]},{"kind":"method","name":"test.useConfigSimple","id":4189565501,"type":"help.ConfigSimple","arguments":[],"typeModifiers":{"constructorId":1515793004}},{"kind":"method","name":"test.parseInputAppEvent","id":3138226161,"type":"InputAppEvent","arguments":[],"typeModifiers":{"constructorId":488313413}},{"kind":"method","name":"invokeWithBusinessConnectionPrefix","id":3710427022,"type":"Error","arguments":[{"name":"connection_id","type":"string"}],"typeModifiers":{"constructorId":3300522427}},{"kind":"method","name":"invokeWithGooglePlayIntegrityPrefix","id":502868356,"type":"Error","arguments":[{"name":"nonce","type":"string"},{"name":"token","type":"string"}],"typeModifiers":{"constructorId":3300522427}},{"kind":"method","name":"invokeWithApnsSecretPrefix","id":229528824,"type":"Error","arguments":[{"name":"nonce","type":"string"},{"name":"secret","type":"string"}],"typeModifiers":{"constructorId":3300522427}},{"kind":"method","name":"invokeAfterMsg","type":"X","id":3416209197,"comment":"Invokes a query after successful completion of one of the previous queries.","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"msg_id","type":"long","comment":"Message identifier on which a current query depends"},{"name":"query","type":"!X","comment":"The query itself"}],"available":"both"},{"kind":"method","name":"invokeAfterMsgs","type":"X","id":1036301552,"comment":"Invokes a query after a successful completion of previous queries","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"msg_ids","type":"long","typeModifiers":{"isVector":true},"comment":"List of messages on which a current query depends"},{"name":"query","type":"!X","comment":"The query itself"}],"available":"both"},{"kind":"method","name":"initConnection","type":"X","id":3251461801,"comment":"Initialize connection","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"api_id","type":"int","comment":"Application identifier (see. App configuration)"},{"name":"device_model","type":"string","comment":"Device model"},{"name":"system_version","type":"string","comment":"Operation system version"},{"name":"app_version","type":"string","comment":"Application version"},{"name":"system_lang_code","type":"string","comment":"Code for the language used on the device's OS, ISO 639-1 standard"},{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."},{"name":"lang_code","type":"string","comment":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."},{"name":"proxy","type":"InputClientProxy","typeModifiers":{"predicate":"flags.0"},"comment":"Info about an MTProto proxy"},{"name":"params","type":"JSONValue","typeModifiers":{"predicate":"flags.1"},"comment":"Additional initConnection parameters.
For now, only the tz_offset field is supported, for specifying the timezone offset in seconds."},{"name":"query","type":"!X","comment":"The query itself"}],"throws":[{"code":400,"name":"CONNECTION_LAYER_INVALID","comment":"Layer invalid."}],"available":"both"},{"kind":"method","name":"invokeWithLayer","type":"X","id":3667594509,"comment":"Invoke the specified query using the specified API layer","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"layer","type":"int","comment":"The layer to use"},{"name":"query","type":"!X","comment":"The query"}],"throws":[{"code":400,"name":"AUTH_BYTES_INVALID","comment":"The provided authorization is invalid."},{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"CONNECTION_API_ID_INVALID","comment":"The provided API id is invalid."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."}],"available":"both"},{"kind":"method","name":"invokeWithoutUpdates","type":"X","id":3214170551,"comment":"Invoke a request without subscribing the used connection for updates (this is enabled by default for file queries).","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"query","type":"!X","comment":"The query"}],"available":"both"},{"kind":"method","name":"invokeWithMessagesRange","type":"X","id":911373810,"comment":"Invoke with the given message range","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"range","type":"MessageRange","comment":"Message range"},{"name":"query","type":"!X","comment":"Query"}],"available":"both"},{"kind":"method","name":"invokeWithTakeout","type":"X","id":2896821550,"comment":"Invoke a method within a takeout session, see here » for more info.","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"takeout_id","type":"long","comment":"Takeout session ID »"},{"name":"query","type":"!X","comment":"Query"}],"available":"both"},{"kind":"method","name":"invokeWithBusinessConnection","type":"X","id":3710427022,"comment":"Invoke a method using a Telegram Business Bot connection, see here » for more info, including a list of the methods that can be wrapped in this constructor.\n\nMake sure to always send queries wrapped in a invokeWithBusinessConnection to the datacenter ID, specified in the dc_id field of the {@link RawBotBusinessConnection} that is being used.","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"connection_id","type":"string","comment":"Business connection ID."},{"name":"query","type":"!X","comment":"The actual query."}],"available":"both"},{"kind":"method","name":"invokeWithGooglePlayIntegrity","type":"X","id":502868356,"comment":"Official clients only, invoke with Google Play Integrity token.","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"nonce","type":"string","comment":"Nonce."},{"name":"token","type":"string","comment":"Token."},{"name":"query","type":"!X","comment":"Query."}],"available":"both"},{"kind":"method","name":"invokeWithApnsSecret","type":"X","id":229528824,"comment":"Official clients only, invoke with Apple push verification.","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"nonce","type":"string","comment":"Nonce."},{"name":"secret","type":"string","comment":"Secret."},{"name":"query","type":"!X","comment":"Query."}],"available":"both"},{"kind":"method","name":"auth.sendCode","type":"auth.SentCode","id":2792825935,"comment":"Send the verification code for login","arguments":[{"name":"phone_number","type":"string","comment":"Phone number in international format"},{"name":"api_id","type":"int","comment":"Application identifier (see App configuration)"},{"name":"api_hash","type":"string","comment":"Application secret hash (see App configuration)"},{"name":"settings","type":"CodeSettings","comment":"Settings for the code type to send"}],"throws":[{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."},{"code":400,"name":"API_ID_PUBLISHED_FLOOD","comment":"This API id was published somewhere, you can't use it now."},{"code":500,"name":"AUTH_RESTART","comment":"Restart the authorization process."},{"code":400,"name":"PHONE_NUMBER_APP_SIGNUP_FORBIDDEN","comment":"You can't sign up using this app."},{"code":400,"name":"PHONE_NUMBER_BANNED","comment":"The provided phone number is banned from telegram."},{"code":400,"name":"PHONE_NUMBER_FLOOD","comment":"You asked for the code too many times."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":406,"name":"PHONE_PASSWORD_FLOOD","comment":"You have tried logging in too many times."},{"code":400,"name":"PHONE_PASSWORD_PROTECTED","comment":"This phone is password protected."},{"code":400,"name":"SMS_CODE_CREATE_FAILED","comment":"An error occurred while creating the SMS code."},{"code":406,"name":"UPDATE_APP_TO_LOGIN","comment":"Please update to the latest version of MadelineProto to login."}],"available":"user"},{"kind":"method","name":"auth.signUp","type":"auth.Authorization","id":2865215255,"comment":"Registers a validated phone number in the system.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_joined_notifications","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, users on Telegram that have already added phone_number to their contacts will not receive signup notifications about this user."},{"name":"phone_number","type":"string","comment":"Phone number in the international format"},{"name":"phone_code_hash","type":"string","comment":"SMS-message ID"},{"name":"first_name","type":"string","comment":"New user first name"},{"name":"last_name","type":"string","comment":"New user last name"}],"throws":[{"code":400,"name":"FIRSTNAME_INVALID","comment":"The first name is invalid."},{"code":400,"name":"LASTNAME_INVALID","comment":"The last name is invalid."},{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_CODE_INVALID","comment":"The provided phone code is invalid."},{"code":400,"name":"PHONE_NUMBER_FLOOD","comment":"You asked for the code too many times."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_OCCUPIED","comment":"The phone number is already in use."}],"available":"user"},{"kind":"method","name":"auth.signIn","type":"auth.Authorization","id":2371004753,"comment":"Signs in a user with a validated phone number.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"phone_number","type":"string","comment":"Phone number in the international format"},{"name":"phone_code_hash","type":"string","comment":"SMS-message ID, obtained from {@link auth.RawSendCodeRequest}"},{"name":"phone_code","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Valid numerical code from the SMS-message"},{"name":"email_verification","type":"EmailVerification","typeModifiers":{"predicate":"flags.1"},"comment":"Email verification code or token"}],"throws":[{"code":500,"name":"AUTH_RESTART","comment":"Restart the authorization process."},{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_CODE_INVALID","comment":"The provided phone code is invalid."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_UNOCCUPIED","comment":"The phone number is not yet being used."},{"code":500,"name":"SIGN_IN_FAILED","comment":"Failure while signing in."},{"code":406,"name":"UPDATE_APP_TO_LOGIN","comment":"Please update to the latest version of MadelineProto to login."}],"available":"user"},{"kind":"method","name":"auth.logOut","type":"auth.LoggedOut","typeModifiers":{"constructorId":3282207583},"id":1047706137,"comment":"Logs out the user.","arguments":[],"available":"both"},{"kind":"method","name":"auth.resetAuthorizations","type":"Bool","id":2678787354,"comment":"Terminates all user's authorized sessions except for the current one.\n\nAfter calling this method it is necessary to reregister the current device using the method {@link account.RawRegisterDeviceRequest}","arguments":[],"throws":[{"code":406,"name":"FRESH_RESET_AUTHORISATION_FORBIDDEN","comment":"You can't logout other sessions if less than 24 hours have passed since you logged on the current session."}],"available":"user"},{"kind":"method","name":"auth.exportAuthorization","type":"auth.ExportedAuthorization","typeModifiers":{"constructorId":3023364792},"id":3854565325,"comment":"Returns data for copying authorization to another data-center.","arguments":[{"name":"dc_id","type":"int","comment":"Number of a target data-center"}],"throws":[{"code":400,"name":"DC_ID_INVALID","comment":"The provided DC ID is invalid."}],"available":"both"},{"kind":"method","name":"auth.importAuthorization","type":"auth.Authorization","id":2776268205,"comment":"Logs in a user using a key transmitted from their native data-center.","arguments":[{"name":"id","type":"long","comment":"User ID"},{"name":"bytes","type":"bytes","comment":"Authorization key"}],"throws":[{"code":400,"name":"AUTH_BYTES_INVALID","comment":"The provided authorization is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"auth.bindTempAuthKey","type":"Bool","id":3453233669,"comment":"Binds a temporary authorization key temp_auth_key_id to the permanent authorization key perm_auth_key_id. Each permanent key may only be bound to one temporary key at a time, binding a new temporary key overwrites the previous one.\n\nFor more information, see Perfect Forward Secrecy.","arguments":[{"name":"perm_auth_key_id","type":"long","comment":"Permanent auth_key_id to bind to"},{"name":"nonce","type":"long","comment":"Random long from Binding message contents"},{"name":"expires_at","type":"int","comment":"UNIX timestamp in seconds to invalidate temporary key, see Binding message contents"},{"name":"encrypted_message","type":"bytes","comment":"See Generating encrypted_message"}],"throws":[{"code":400,"name":"ENCRYPTED_MESSAGE_INVALID","comment":"Encrypted message invalid."},{"code":400,"name":"TEMP_AUTH_KEY_ALREADY_BOUND","comment":"The passed temporary key is already bound to another perm_auth_key_id."},{"code":400,"name":"TEMP_AUTH_KEY_EMPTY","comment":"No temporary auth key provided."}],"available":"both"},{"kind":"method","name":"auth.importBotAuthorization","type":"auth.Authorization","id":1738800940,"comment":"Login as a bot","arguments":[{"name":"flags","type":"int","comment":"Reserved for future use"},{"name":"api_id","type":"int","comment":"Application identifier (see. App configuration)"},{"name":"api_hash","type":"string","comment":"Application identifier hash (see. App configuration)"},{"name":"bot_auth_token","type":"string","comment":"Bot token (see bots)"}],"throws":[{"code":400,"name":"ACCESS_TOKEN_EXPIRED","comment":"Access token expired."},{"code":400,"name":"ACCESS_TOKEN_INVALID","comment":"Access token invalid."},{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."},{"code":400,"name":"API_ID_PUBLISHED_FLOOD","comment":"This API id was published somewhere, you can't use it now."}],"available":"both"},{"kind":"method","name":"auth.checkPassword","type":"auth.Authorization","id":3515567382,"comment":"Try logging to an account protected by a 2FA password.","arguments":[{"name":"password","type":"InputCheckPasswordSRP","comment":"The account's password (see SRP)"}],"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"SRP_ID_INVALID","comment":"Invalid SRP ID provided."},{"code":400,"name":"SRP_PASSWORD_CHANGED","comment":"Password has changed."}],"available":"user"},{"kind":"method","name":"auth.requestPasswordRecovery","type":"auth.PasswordRecovery","typeModifiers":{"constructorId":326715557},"id":3633822822,"comment":"Request recovery code of a 2FA password, only for accounts with a recovery email configured.","arguments":[],"throws":[{"code":400,"name":"PASSWORD_EMPTY","comment":"The provided password is empty."},{"code":400,"name":"PASSWORD_RECOVERY_NA","comment":"No email was set, can't recover password via email."}],"available":"user"},{"kind":"method","name":"auth.recoverPassword","type":"auth.Authorization","id":923364464,"comment":"Reset the 2FA password using the recovery code sent using {@link auth.RawRequestPasswordRecoveryRequest}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"code","type":"string","comment":"Code received via email"},{"name":"new_settings","type":"account.PasswordInputSettings","typeModifiers":{"predicate":"flags.0"},"comment":"New password"}],"throws":[{"code":400,"name":"CODE_EMPTY","comment":"The provided code is empty."},{"code":400,"name":"NEW_SETTINGS_INVALID","comment":"The new password settings are invalid."}],"available":"user"},{"kind":"method","name":"auth.resendCode","type":"auth.SentCode","id":3403969827,"comment":"Resend the login code via another medium, the phone code type is determined by the return value of the previous auth.sendCode/auth.resendCode: see login for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"phone_number","type":"string","comment":"The phone number"},{"name":"phone_code_hash","type":"string","comment":"The phone code hash obtained from {@link auth.RawSendCodeRequest}"},{"name":"reason","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Official clients only, used if the device integrity verification failed, and no secret could be obtained to invoke {@link auth.RawRequestFirebaseSmsRequest}: in this case, the device integrity verification failure reason must be passed here."}],"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_CODE_HASH_EMPTY","comment":"phone_code_hash is missing."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":406,"name":"SEND_CODE_UNAVAILABLE","comment":"Returned when all available options for this type of number were already used (e.g. flash-call, then SMS, then this error might be returned to trigger a second resend)."}],"available":"user"},{"kind":"method","name":"auth.cancelCode","type":"Bool","id":520357240,"comment":"Cancel the login verification code","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash from {@link auth.RawSendCodeRequest}"}],"throws":[{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"auth.dropTempAuthKeys","type":"Bool","id":2387124616,"comment":"Delete all temporary authorization keys except for the ones specified","arguments":[{"name":"except_auth_keys","type":"long","typeModifiers":{"isVector":true},"comment":"The auth keys that shouldn't be dropped."}],"available":"both"},{"kind":"method","name":"auth.exportLoginToken","type":"auth.LoginToken","id":3084944894,"comment":"Generate a login token, for login via QR code.
\nThe generated login token should be encoded using base64url, then shown as a tg://login?token=base64encodedtoken deep link » in the QR code.\n\nFor more info, see login via QR code.","arguments":[{"name":"api_id","type":"int","comment":"Application identifier (see. App configuration)"},{"name":"api_hash","type":"string","comment":"Application identifier hash (see. App configuration)"},{"name":"except_ids","type":"long","typeModifiers":{"isVector":true},"comment":"List of already logged-in user IDs, to prevent logging in twice with the same user"}],"throws":[{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."},{"code":400,"name":"API_ID_PUBLISHED_FLOOD","comment":"This API id was published somewhere, you can't use it now."}],"available":"user"},{"kind":"method","name":"auth.importLoginToken","type":"auth.LoginToken","id":2511101156,"comment":"Login using a redirected login token, generated in case of DC mismatch during QR code login.\n\nFor more info, see login via QR code.","arguments":[{"name":"token","type":"bytes","comment":"Login token"}],"throws":[{"code":400,"name":"AUTH_TOKEN_ALREADY_ACCEPTED","comment":"The specified auth token was already accepted."},{"code":400,"name":"AUTH_TOKEN_EXPIRED","comment":"The authorization token has expired."},{"code":400,"name":"AUTH_TOKEN_INVALID","comment":"The specified auth token is invalid."},{"code":400,"name":"AUTH_TOKEN_INVALIDX","comment":"The specified auth token is invalid."}],"available":"user"},{"kind":"method","name":"auth.acceptLoginToken","type":"Authorization","typeModifiers":{"constructorId":2902578717},"id":3902057805,"comment":"Accept QR code login token, logging in the app that generated it.\n\nReturns info about the new session.\n\nFor more info, see login via QR code.","arguments":[{"name":"token","type":"bytes","comment":"Login token embedded in QR code, for more info, see login via QR code."}],"throws":[{"code":400,"name":"AUTH_TOKEN_ALREADY_ACCEPTED","comment":"The specified auth token was already accepted."},{"code":400,"name":"AUTH_TOKEN_EXCEPTION","comment":"An error occurred while importing the auth token."},{"code":400,"name":"AUTH_TOKEN_EXPIRED","comment":"The authorization token has expired."},{"code":400,"name":"AUTH_TOKEN_INVALIDX","comment":"The specified auth token is invalid."}],"available":"user"},{"kind":"method","name":"auth.checkRecoveryPassword","type":"Bool","id":221691769,"comment":"Check if the 2FA recovery code sent using {@link auth.RawRequestPasswordRecoveryRequest} is valid, before passing it to {@link auth.RawRecoverPasswordRequest}.","arguments":[{"name":"code","type":"string","comment":"Code received via email"}],"throws":[{"code":400,"name":"CODE_EMPTY","comment":"The provided code is empty."},{"code":400,"name":"PASSWORD_RECOVERY_EXPIRED","comment":"The recovery code has expired."}],"available":"user"},{"kind":"method","name":"auth.importWebTokenAuthorization","type":"auth.Authorization","id":767062953,"comment":"Login by importing an authorization token","arguments":[{"name":"api_id","type":"int","comment":"API ID"},{"name":"api_hash","type":"string","comment":"API hash"},{"name":"web_auth_token","type":"string","comment":"The authorization token"}],"throws":[{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."}],"available":"user"},{"kind":"method","name":"auth.requestFirebaseSms","type":"Bool","id":2386109982,"comment":"Request an SMS code via Firebase.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash returned by {@link auth.RawSendCodeRequest}"},{"name":"safety_net_token","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"On Android, a JWS object obtained as described in the auth documentation »"},{"name":"play_integrity_token","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"On Android, an object obtained as described in the auth documentation »"},{"name":"ios_push_secret","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Secret token received via an apple push notification"}],"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"auth.resetLoginEmail","type":"auth.SentCode","id":2123760019,"comment":"Reset the login email ».","arguments":[{"name":"phone_number","type":"string","comment":"Phone number of the account"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash, obtained as described in the documentation »"}],"throws":[{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"TASK_ALREADY_EXISTS","comment":"An email reset was already requested."}],"available":"user"},{"kind":"method","name":"auth.reportMissingCode","type":"Bool","id":3416125430,"comment":"Official apps only, reports that the SMS authentication code wasn't delivered.","arguments":[{"name":"phone_number","type":"string","comment":"Phone number where we were supposed to receive the code"},{"name":"phone_code_hash","type":"string","comment":"The phone code hash obtained from {@link auth.RawSendCodeRequest}"},{"name":"mnc","type":"string","comment":"MNC of the current network operator."}],"throws":[{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"account.registerDevice","type":"Bool","id":3968205178,"comment":"Register device to receive PUSH notifications","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_muted","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Avoid receiving (silent and invisible background) notifications. Useful to save battery."},{"name":"token_type","type":"int","comment":"Device token type, see PUSH updates for the possible values."},{"name":"token","type":"string","comment":"Device token, see PUSH updates for the possible values."},{"name":"app_sandbox","type":"Bool","comment":"If true is transmitted, a sandbox-certificate will be used during transmission."},{"name":"secret","type":"bytes","comment":"For FCM and APNS VoIP, optional encryption key used to encrypt push notifications"},{"name":"other_uids","type":"int53","typeModifiers":{"isVector":true},"comment":"List of user identifiers of other users currently using the client"}],"throws":[{"code":400,"name":"TOKEN_EMPTY","comment":"The specified token is empty."},{"code":400,"name":"TOKEN_INVALID","comment":"The provided token is invalid."},{"code":400,"name":"TOKEN_TYPE_INVALID","comment":"The specified token type is invalid."},{"code":400,"name":"WEBPUSH_AUTH_INVALID","comment":"The specified web push authentication secret is invalid."},{"code":400,"name":"WEBPUSH_KEY_INVALID","comment":"The specified web push elliptic curve Diffie-Hellman public key is invalid."},{"code":400,"name":"WEBPUSH_TOKEN_INVALID","comment":"The specified web push token is invalid."}],"available":"user"},{"kind":"method","name":"account.unregisterDevice","type":"Bool","id":1779249670,"comment":"Deletes a device by its token, stops sending PUSH-notifications to it.","arguments":[{"name":"token_type","type":"int","comment":"Device token type, see PUSH updates for the possible values."},{"name":"token","type":"string","comment":"Device token, see PUSH updates for the possible values."},{"name":"other_uids","type":"int53","typeModifiers":{"isVector":true},"comment":"List of user identifiers of other users currently using the client"}],"throws":[{"code":400,"name":"TOKEN_INVALID","comment":"The provided token is invalid."}],"available":"user"},{"kind":"method","name":"account.updateNotifySettings","type":"Bool","id":2227067795,"comment":"Edits notification settings from a given user/group, from all users/all groups.","arguments":[{"name":"peer","type":"InputNotifyPeer","comment":"Notification source"},{"name":"settings","type":"InputPeerNotifySettings","comment":"Notification settings"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SETTINGS_INVALID","comment":"Invalid settings were provided."}],"available":"user"},{"kind":"method","name":"account.getNotifySettings","type":"PeerNotifySettings","typeModifiers":{"constructorId":2573347852},"id":313765169,"comment":"Gets current notification settings for a given user/group, from all users/all groups.","arguments":[{"name":"peer","type":"InputNotifyPeer","comment":"Notification source"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.resetNotifySettings","type":"Bool","id":3682473799,"comment":"Resets all notification settings from users and groups.","arguments":[],"available":"user"},{"kind":"method","name":"account.updateProfile","type":"User","id":2018596725,"comment":"Updates user profile.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"first_name","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"New user first name"},{"name":"last_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"New user last name"},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"New bio"}],"throws":[{"code":400,"name":"ABOUT_TOO_LONG","comment":"About string too long."},{"code":400,"name":"FIRSTNAME_INVALID","comment":"The first name is invalid."}],"available":"user"},{"kind":"method","name":"account.updateStatus","type":"Bool","id":1713919532,"comment":"Updates online user status.","arguments":[{"name":"offline","type":"Bool","comment":"If true is transmitted, user status will change to {@link RawUserStatusOffline}."}],"available":"user"},{"kind":"method","name":"account.getWallPapers","type":"account.WallPapers","id":127302966,"comment":"Returns a list of available wallpapers.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.reportPeer","type":"Bool","id":3317316998,"comment":"Report a peer for violation of telegram's Terms of Service","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer to report"},{"name":"reason","type":"ReportReason","comment":"The reason why this peer is being reported"},{"name":"message","type":"string","comment":"Comment for report moderation"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.checkUsername","type":"Bool","id":655677548,"comment":"Validates a username and checks availability.","arguments":[{"name":"username","type":"string","comment":"username
Accepted characters: A-z (case-insensitive), 0-9 and underscores.
Length: 5-32 characters."}],"throws":[{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},{"kind":"method","name":"account.updateUsername","type":"User","id":1040964988,"comment":"Changes username for the current user.","arguments":[{"name":"username","type":"string","comment":"username or empty string if username is to be removed
Accepted characters: a-z (case-insensitive), 0-9 and underscores.
Length: 5-32 characters."}],"throws":[{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},{"kind":"method","name":"account.getPrivacy","type":"account.PrivacyRules","typeModifiers":{"constructorId":1352683077},"id":3671837008,"comment":"Get privacy settings of current account","arguments":[{"name":"key","type":"InputPrivacyKey","comment":"Peer category whose privacy settings should be fetched"}],"throws":[{"code":400,"name":"PRIVACY_KEY_INVALID","comment":"The privacy key is invalid."}],"available":"user"},{"kind":"method","name":"account.setPrivacy","type":"account.PrivacyRules","typeModifiers":{"constructorId":1352683077},"id":3388480744,"comment":"Change privacy settings of current account","arguments":[{"name":"key","type":"InputPrivacyKey","comment":"New privacy rule"},{"name":"rules","type":"InputPrivacyRule","typeModifiers":{"isVector":true},"comment":"Peers to which the privacy rule will apply."}],"throws":[{"code":400,"name":"PRIVACY_KEY_INVALID","comment":"The privacy key is invalid."},{"code":400,"name":"PRIVACY_TOO_LONG","comment":"Too many privacy rules were specified, the current limit is 1000."},{"code":400,"name":"PRIVACY_VALUE_INVALID","comment":"The specified privacy rule combination is invalid."}],"available":"user"},{"kind":"method","name":"account.deleteAccount","type":"Bool","id":2730545012,"comment":"Delete the user's account from the telegram servers.\n\nCan also be used to delete the account of a user that provided the login code, but forgot the 2FA password and no recovery method is configured, see here » for more info on password recovery, and here » for more info on account deletion.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reason","type":"string","comment":"Why is the account being deleted, can be empty"},{"name":"password","type":"InputCheckPasswordSRP","typeModifiers":{"predicate":"flags.0"},"comment":"2FA password: this field can be omitted even for accounts with 2FA enabled: in this case account account deletion will be delayed by 7 days as specified in the docs »"}],"throws":[{"code":420,"name":"2FA_CONFIRM_WAIT_%d","comment":"Since this account is active and protected by a 2FA password, we will delete it in 1 week for security purposes. You can cancel this process at any time, you'll be able to reset your account in %d seconds."}],"available":"user"},{"kind":"method","name":"account.getAccountTTL","type":"AccountDaysTTL","typeModifiers":{"constructorId":3100684255},"id":150761757,"comment":"Get days to live of account","arguments":[],"available":"user"},{"kind":"method","name":"account.setAccountTTL","type":"Bool","id":608323678,"comment":"Set account self-destruction period","arguments":[{"name":"ttl","type":"AccountDaysTTL","comment":"Time to live in days"}],"throws":[{"code":400,"name":"TTL_DAYS_INVALID","comment":"The provided TTL is invalid."}],"available":"user"},{"kind":"method","name":"account.sendChangePhoneCode","type":"auth.SentCode","id":2186758885,"comment":"Verify a new phone number to associate to the current account","arguments":[{"name":"phone_number","type":"string","comment":"New phone number"},{"name":"settings","type":"CodeSettings","comment":"Phone code settings"}],"throws":[{"code":406,"name":"FRESH_CHANGE_PHONE_FORBIDDEN","comment":"You can't change phone number right after logging in, please wait at least 24 hours."},{"code":400,"name":"PHONE_NUMBER_BANNED","comment":"The provided phone number is banned from telegram."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_OCCUPIED","comment":"The phone number is already in use."}],"available":"user"},{"kind":"method","name":"account.changePhone","type":"User","id":1891839707,"comment":"Change the phone number of the current account","arguments":[{"name":"phone_number","type":"string","comment":"New phone number"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash received when calling {@link account.RawSendChangePhoneCodeRequest}"},{"name":"phone_code","type":"string","comment":"Phone code received when calling {@link account.RawSendChangePhoneCodeRequest}"}],"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_OCCUPIED","comment":"The phone number is already in use."}],"available":"user"},{"kind":"method","name":"account.updateDeviceLocked","type":"Bool","id":954152242,"comment":"When client-side passcode lock feature is enabled, will not show message texts in incoming PUSH notifications.","arguments":[{"name":"period","type":"int","comment":"Inactivity period after which to start hiding message texts in PUSH notifications."}],"available":"user"},{"kind":"method","name":"account.getAuthorizations","type":"account.Authorizations","typeModifiers":{"constructorId":1275039392},"id":3810574680,"comment":"Get logged-in sessions","arguments":[],"available":"user"},{"kind":"method","name":"account.resetAuthorization","type":"Bool","id":3749180348,"comment":"Log out an active authorized session by its hash","arguments":[{"name":"hash","type":"long","comment":"Session hash"}],"throws":[{"code":406,"name":"FRESH_RESET_AUTHORISATION_FORBIDDEN","comment":"You can't logout other sessions if less than 24 hours have passed since you logged on the current session."},{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},{"kind":"method","name":"account.getPassword","type":"account.Password","typeModifiers":{"constructorId":2507886843},"id":1418342645,"comment":"Obtain configuration for two-factor authorization with password","arguments":[],"available":"user"},{"kind":"method","name":"account.getPasswordSettings","type":"account.PasswordSettings","typeModifiers":{"constructorId":2589733861},"id":2631199481,"comment":"Get private info associated to the password info (recovery email, telegram passport info & so on)","arguments":[{"name":"password","type":"InputCheckPasswordSRP","comment":"The password (see SRP)"}],"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."}],"available":"user"},{"kind":"method","name":"account.updatePasswordSettings","type":"Bool","id":2778402863,"comment":"Set a new 2FA password","arguments":[{"name":"password","type":"InputCheckPasswordSRP","comment":"The old password (see SRP)"},{"name":"new_settings","type":"account.PasswordInputSettings","comment":"The new password (see SRP)"}],"throws":[{"code":400,"name":"EMAIL_INVALID","comment":"The specified email is invalid."},{"code":400,"name":"EMAIL_UNCONFIRMED","comment":"Email unconfirmed."},{"code":400,"name":"EMAIL_UNCONFIRMED_%d","comment":"The provided email isn't confirmed, %d is the length of the verification code that was just sent to the email: use {@link account.RawVerifyEmailRequest} to enter the received verification code and enable the recovery email."},{"code":400,"name":"NEW_SALT_INVALID","comment":"The new salt is invalid."},{"code":400,"name":"NEW_SETTINGS_EMPTY","comment":"No password is set on the current account, and no new password was specified in new_settings."},{"code":400,"name":"NEW_SETTINGS_INVALID","comment":"The new password settings are invalid."},{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"SRP_ID_INVALID","comment":"Invalid SRP ID provided."},{"code":400,"name":"SRP_PASSWORD_CHANGED","comment":"Password has changed."}],"available":"user"},{"kind":"method","name":"account.sendConfirmPhoneCode","type":"auth.SentCode","id":457157256,"comment":"Send confirmation code to cancel account deletion, for more info click here »","arguments":[{"name":"hash","type":"string","comment":"The hash from the service notification, for more info click here »"},{"name":"settings","type":"CodeSettings","comment":"Phone code settings"}],"throws":[{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},{"kind":"method","name":"account.confirmPhone","type":"Bool","id":1596029123,"comment":"Confirm a phone number to cancel account deletion, for more info click here »","arguments":[{"name":"phone_code_hash","type":"string","comment":"Phone code hash, for more info click here »"},{"name":"phone_code","type":"string","comment":"SMS code, for more info click here »"}],"throws":[{"code":400,"name":"CODE_HASH_INVALID","comment":"Code hash invalid."},{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."}],"available":"user"},{"kind":"method","name":"account.getTmpPassword","type":"account.TmpPassword","typeModifiers":{"constructorId":3680828724},"id":1151208273,"comment":"Get temporary payment password","arguments":[{"name":"password","type":"InputCheckPasswordSRP","comment":"SRP password parameters"},{"name":"period","type":"int","comment":"Time during which the temporary password will be valid, in seconds; should be between 60 and 86400"}],"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"TMP_PASSWORD_DISABLED","comment":"The temporary password is disabled."}],"available":"user"},{"kind":"method","name":"account.getWebAuthorizations","type":"account.WebAuthorizations","typeModifiers":{"constructorId":3981887996},"id":405695855,"comment":"Get web login widget authorizations","arguments":[],"available":"user"},{"kind":"method","name":"account.resetWebAuthorization","type":"Bool","id":755087855,"comment":"Log out an active web telegram login session","arguments":[{"name":"hash","type":"long","comment":"{@link RawWebAuthorization} hash"}],"throws":[{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},{"kind":"method","name":"account.resetWebAuthorizations","type":"Bool","id":1747789204,"comment":"Reset all active web telegram login sessions","arguments":[],"available":"user"},{"kind":"method","name":"account.getAllSecureValues","type":"SecureValue","typeModifiers":{"isVector":true,"constructorId":411017418},"id":2995305597,"comment":"Get all saved Telegram Passport documents, for more info see the passport docs »","arguments":[],"available":"user"},{"kind":"method","name":"account.getSecureValue","type":"SecureValue","typeModifiers":{"isVector":true,"constructorId":411017418},"id":1936088002,"comment":"Get saved Telegram Passport document, for more info see the passport docs »","arguments":[{"name":"types","type":"SecureValueType","typeModifiers":{"isVector":true},"comment":"Requested value types"}],"available":"user"},{"kind":"method","name":"account.saveSecureValue","type":"SecureValue","typeModifiers":{"constructorId":411017418},"id":2308956957,"comment":"Securely save Telegram Passport document, for more info see the passport docs »","arguments":[{"name":"value","type":"InputSecureValue","comment":"Secure value, for more info see the passport docs »"},{"name":"secure_secret_id","type":"long","comment":"Passport secret hash, for more info see the passport docs »"}],"throws":[{"code":400,"name":"PASSWORD_REQUIRED","comment":"A 2FA password must be configured to use Telegram Passport."},{"code":400,"name":"SECURE_SECRET_REQUIRED","comment":"A secure secret is required."}],"available":"user"},{"kind":"method","name":"account.deleteSecureValue","type":"Bool","id":3095444555,"comment":"Delete stored Telegram Passport documents, for more info see the passport docs »","arguments":[{"name":"types","type":"SecureValueType","typeModifiers":{"isVector":true},"comment":"Document types to delete"}],"available":"user"},{"kind":"method","name":"account.getAuthorizationForm","type":"account.AuthorizationForm","typeModifiers":{"constructorId":2905480408},"id":2838059386,"comment":"Returns a Telegram Passport authorization form for sharing data with a service","arguments":[{"name":"bot_id","type":"int53","comment":"User identifier of the service's bot"},{"name":"scope","type":"string","comment":"Telegram Passport element types requested by the service"},{"name":"public_key","type":"string","comment":"Service's public key"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"PUBLIC_KEY_REQUIRED","comment":"A public key is required."}],"available":"user"},{"kind":"method","name":"account.acceptAuthorization","type":"Bool","id":4092415091,"comment":"Sends a Telegram Passport authorization form, effectively sharing data with the service","arguments":[{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"scope","type":"string","comment":"Telegram Passport element types requested by the service"},{"name":"public_key","type":"string","comment":"Service's public key"},{"name":"value_hashes","type":"SecureValueHash","typeModifiers":{"isVector":true},"comment":"Types of values sent and their hashes"},{"name":"credentials","type":"SecureCredentialsEncrypted","comment":"Encrypted values"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"PUBLIC_KEY_REQUIRED","comment":"A public key is required."}],"available":"user"},{"kind":"method","name":"account.sendVerifyPhoneCode","type":"auth.SentCode","id":2778945273,"comment":"Send the verification phone code for telegram passport.","arguments":[{"name":"phone_number","type":"string","comment":"The phone number to verify"},{"name":"settings","type":"CodeSettings","comment":"Phone code settings"}],"throws":[{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"account.verifyPhone","type":"Bool","id":1305716726,"comment":"Verify a phone number for telegram passport.","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash received from the call to {@link account.RawSendVerifyPhoneCodeRequest}"},{"name":"phone_code","type":"string","comment":"Code received after the call to {@link account.RawSendVerifyPhoneCodeRequest}"}],"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"account.sendVerifyEmailCode","type":"account.SentEmailCode","typeModifiers":{"constructorId":2166326607},"id":2564831163,"comment":"Send an email verification code.","arguments":[{"name":"purpose","type":"EmailVerifyPurpose","comment":"Verification purpose."},{"name":"email","type":"string","comment":"The email where to send the code."}],"throws":[{"code":400,"name":"EMAIL_INVALID","comment":"The specified email is invalid."},{"code":400,"name":"EMAIL_NOT_ALLOWED","comment":"The specified email cannot be used to complete the operation."},{"code":400,"name":"EMAIL_NOT_SETUP","comment":"In order to change the login email with emailVerifyPurposeLoginChange, an existing login email must already be set using emailVerifyPurposeLoginSetup."},{"code":400,"name":"PHONE_HASH_EXPIRED","comment":"An invalid or expired phone_code_hash was provided."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"account.verifyEmail","type":"account.EmailVerified","id":53322959,"comment":"Verify an email address.","arguments":[{"name":"purpose","type":"EmailVerifyPurpose","comment":"Verification purpose"},{"name":"verification","type":"EmailVerification","comment":"Email verification code or token"}],"throws":[{"code":400,"name":"EMAIL_INVALID","comment":"The specified email is invalid."},{"code":400,"name":"EMAIL_NOT_ALLOWED","comment":"The specified email cannot be used to complete the operation."},{"code":400,"name":"EMAIL_VERIFY_EXPIRED","comment":"The verification email has expired."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"account.initTakeoutSession","type":"account.Takeout","typeModifiers":{"constructorId":1304052993},"id":2398350000,"comment":"Initialize a takeout session, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to export contacts"},{"name":"message_users","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to export messages in private chats"},{"name":"message_chats","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to export messages in basic groups"},{"name":"message_megagroups","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether to export messages in supergroups"},{"name":"message_channels","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether to export messages in channels"},{"name":"files","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to export files"},{"name":"file_max_size","type":"int53","typeModifiers":{"predicate":"flags.5"},"comment":"Maximum size of files to export"}],"throws":[{"code":420,"name":"TAKEOUT_INIT_DELAY_%d","comment":"Sorry, for security reasons, you will be able to begin downloading your data in %d seconds. We have notified all your devices about the export request to make sure it's authorized and to give you time to react if it's not."}],"available":"user"},{"kind":"method","name":"account.finishTakeoutSession","type":"Bool","id":489050862,"comment":"Terminate a takeout session, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"success","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Data exported successfully"}],"throws":[{"code":403,"name":"TAKEOUT_REQUIRED","comment":"A takeout session needs to be initialized first, see here » for more info."}],"available":"user"},{"kind":"method","name":"account.confirmPasswordEmail","type":"Bool","id":2413762848,"comment":"Verify an email to use as 2FA recovery method.","arguments":[{"name":"code","type":"string","comment":"The phone code that was received after setting a recovery email"}],"throws":[{"code":400,"name":"CODE_INVALID","comment":"Code invalid."},{"code":400,"name":"EMAIL_HASH_EXPIRED","comment":"Email hash expired."}],"available":"user"},{"kind":"method","name":"account.resendPasswordEmail","type":"Bool","id":2055154197,"comment":"Resend the code to verify an email to use as 2FA recovery method.","arguments":[],"throws":[{"code":400,"name":"EMAIL_HASH_EXPIRED","comment":"Email hash expired."}],"available":"user"},{"kind":"method","name":"account.cancelPasswordEmail","type":"Bool","id":3251361206,"comment":"Cancel the code that was sent to verify an email to use as 2FA recovery method.","arguments":[],"throws":[{"code":400,"name":"EMAIL_HASH_EXPIRED","comment":"Email hash expired."}],"available":"user"},{"kind":"method","name":"account.getContactSignUpNotification","type":"Bool","id":2668087080,"comment":"Whether the user will receive notifications when contacts sign up","arguments":[],"available":"user"},{"kind":"method","name":"account.setContactSignUpNotification","type":"Bool","id":3488890721,"comment":"Toggle contact sign up notifications","arguments":[{"name":"silent","type":"Bool","comment":"Whether to disable contact sign up notifications"}],"available":"user"},{"kind":"method","name":"account.getNotifyExceptions","type":"Updates","id":1398240377,"comment":"Returns list of chats with non-default notification settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"compare_sound","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, chats with non-default sound will be returned"},{"name":"compare_stories","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, chats with non-default notification settings for stories will be returned"},{"name":"peer","type":"InputNotifyPeer","typeModifiers":{"predicate":"flags.0"},"comment":"If specified, only chats of the specified category will be returned"}],"available":"user"},{"kind":"method","name":"account.getWallPaper","type":"WallPaper","id":4237155306,"comment":"Get info about a certain wallpaper","arguments":[{"name":"wallpaper","type":"InputWallPaper","comment":"The wallpaper to get info about"}],"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},{"kind":"method","name":"account.uploadWallPaper","type":"WallPaper","id":3818557187,"comment":"Create and upload a new wallpaper","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"for_chat","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag when uploading wallpapers to be passed to {@link messages.RawSetChatWallPaperRequest}."},{"name":"file","type":"InputFile","comment":"The JPG/PNG wallpaper"},{"name":"mime_type","type":"string","comment":"MIME type of uploaded wallpaper"},{"name":"settings","type":"WallPaperSettings","comment":"Wallpaper settings"}],"throws":[{"code":400,"name":"WALLPAPER_FILE_INVALID","comment":"The specified wallpaper file is invalid."},{"code":400,"name":"WALLPAPER_MIME_INVALID","comment":"The specified wallpaper MIME type is invalid."}],"available":"user"},{"kind":"method","name":"account.saveWallPaper","type":"Bool","id":1817860919,"comment":"Install/uninstall wallpaper","arguments":[{"name":"wallpaper","type":"InputWallPaper","comment":"Wallpaper to install or uninstall"},{"name":"unsave","type":"Bool","comment":"Uninstall wallpaper?"},{"name":"settings","type":"WallPaperSettings","comment":"Wallpaper settings"}],"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},{"kind":"method","name":"account.installWallPaper","type":"Bool","id":4276967273,"comment":"Install wallpaper","arguments":[{"name":"wallpaper","type":"InputWallPaper","comment":"Wallpaper to install"},{"name":"settings","type":"WallPaperSettings","comment":"Wallpaper settings"}],"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},{"kind":"method","name":"account.resetWallPapers","type":"Bool","id":3141244932,"comment":"Delete all installed wallpapers, reverting to the default wallpaper set.","arguments":[],"available":"user"},{"kind":"method","name":"account.getAutoDownloadSettings","type":"account.AutoDownloadSettings","typeModifiers":{"constructorId":1674235686},"id":1457130303,"comment":"Get media autodownload settings","arguments":[],"available":"user"},{"kind":"method","name":"account.saveAutoDownloadSettings","type":"Bool","id":1995661875,"comment":"Change media autodownload settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"low","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to save media in the low data usage preset"},{"name":"high","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to save media in the high data usage preset"},{"name":"settings","type":"AutoDownloadSettings","comment":"Media autodownload settings"}],"available":"user"},{"kind":"method","name":"account.uploadTheme","type":"Document","id":473805619,"comment":"Upload theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"file","type":"InputFile","comment":"Previously uploaded theme file with platform-specific colors for UI components, can be left unset when creating themes that only modify the wallpaper or accent colors."},{"name":"thumb","type":"InputFile","typeModifiers":{"predicate":"flags.0"},"comment":"Thumbnail"},{"name":"file_name","type":"string","comment":"File name"},{"name":"mime_type","type":"string","comment":"MIME type, must be application/x-tgtheme-{format}, where format depends on the client"}],"throws":[{"code":400,"name":"THEME_FILE_INVALID","comment":"Invalid theme file provided."},{"code":400,"name":"THEME_MIME_INVALID","comment":"The theme's MIME type is invalid."}],"available":"user"},{"kind":"method","name":"account.createTheme","type":"Theme","typeModifiers":{"constructorId":2685298646},"id":1697530880,"comment":"Create a theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"slug","type":"string","comment":"Unique theme ID used to generate theme deep links, can be empty to autogenerate a random ID."},{"name":"title","type":"string","comment":"Theme name"},{"name":"document","type":"InputDocument","typeModifiers":{"predicate":"flags.2"},"comment":"Theme file"},{"name":"settings","type":"InputThemeSettings","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Theme settings, multiple values can be provided for the different base themes (day/night mode, etc)."}],"throws":[{"code":400,"name":"THEME_MIME_INVALID","comment":"The theme's MIME type is invalid."},{"code":400,"name":"THEME_TITLE_INVALID","comment":"The specified theme title is invalid."}],"available":"user"},{"kind":"method","name":"account.updateTheme","type":"Theme","typeModifiers":{"constructorId":2685298646},"id":737414348,"comment":"Update theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"format","type":"string","comment":"Theme format, a string that identifies the theming engines supported by the client"},{"name":"theme","type":"InputTheme","comment":"Theme to update"},{"name":"slug","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Unique theme ID"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Theme name"},{"name":"document","type":"InputDocument","typeModifiers":{"predicate":"flags.2"},"comment":"Theme file"},{"name":"settings","type":"InputThemeSettings","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Theme settings"}],"throws":[{"code":400,"name":"THEME_INVALID","comment":"Invalid theme provided."}],"available":"user"},{"kind":"method","name":"account.saveTheme","type":"Bool","id":4065792108,"comment":"Save a theme","arguments":[{"name":"theme","type":"InputTheme","comment":"Theme to save"},{"name":"unsave","type":"Bool","comment":"Unsave"}],"throws":[{"code":400,"name":"THEME_INVALID","comment":"Invalid theme provided."}],"available":"user"},{"kind":"method","name":"account.installTheme","type":"Bool","id":3341269819,"comment":"Install a theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to install the dark version"},{"name":"theme","type":"InputTheme","typeModifiers":{"predicate":"flags.1"},"comment":"Theme to install"},{"name":"format","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Theme format, a string that identifies the theming engines supported by the client"},{"name":"base_theme","type":"BaseTheme","typeModifiers":{"predicate":"flags.3"},"comment":"Indicates a basic theme provided by all clients"}],"available":"user"},{"kind":"method","name":"account.getTheme","type":"Theme","typeModifiers":{"constructorId":2685298646},"id":978872812,"comment":"Get theme information","arguments":[{"name":"format","type":"string","comment":"Theme format, a string that identifies the theming engines supported by the client"},{"name":"theme","type":"InputTheme","comment":"Theme"}],"throws":[{"code":400,"name":"THEME_FORMAT_INVALID","comment":"Invalid theme format provided."},{"code":400,"name":"THEME_INVALID","comment":"Invalid theme provided."}],"available":"user"},{"kind":"method","name":"account.getThemes","type":"account.Themes","id":1913054296,"comment":"Get installed themes","arguments":[{"name":"format","type":"string","comment":"Theme format, a string that identifies the theming engines supported by the client"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.setContentSettings","type":"Bool","id":3044323691,"comment":"Set sensitive content settings (for viewing or hiding NSFW content)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"sensitive_enabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Enable NSFW content"}],"throws":[{"code":403,"name":"SENSITIVE_CHANGE_FORBIDDEN","comment":"You can't change your sensitive content settings."}],"available":"user"},{"kind":"method","name":"account.getContentSettings","type":"account.ContentSettings","typeModifiers":{"constructorId":1474462241},"id":2342210990,"comment":"Get sensitive content settings","arguments":[],"available":"user"},{"kind":"method","name":"account.getMultiWallPapers","type":"WallPaper","typeModifiers":{"isVector":true},"id":1705865692,"comment":"Get info about multiple wallpapers","arguments":[{"name":"wallpapers","type":"InputWallPaper","typeModifiers":{"isVector":true},"comment":"Wallpapers to fetch info about"}],"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},{"kind":"method","name":"account.getGlobalPrivacySettings","type":"GlobalPrivacySettings","typeModifiers":{"constructorId":1934380235},"id":3945483510,"comment":"Get global privacy settings","arguments":[],"available":"user"},{"kind":"method","name":"account.setGlobalPrivacySettings","type":"GlobalPrivacySettings","typeModifiers":{"constructorId":1934380235},"id":517647042,"comment":"Set global privacy settings","arguments":[{"name":"settings","type":"GlobalPrivacySettings","comment":"Global privacy settings"}],"throws":[{"code":400,"name":"AUTOARCHIVE_NOT_AVAILABLE","comment":"The autoarchive setting is not available at this time: please check the value of the autoarchive_setting_available field in client config » before calling this method."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"account.reportProfilePhoto","type":"Bool","id":4203529973,"comment":"Report a profile photo of a dialog","arguments":[{"name":"peer","type":"InputPeer","comment":"The dialog"},{"name":"photo_id","type":"InputPhoto","comment":"Dialog photo ID"},{"name":"reason","type":"ReportReason","comment":"Report reason"},{"name":"message","type":"string","comment":"Comment for report moderation"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.resetPassword","type":"account.ResetPasswordResult","id":2466827803,"comment":"Initiate a 2FA password reset: can only be used if the user is already logged-in, see here for more info »","arguments":[],"throws":[{"code":400,"name":"PASSWORD_EMPTY","comment":"The provided password is empty."}],"available":"user"},{"kind":"method","name":"account.declinePasswordReset","type":"Bool","id":1284770294,"comment":"Abort a pending 2FA password reset, see here for more info »","arguments":[],"throws":[{"code":400,"name":"RESET_REQUEST_MISSING","comment":"No password reset is in progress."}],"available":"user"},{"kind":"method","name":"account.getChatThemes","type":"account.Themes","id":3594051209,"comment":"Get all available chat themes ».","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.setAuthorizationTTL","type":"Bool","id":3213466272,"comment":"Set time-to-live of current session","arguments":[{"name":"authorization_ttl_days","type":"int","comment":"Time-to-live of current session in days"}],"throws":[{"code":406,"name":"FRESH_RESET_AUTHORISATION_FORBIDDEN","comment":"You can't logout other sessions if less than 24 hours have passed since you logged on the current session."},{"code":400,"name":"TTL_DAYS_INVALID","comment":"The provided TTL is invalid."}],"available":"user"},{"kind":"method","name":"account.changeAuthorizationSettings","type":"Bool","id":1089766498,"comment":"Change settings related to a session.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"confirmed","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, confirms a newly logged in session »."},{"name":"hash","type":"long","comment":"Session ID from the {@link RawAuthorization} constructor, fetchable using {@link account.RawGetAuthorizationsRequest}"},{"name":"encrypted_requests_disabled","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable or disable receiving encrypted chats: if the flag is not set, the previous setting is not changed"},{"name":"call_requests_disabled","type":"Bool","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to enable or disable receiving calls: if the flag is not set, the previous setting is not changed"}],"throws":[{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},{"kind":"method","name":"account.getSavedRingtones","type":"account.SavedRingtones","id":3784319624,"comment":"Fetch saved notification sounds","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.saveRingtone","type":"account.SavedRingtone","id":1038768899,"comment":"Save or remove saved notification sound.\n\nIf the notification sound is already in MP3 format, {@link account.RawSavedRingtone} will be returned.
\nOtherwise, it will be automatically converted and a {@link account.RawSavedRingtoneConverted} will be returned, containing a new {@link RawDocument} object that should be used to refer to the ringtone from now on (ie when deleting it using the unsave parameter, or when downloading it).","arguments":[{"name":"id","type":"InputDocument","comment":"Notification sound uploaded using {@link account.RawUploadRingtoneRequest}"},{"name":"unsave","type":"Bool","comment":"Whether to add or delete the notification sound"}],"throws":[{"code":400,"name":"RINGTONE_INVALID","comment":"The specified ringtone is invalid."}],"available":"user"},{"kind":"method","name":"account.uploadRingtone","type":"Document","id":2199552930,"comment":"Upload notification sound, use {@link account.RawSaveRingtoneRequest} to convert it and add it to the list of saved notification sounds.","arguments":[{"name":"file","type":"InputFile","comment":"Notification sound"},{"name":"file_name","type":"string","comment":"File name"},{"name":"mime_type","type":"string","comment":"MIME type of file"}],"throws":[{"code":400,"name":"RINGTONE_MIME_INVALID","comment":"The MIME type for the ringtone is invalid."}],"available":"user"},{"kind":"method","name":"account.updateEmojiStatus","type":"Bool","id":4224966251,"comment":"Set an emoji status","arguments":[{"name":"emoji_status","type":"EmojiStatus","comment":"Emoji status to set"}],"throws":[{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."}],"available":"user"},{"kind":"method","name":"account.getDefaultEmojiStatuses","type":"account.EmojiStatuses","id":3598005126,"comment":"Get a list of default suggested emoji statuses","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.getRecentEmojiStatuses","type":"account.EmojiStatuses","id":257392901,"comment":"Get recently used emoji statuses","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.clearRecentEmojiStatuses","type":"Bool","id":404757166,"comment":"Clears list of recently used emoji statuses","arguments":[],"available":"user"},{"kind":"method","name":"account.reorderUsernames","type":"Bool","id":4015001259,"comment":"Reorder usernames associated with the currently logged-in user.","arguments":[{"name":"order","type":"string","typeModifiers":{"isVector":true},"comment":"The new order for active usernames. All active usernames must be specified."}],"throws":[{"code":400,"name":"ORDER_INVALID","comment":"The specified username order is invalid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},{"kind":"method","name":"account.toggleUsername","type":"Bool","id":1490465654,"comment":"Activate or deactivate a purchased fragment.com username associated to the currently logged-in user.","arguments":[{"name":"username","type":"string","comment":"Username"},{"name":"active","type":"Bool","comment":"Whether to activate or deactivate it"}],"throws":[{"code":400,"name":"USERNAMES_ACTIVE_TOO_MUCH","comment":"The maximum number of active usernames was reached."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},{"kind":"method","name":"account.getDefaultProfilePhotoEmojis","type":"EmojiList","id":3799319336,"comment":"Get a set of suggested custom emoji stickers that can be used as profile picture","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.getDefaultGroupPhotoEmojis","type":"EmojiList","id":2438488238,"comment":"Get a set of suggested custom emoji stickers that can be used as group picture","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.getAutoSaveSettings","type":"account.AutoSaveSettings","typeModifiers":{"constructorId":1279133341},"id":2915810522,"comment":"Get autosave settings","arguments":[],"available":"user"},{"kind":"method","name":"account.saveAutoSaveSettings","type":"Bool","id":3600515937,"comment":"Modify autosave settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"users","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the new settings should affect all private chats"},{"name":"chats","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the new settings should affect all groups"},{"name":"broadcasts","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the new settings should affect all channels"},{"name":"peer","type":"InputPeer","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the new settings should affect a specific peer"},{"name":"settings","type":"AutoSaveSettings","comment":"The new autosave settings"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.deleteAutoSaveExceptions","type":"Bool","id":1404829728,"comment":"Clear all peer-specific autosave settings.","arguments":[],"available":"user"},{"kind":"method","name":"account.invalidateSignInCodes","type":"Bool","id":3398101178,"comment":"Invalidate the specified login codes, see here » for more info.","arguments":[{"name":"codes","type":"string","typeModifiers":{"isVector":true},"comment":"The login codes to invalidate."}],"available":"user"},{"kind":"method","name":"account.updateColor","type":"Bool","id":2096079197,"comment":"Update the accent color and background custom emoji » of the current account.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"for_profile","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to change the accent color emoji pattern of the profile page; otherwise, the accent color and emoji pattern of messages will be changed."},{"name":"color","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"ID of the accent color palette » to use (not RGB24, see here » for more info)."},{"name":"background_emoji_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"Custom emoji ID used in the accent color pattern."}],"throws":[{"code":400,"name":"COLOR_INVALID","comment":"The specified color palette ID was invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"account.getDefaultBackgroundEmojis","type":"EmojiList","id":2785720782,"comment":"Get a set of suggested custom emoji stickers that can be used in an accent color pattern.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.getChannelDefaultEmojiStatuses","type":"account.EmojiStatuses","id":1999087573,"comment":"Get a list of default suggested channel emoji statuses.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.getChannelRestrictedStatusEmojis","type":"EmojiList","id":900325589,"comment":"Returns fetch the full list of custom emoji IDs » that cannot be used in channel emoji statuses ».","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.updateBusinessWorkHours","type":"Bool","id":1258348646,"comment":"Specify a set of Telegram Business opening hours.
\nThis info will be contained in {@link RawUserFull}.business_work_hours.\n\nTo remove all opening hours, invoke the method without setting the business_work_hours field.\n\nNote that the opening hours specified by the user must be appropriately validated and transformed before invoking the method, as specified here ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"business_work_hours","type":"BusinessWorkHours","typeModifiers":{"predicate":"flags.0"},"comment":"Opening hours (optional, if not set removes all opening hours)."}],"throws":[{"code":400,"name":"BUSINESS_WORK_HOURS_EMPTY","comment":"No work hours were specified."},{"code":400,"name":"BUSINESS_WORK_HOURS_PERIOD_INVALID","comment":"The specified work hours are invalid, see here » for the exact requirements."},{"code":400,"name":"TIMEZONE_INVALID","comment":"The specified timezone does not exist."}],"available":"user"},{"kind":"method","name":"account.updateBusinessLocation","type":"Bool","id":2657817370,"comment":"Businesses » may advertise their location using this method, see here » for more info.\n\nTo remove business location information invoke the method without setting any of the parameters.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo_point","type":"InputGeoPoint","typeModifiers":{"predicate":"flags.1"},"comment":"Optional, contains a set of geographical coordinates."},{"name":"address","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Mandatory when setting/updating the location, contains a textual description of the address (max 96 UTF-8 chars)."}],"available":"user"},{"kind":"method","name":"account.updateBusinessGreetingMessage","type":"Bool","id":1724755908,"comment":"Set a list of Telegram Business greeting messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message","type":"InputBusinessGreetingMessage","typeModifiers":{"predicate":"flags.0"},"comment":"Greeting message configuration and contents."}],"available":"user"},{"kind":"method","name":"account.updateBusinessAwayMessage","type":"Bool","id":2724888485,"comment":"Set a list of Telegram Business away messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message","type":"InputBusinessAwayMessage","typeModifiers":{"predicate":"flags.0"},"comment":"Away message configuration and contents."}],"available":"user"},{"kind":"method","name":"account.updateConnectedBot","type":"Updates","id":1138250269,"comment":"Connect a business bot » to the current account, or to change the current connection settings.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_reply","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the bot can reply to messages it receives from us, on behalf of us using the business connection."},{"name":"deleted","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to fully disconnect the bot from the current account."},{"name":"bot","type":"InputUser","comment":"The bot to connect or disconnect"},{"name":"recipients","type":"InputBusinessBotRecipients","comment":"Configuration for the business connection"}],"throws":[{"code":400,"name":"BOT_BUSINESS_MISSING","comment":"The specified bot is not a business bot (the {@link RawUser}.bot_business flag is not set)."},{"code":400,"name":"BUSINESS_RECIPIENTS_EMPTY","comment":"You didn't set any flag in inputBusinessBotRecipients, thus the bot cannot work with any peer."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"account.getConnectedBots","type":"account.ConnectedBots","typeModifiers":{"constructorId":400029819},"id":1319421967,"comment":"List all currently connected business bots »","arguments":[],"available":"user"},{"kind":"method","name":"account.getBotBusinessConnection","type":"Updates","id":1990746736,"comment":"Bots may invoke this method to re-fetch the {@link RawUpdateBotBusinessConnect} constructor associated with a specific business connection_id, see here » for more info on connected business bots.
\nThis is needed for example for freshly logged in bots that are receiving some {@link RawUpdateBotNewBusinessMessage}, etc. updates because some users have already connected to the bot before it could login.
\nIn this case, the bot is receiving messages from the business connection, but it hasn't cached the associated {@link RawUpdateBotBusinessConnect} with info about the connection (can it reply to messages? etc.) yet, and cannot receive the old ones because they were sent when the bot wasn't logged into the session yet.
\nThis method can be used to fetch info about a not-yet-cached business connection, and should not be invoked if the info is already cached or to fetch changes, as eventual changes will automatically be sent as new {@link RawUpdateBotBusinessConnect} updates to the bot using the usual update delivery methods ».","arguments":[{"name":"connection_id","type":"string","comment":"Business connection ID »."}],"throws":[{"code":400,"name":"CONNECTION_ID_INVALID","comment":"The specified connection ID is invalid."}],"available":"both"},{"kind":"method","name":"account.updateBusinessIntro","type":"Bool","id":2786381876,"comment":"Set or remove the Telegram Business introduction ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"intro","type":"InputBusinessIntro","typeModifiers":{"predicate":"flags.0"},"comment":"Telegram Business introduction, to remove it call the method without setting this flag."}],"available":"user"},{"kind":"method","name":"account.toggleConnectedBotPaused","type":"Bool","id":1684934807,"comment":"Pause or unpause a specific chat, temporarily disconnecting it from all business bots ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat to pause"},{"name":"paused","type":"Bool","comment":"Whether to pause or unpause the chat"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.disablePeerConnectedBot","type":"Bool","id":1581481689,"comment":"Permanently disconnect a specific chat from all business bots » (equivalent to specifying it in recipients.exclude_users during initial configuration with {@link account.RawUpdateConnectedBotRequest}); to reconnect of a chat disconnected using this method the user must reconnect the entire bot by invoking {@link account.RawUpdateConnectedBotRequest}.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat to disconnect"}],"throws":[{"code":400,"name":"BOT_ALREADY_DISABLED","comment":"The connected business bot was already disabled for the specified peer."},{"code":400,"name":"BOT_NOT_CONNECTED_YET","comment":"No business bot is connected to the currently logged in user."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.updateBirthday","type":"Bool","id":3429764113,"comment":"Update our birthday, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"birthday","type":"Birthday","typeModifiers":{"predicate":"flags.0"},"comment":"Birthday."}],"throws":[{"code":400,"name":"BIRTHDAY_INVALID","comment":"An invalid age was specified, must be between 0 and 150 years."}],"available":"user"},{"kind":"method","name":"account.createBusinessChatLink","type":"BusinessChatLink","typeModifiers":{"constructorId":3031328367},"id":2287068814,"comment":"Create a business chat deep link ».","arguments":[{"name":"link","type":"InputBusinessChatLink","comment":"Info about the link to create."}],"throws":[{"code":400,"name":"CHATLINKS_TOO_MUCH","comment":"Too many business chat links were created, please delete some older links."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"account.editBusinessChatLink","type":"BusinessChatLink","typeModifiers":{"constructorId":3031328367},"id":2352222383,"comment":"Edit a created business chat deep link ».","arguments":[{"name":"slug","type":"string","comment":"Slug of the link, obtained as specified here »."},{"name":"link","type":"InputBusinessChatLink","comment":"New link information."}],"throws":[{"code":400,"name":"CHATLINK_SLUG_EMPTY","comment":"The specified slug is empty."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"account.deleteBusinessChatLink","type":"Bool","id":1611085428,"comment":"Delete a business chat deep link ».","arguments":[{"name":"slug","type":"string","comment":"Slug of the link, obtained as specified here »."}],"throws":[{"code":400,"name":"CHATLINK_SLUG_EMPTY","comment":"The specified slug is empty."},{"code":400,"name":"CHATLINK_SLUG_EXPIRED","comment":"The specified business chat link has expired."}],"available":"user"},{"kind":"method","name":"account.getBusinessChatLinks","type":"account.BusinessChatLinks","typeModifiers":{"constructorId":3963855569},"id":1869667809,"comment":"List all created business chat deep links ».","arguments":[],"available":"user"},{"kind":"method","name":"account.resolveBusinessChatLink","type":"account.ResolvedBusinessChatLinks","typeModifiers":{"constructorId":2586029857},"id":1418913262,"comment":"Resolve a business chat deep link ».","arguments":[{"name":"slug","type":"string","comment":"Slug of the link, obtained as specified here »."}],"throws":[{"code":400,"name":"CHATLINK_SLUG_EMPTY","comment":"The specified slug is empty."},{"code":400,"name":"CHATLINK_SLUG_EXPIRED","comment":"The specified business chat link has expired."}],"available":"user"},{"kind":"method","name":"account.updatePersonalChannel","type":"Bool","id":3645048288,"comment":"Associate (or remove) a personal channel », that will be listed on our personal profile page ».\n\nChanging it will emit an {@link RawUpdateUser} update.","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel, pass {@link RawInputChannelEmpty} to remove it."}],"available":"user"},{"kind":"method","name":"account.toggleSponsoredMessages","type":"Bool","id":3118048141,"comment":"Disable or re-enable Telegram ads for the current Premium account.\n\nUseful for business owners that may want to launch and view their own Telegram ads via the Telegram ad platform ».","arguments":[{"name":"enabled","type":"Bool","comment":"Enable or disable ads."}],"available":"user"},{"kind":"method","name":"account.getReactionsNotifySettings","type":"ReactionsNotifySettings","typeModifiers":{"constructorId":1457736048},"id":115172684,"comment":"Get the current reaction notification settings ».","arguments":[],"available":"user"},{"kind":"method","name":"account.setReactionsNotifySettings","type":"ReactionsNotifySettings","typeModifiers":{"constructorId":1457736048},"id":829220168,"comment":"Change the reaction notification settings ».","arguments":[{"name":"settings","type":"ReactionsNotifySettings","comment":"New reaction notification settings."}],"available":"user"},{"kind":"method","name":"users.getUsers","type":"User","typeModifiers":{"isVector":true},"id":227648840,"comment":"Returns basic user info according to their identifiers.","arguments":[{"name":"id","type":"InputUser","typeModifiers":{"isVector":true},"comment":"List of user identifiers"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"FROM_MESSAGE_BOT_DISABLED","comment":"Bots can't use fromMessage min constructors."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"users.getFullUser","type":"users.UserFull","typeModifiers":{"constructorId":997004590},"id":3054459160,"comment":"Returns extended user info by ID.","arguments":[{"name":"id","type":"InputUser","comment":"User ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"users.setSecureValueErrors","type":"Bool","id":2429064373,"comment":"Notify the user that the sent passport data contains some errors The user will not be able to re-submit their Passport data to you until the errors are fixed (the contents of the field for which you returned the error must change).\n\nUse this if the data submitted by the user doesn't satisfy the standards your service requires for any reason. For example, if a birthday date seems invalid, a submitted document is blurry, a scan shows evidence of tampering, etc. Supply some details in the error message to make sure the user knows how to correct the issues.","arguments":[{"name":"id","type":"InputUser","comment":"The user"},{"name":"errors","type":"SecureValueError","typeModifiers":{"isVector":true},"comment":"Errors"}],"throws":[{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"bot"},{"kind":"method","name":"users.getIsPremiumRequiredToContact","type":"Bool","typeModifiers":{"isVector":true},"id":2787289616,"comment":"Check whether we can write to the specified user (this method can only be called by non-Premium users), see here » for more info on the full flow.","arguments":[{"name":"id","type":"InputUser","typeModifiers":{"isVector":true},"comment":"Users to fetch info about."}],"available":"user"},{"kind":"method","name":"contacts.getContactIDs","type":"int","typeModifiers":{"isVector":true},"id":2061264541,"comment":"Get the telegram IDs of all contacts.
\nReturns an array of Telegram user IDs for all contacts (0 if a contact does not have an associated Telegram account or have hidden their account using privacy settings).","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"available":"user"},{"kind":"method","name":"contacts.getStatuses","type":"ContactStatus","typeModifiers":{"isVector":true,"constructorId":383348795},"id":3299038190,"comment":"Use this method to obtain the online statuses of all contacts with an accessible Telegram account.","arguments":[],"available":"user"},{"kind":"method","name":"contacts.getContacts","type":"contacts.Contacts","id":1574346258,"comment":"Returns the current user's contact list.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here.
Note that the hash is computed using the usual algorithm, passing to the algorithm first the previously returned {@link contacts.RawContacts}.saved_count field, then max 100000 sorted user IDs from the contact list, including the ID of the currently logged in user if it is saved as a contact.
Example: tdlib implementation."}],"available":"user"},{"kind":"method","name":"contacts.importContacts","type":"contacts.ImportedContacts","typeModifiers":{"constructorId":2010127419},"id":746589157,"comment":"Imports contacts: saves a full list on the server, adds already registered contacts to the contact list, returns added contacts and their info.\n\nUse {@link contacts.RawAddContactRequest} to add Telegram contacts without actually using their phone number.","arguments":[{"name":"contacts","type":"InputContact","typeModifiers":{"isVector":true},"comment":"List of contacts to import"}],"available":"user"},{"kind":"method","name":"contacts.deleteContacts","type":"Updates","id":157945344,"comment":"Deletes several contacts from the list.","arguments":[{"name":"id","type":"InputUser","typeModifiers":{"isVector":true},"comment":"User ID list"}],"available":"user"},{"kind":"method","name":"contacts.deleteByPhones","type":"Bool","id":269745566,"comment":"Delete contacts by phone number","arguments":[{"name":"phones","type":"string","typeModifiers":{"isVector":true},"comment":"Phone numbers"}],"available":"user"},{"kind":"method","name":"contacts.block","type":"Bool","id":774801204,"comment":"Adds a peer to a blocklist, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my_stories_from","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the peer should be added to the story blocklist; if not set, the peer will be added to the main blocklist, see here » for more info."},{"name":"id","type":"InputPeer","comment":"Peer"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"contacts.unblock","type":"Bool","id":3041973032,"comment":"Deletes a peer from a blocklist, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my_stories_from","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the peer should be removed from the story blocklist; if not set, the peer will be removed from the main blocklist, see here » for more info."},{"name":"id","type":"InputPeer","comment":"Peer"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"contacts.getBlocked","type":"contacts.Blocked","id":2592509824,"comment":"Returns the list of blocked users.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my_stories_from","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to fetch the story blocklist; if not set, will fetch the main blocklist. See here » for differences between the two."},{"name":"offset","type":"int","comment":"The number of list elements to be skipped"},{"name":"limit","type":"int","comment":"The number of list elements to be returned"}],"available":"user"},{"kind":"method","name":"contacts.search","type":"contacts.Found","typeModifiers":{"constructorId":3004386717},"id":301470424,"comment":"Returns users found by username substring.","arguments":[{"name":"q","type":"string","comment":"Target substring"},{"name":"limit","type":"int","comment":"Maximum number of users to be returned"}],"throws":[{"code":400,"name":"QUERY_TOO_SHORT","comment":"The query string is too short."},{"code":400,"name":"SEARCH_QUERY_EMPTY","comment":"The search query is empty."}],"available":"user"},{"kind":"method","name":"contacts.resolveUsername","type":"contacts.ResolvedPeer","typeModifiers":{"constructorId":2131196633},"id":4181511075,"comment":"Resolve a @username to get peer info","arguments":[{"name":"username","type":"string","comment":"@username to resolve"}],"throws":[{"code":400,"name":"CONNECTION_LAYER_INVALID","comment":"Layer invalid."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_OCCUPIED","comment":"The provided username is not occupied."}],"available":"both"},{"kind":"method","name":"contacts.getTopPeers","type":"contacts.TopPeers","id":2536798390,"comment":"Get most used peers","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"correspondents","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Users we've chatted most frequently with"},{"name":"bots_pm","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Most used bots"},{"name":"bots_inline","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Most used inline bots"},{"name":"phone_calls","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Most frequently called users"},{"name":"forward_users","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Users to which the users often forwards messages to"},{"name":"forward_chats","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Chats to which the users often forwards messages to"},{"name":"groups","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Often-opened groups and supergroups"},{"name":"channels","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Most frequently visited channels"},{"name":"bots_app","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"Most frequently used Main Mini Bot Apps."},{"name":"offset","type":"int","comment":"Offset for pagination"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":400,"name":"TYPES_EMPTY","comment":"No top peer type was provided."}],"available":"user"},{"kind":"method","name":"contacts.resetTopPeerRating","type":"Bool","id":451113900,"comment":"Reset rating of top peer","arguments":[{"name":"category","type":"TopPeerCategory","comment":"Top peer category"},{"name":"peer","type":"InputPeer","comment":"Peer whose rating should be reset"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"contacts.resetSaved","type":"Bool","id":2274703345,"comment":"Removes all contacts without an associated Telegram account.","arguments":[],"available":"user"},{"kind":"method","name":"contacts.getSaved","type":"SavedContact","typeModifiers":{"isVector":true,"constructorId":289586518},"id":2196890527,"comment":"Get all contacts, requires a takeout session, see here » for more info.","arguments":[],"throws":[{"code":400,"name":"TAKEOUT_INVALID","comment":"The specified takeout ID is invalid."},{"code":403,"name":"TAKEOUT_REQUIRED","comment":"A takeout session needs to be initialized first, see here » for more info."}],"available":"user"},{"kind":"method","name":"contacts.toggleTopPeers","type":"Bool","id":2232729050,"comment":"Enable/disable top peers","arguments":[{"name":"enabled","type":"Bool","comment":"Enable/disable"}],"available":"user"},{"kind":"method","name":"contacts.addContact","type":"Updates","id":3908330448,"comment":"Add an existing telegram user as contact.\n\nUse {@link contacts.RawImportContactsRequest} to add contacts by phone number, without knowing their Telegram ID.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"add_phone_privacy_exception","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Allow the other user to see our phone number?"},{"name":"id","type":"InputUser","comment":"Telegram ID of the other user"},{"name":"first_name","type":"string","comment":"First name"},{"name":"last_name","type":"string","comment":"Last name"},{"name":"phone","type":"string","comment":"User's phone number, may be omitted to simply add the user to the contact list, without a phone number."}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"CONTACT_NAME_EMPTY","comment":"Contact name empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"contacts.acceptContact","type":"Updates","id":4164002319,"comment":"If the add contact action bar is active, add that user as contact","arguments":[{"name":"id","type":"InputUser","comment":"The user to add as contact"}],"throws":[{"code":400,"name":"CONTACT_ADD_MISSING","comment":"Contact to add is missing."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"CONTACT_REQ_MISSING","comment":"Missing contact request."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"contacts.getLocated","type":"Updates","id":3544759364,"comment":"Get users and geochats near you, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"While the geolocation of the current user is public, clients should update it in the background every half-an-hour or so, while setting this flag.
Do this only if the new location is more than 1 KM away from the previous one, or if the previous location is unknown."},{"name":"geo_point","type":"InputGeoPoint","comment":"Geolocation"},{"name":"self_expires","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the geolocation of the current user will be public for the specified number of seconds; pass 0x7fffffff to disable expiry, 0 to make the current geolocation private; if the flag isn't set, no changes will be applied."}],"throws":[{"code":406,"name":"BUSINESS_ADDRESS_ACTIVE","comment":"The user is currently advertising a Business Location, the location may only be changed (or removed) using {@link account.RawUpdateBusinessLocationRequest}. ."},{"code":400,"name":"GEO_POINT_INVALID","comment":"Invalid geoposition provided."},{"code":406,"name":"USERPIC_PRIVACY_REQUIRED","comment":"You need to disable privacy settings for your profile picture in order to make your geolocation public."},{"code":406,"name":"USERPIC_UPLOAD_REQUIRED","comment":"You must have a profile picture to publish your geolocation."}],"available":"user"},{"kind":"method","name":"contacts.blockFromReplies","type":"Updates","id":698914348,"comment":"Stop getting notifications about discussion replies of a certain user in @replies","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"delete_message","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to delete the specified message as well"},{"name":"delete_history","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to delete all @replies messages from this user as well"},{"name":"report_spam","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to also report this user for spam"},{"name":"msg_id","type":"int","comment":"ID of the message in the @replies chat"}],"throws":[{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"contacts.resolvePhone","type":"contacts.ResolvedPeer","typeModifiers":{"constructorId":2131196633},"id":2331591492,"comment":"Resolve a phone number to get user info, if their privacy settings allow it.","arguments":[{"name":"phone","type":"string","comment":"Phone number in international format, possibly obtained from a phone number deep link."}],"throws":[{"code":400,"name":"PHONE_NOT_OCCUPIED","comment":"No user is associated to the specified phone number."}],"available":"user"},{"kind":"method","name":"contacts.exportContactToken","type":"ExportedContactToken","typeModifiers":{"constructorId":1103040667},"id":4167385127,"comment":"Generates a temporary profile link for the currently logged-in user.","arguments":[],"available":"user"},{"kind":"method","name":"contacts.importContactToken","type":"User","id":318789512,"comment":"Obtain user info from a temporary profile link.","arguments":[{"name":"token","type":"string","comment":"The token extracted from the temporary profile link."}],"throws":[{"code":400,"name":"IMPORT_TOKEN_INVALID","comment":"The specified token is invalid."}],"available":"user"},{"kind":"method","name":"contacts.editCloseFriends","type":"Bool","id":3127313904,"comment":"Edit the close friends list, see here » for more info.","arguments":[{"name":"id","type":"int53","typeModifiers":{"isVector":true},"comment":"Full list of user IDs of close friends, see here for more info."}],"available":"user"},{"kind":"method","name":"contacts.setBlocked","type":"Bool","id":2496027766,"comment":"Replace the contents of an entire blocklist, see here for more info ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my_stories_from","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to edit the story blocklist; if not set, will edit the main blocklist. See here » for differences between the two."},{"name":"id","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Full content of the blocklist."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"available":"user"},{"kind":"method","name":"contacts.getBirthdays","type":"contacts.ContactBirthdays","typeModifiers":{"constructorId":290452237},"id":3673008228,"comment":"Fetch all users with birthdays that fall within +1/-1 days, relative to the current day: this method should be invoked by clients every 6-8 hours, and if the result is non-empty, it should be used to appropriately update locally cached birthday information in {@link RawUser}.birthday.\n\nSee here » for more info.","arguments":[],"available":"user"},{"kind":"method","name":"messages.getMessages","type":"messages.Messages","id":1673946374,"comment":"Returns the list of messages by their IDs.","arguments":[{"name":"id","type":"InputMessage","typeModifiers":{"isVector":true},"comment":"Message ID list"}],"available":"both"},{"kind":"method","name":"messages.getDialogs","type":"messages.Dialogs","id":2700397391,"comment":"Returns the current user dialog list.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"exclude_pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Exclude pinned dialogs"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Peer folder ID, for more info click here"},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here (top_message ID used for pagination)"},{"name":"offset_peer","type":"InputPeer","comment":"Offset peer for pagination"},{"name":"limit","type":"int","comment":"Number of list elements to be returned"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."},{"code":400,"name":"OFFSET_PEER_ID_INVALID","comment":"The provided offset peer is invalid."}],"available":"user"},{"kind":"method","name":"messages.getHistory","type":"messages.Messages","id":1143203525,"comment":"Returns the conversation history with one interlocutor / within a chat","arguments":[{"name":"peer","type":"InputPeer","comment":"Target peer"},{"name":"offset_id","type":"int","comment":"Only return messages starting from the specified message ID"},{"name":"offset_date","type":"int","comment":"Only return messages sent before the specified date"},{"name":"add_offset","type":"int","comment":"Number of list elements to be skipped, negative values are also accepted."},{"name":"limit","type":"int","comment":"Number of results to return"},{"name":"max_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with IDs less than max_id"},{"name":"min_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with IDs more than min_id"},{"name":"hash","type":"long","comment":"Result hash"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TAKEOUT_INVALID","comment":"The specified takeout ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.search","type":"messages.Messages","id":703497338,"comment":"Search for messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"User or chat, histories with which are searched, or {@link RawInputPeerEmpty} constructor to search in all private chats and normal groups (not channels) ». Use {@link messages.RawSearchGlobalRequest} to search globally in all chats, groups, supergroups and channels."},{"name":"q","type":"string","comment":"Text search request"},{"name":"from_id","type":"InputPeer","typeModifiers":{"predicate":"flags.0"},"comment":"Only return messages sent by the specified user ID"},{"name":"saved_peer_id","type":"InputPeer","typeModifiers":{"predicate":"flags.2"},"comment":"Search within the saved message dialog » with this ID."},{"name":"saved_reaction","type":"Reaction","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"You may search for saved messages tagged » with one or more reactions using this flag."},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Thread ID"},{"name":"filter","type":"MessagesFilter","comment":"Filter to return only specified message types"},{"name":"min_date","type":"int","comment":"If a positive value was transferred, only messages with a sending date bigger than the transferred one will be returned"},{"name":"max_date","type":"int","comment":"If a positive value was transferred, only messages with a sending date smaller than the transferred one will be returned"},{"name":"offset_id","type":"int","comment":"Only return messages starting from the specified message ID"},{"name":"add_offset","type":"int","comment":"Additional offset"},{"name":"limit","type":"int","comment":"Number of results to return"},{"name":"max_id","type":"int","comment":"Maximum message ID to return"},{"name":"min_id","type":"int","comment":"Minimum message ID to return"},{"name":"hash","type":"long","comment":"Hash"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"FROM_PEER_INVALID","comment":"The specified from_id is invalid."},{"code":400,"name":"INPUT_FILTER_INVALID","comment":"The specified filter is invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PEER_ID_NOT_SUPPORTED","comment":"The provided peer ID is not supported."},{"code":400,"name":"SEARCH_QUERY_EMPTY","comment":"The search query is empty."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.readHistory","type":"messages.AffectedMessages","typeModifiers":{"constructorId":2228326789},"id":238054714,"comment":"Marks message history as read.","arguments":[{"name":"peer","type":"InputPeer","comment":"Target user or group"},{"name":"max_id","type":"int","comment":"If a positive value is passed, only messages with identifiers less or equal than the given one will be read"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteHistory","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":2962199082,"comment":"Deletes communication history.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"just_clear","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Just clear history for the current user, without actually removing messages for every chat user"},{"name":"revoke","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to delete the message history for all chat participants"},{"name":"peer","type":"InputPeer","comment":"User or chat, communication history of which will be deleted"},{"name":"max_id","type":"int","comment":"Maximum ID of message to delete"},{"name":"min_date","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Delete all messages newer than this UNIX timestamp"},{"name":"max_date","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Delete all messages older than this UNIX timestamp"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_REVOKE_DATE_UNSUPPORTED","comment":"min_date and max_date are not available for using with non-user peers."},{"code":400,"name":"MAX_DATE_INVALID","comment":"The specified maximum date is invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MIN_DATE_INVALID","comment":"The specified minimum date is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteMessages","type":"messages.AffectedMessages","typeModifiers":{"constructorId":2228326789},"id":3851326930,"comment":"Deletes messages by their identifiers.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoke","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to delete messages for all participants of the chat"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Message ID list"}],"throws":[{"code":403,"name":"MESSAGE_DELETE_FORBIDDEN","comment":"You can't delete one of the messages you tried to delete, most likely because it is a service message."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."}],"available":"both"},{"kind":"method","name":"messages.receivedMessages","type":"ReceivedNotifyMessage","typeModifiers":{"isVector":true,"constructorId":2743383929},"id":94983360,"comment":"Confirms receipt of messages by a client, cancels PUSH-notification sending.","arguments":[{"name":"max_id","type":"int","comment":"Maximum message ID available in a client."}],"available":"user"},{"kind":"method","name":"messages.setTyping","type":"Bool","id":1486110434,"comment":"Sends a current user typing event (see SendMessageAction for all event types) to a conversation partner or group.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Target user or group"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Topic ID"},{"name":"action","type":"SendMessageAction","comment":"Type of action"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."}],"available":"both"},{"kind":"method","name":"messages.sendMessage","type":"Updates","id":2554304325,"comment":"Sends a message to a chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag to disable generation of the webpage preview"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Send this message silently (no notifications for the receivers)"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Send this message as background message"},{"name":"clear_draft","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Clear the draft field"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled"},{"name":"update_stickersets_order","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Whether to move used stickersets to top, see here for more info on this flag »"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"peer","type":"InputPeer","comment":"The destination where the message will be sent"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story.
Also used to quote other messages."},{"name":"message","type":"string","comment":"The message"},{"name":"random_id","type":"long","comment":"Unique client message ID required to prevent message resending"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for sending bot buttons"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for sending styled text"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Scheduled message date for scheduled messages"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Send this message as the specified peer"},{"name":"quick_reply_shortcut","type":"InputQuickReplyShortcut","typeModifiers":{"predicate":"flags.17"},"comment":"Add the message to the specified quick reply shortcut », instead."},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags.18"},"comment":"Specifies a message effect » to use for the message."}],"throws":[{"code":400,"name":"ADMIN_RIGHTS_EMPTY","comment":"The chatAdminRights constructor passed in keyboardButtonRequestPeer.peer_type.user_admin_rights has no rights set (i.e. flags is 0)."},{"code":400,"name":"BOT_DOMAIN_INVALID","comment":"Bot domain invalid."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BUSINESS_PEER_INVALID","comment":"Messages can't be set to the specified peer through the current business connection."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"BUTTON_USER_INVALID","comment":"The user_id passed to inputKeyboardButtonUserProfile is invalid!"},{"code":400,"name":"BUTTON_USER_PRIVACY_RESTRICTED","comment":"The privacy setting of the user specified in a {@link RawInputKeyboardButtonUserProfile} button do not allow creating such a button."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":400,"name":"ENTITIES_TOO_LONG","comment":"You provided too many styled message entities."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"ENTITY_MENTION_USER_INVALID","comment":"You mentioned an invalid user."},{"code":400,"name":"FROM_MESSAGE_BOT_DISABLED","comment":"Bots can't use fromMessage min constructors."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":406,"name":"PAYMENT_UNSUPPORTED","comment":"A detailed description of the error will be received separately as described here »."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PINNED_DIALOGS_TOO_MUCH","comment":"Too many pinned dialogs."},{"code":400,"name":"POLL_OPTION_INVALID","comment":"Invalid poll option provided."},{"code":406,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":400,"name":"QUOTE_TEXT_INVALID","comment":"The specified reply_to.quote_text field is invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"REPLY_MARKUP_TOO_LONG","comment":"The specified reply_markup is too long."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"REPLY_MESSAGE_ID_INVALID","comment":"The specified reply-to message ID is invalid."},{"code":400,"name":"REPLY_TO_INVALID","comment":"The specified reply_to field is invalid."},{"code":400,"name":"REPLY_TO_USER_INVALID","comment":"The replied-to user is invalid."},{"code":400,"name":"SCHEDULE_BOT_NOT_ALLOWED","comment":"Bots cannot schedule messages."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_STATUS_PRIVATE","comment":"Can't schedule until user is online, if the user's last seen timestamp is hidden by their privacy settings."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."},{"code":406,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":406,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."},{"code":400,"name":"WC_CONVERT_URL_INVALID","comment":"WC convert URL invalid."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"both"},{"kind":"method","name":"messages.sendMedia","type":"Updates","id":2018673486,"comment":"Send a media","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Send message silently (no notification should be triggered)"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Send message in background"},{"name":"clear_draft","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Clear the draft"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled"},{"name":"update_stickersets_order","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Whether to move used stickersets to top, see here for more info on this flag »"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"peer","type":"InputPeer","comment":"Destination"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story."},{"name":"media","type":"InputMedia","comment":"Attached media"},{"name":"message","type":"string","comment":"Caption"},{"name":"random_id","type":"long","comment":"Random ID to avoid resending the same message"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for bot keyboards"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Scheduled message date for scheduled messages"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Send this message as the specified peer"},{"name":"quick_reply_shortcut","type":"InputQuickReplyShortcut","typeModifiers":{"predicate":"flags.17"},"comment":"Add the message to the specified quick reply shortcut », instead."},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags.18"},"comment":"Specifies a message effect » to use for the message."}],"throws":[{"code":400,"name":"BOT_GAMES_DISABLED","comment":"Games can't be sent to channels."},{"code":400,"name":"BOT_PAYMENTS_DISABLED","comment":"Please enable bot payments in botfather before calling this method."},{"code":400,"name":"BROADCAST_PUBLIC_VOTERS_FORBIDDEN","comment":"You can't forward polls with public voters."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_POS_INVALID","comment":"The position of one of the keyboard buttons is invalid (i.e. a Game or Pay button not in the first position, and so on...)."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_AUDIOS_FORBIDDEN","comment":"You can't send audio messages in this chat."},{"code":403,"name":"CHAT_SEND_DOCS_FORBIDDEN","comment":"You can't send documents in this chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_SEND_POLL_FORBIDDEN","comment":"You can't send polls in this chat."},{"code":403,"name":"CHAT_SEND_ROUNDVIDEOS_FORBIDDEN","comment":"You can't send round videos to this chat."},{"code":403,"name":"CHAT_SEND_STICKERS_FORBIDDEN","comment":"You can't send stickers in this chat."},{"code":403,"name":"CHAT_SEND_VIDEOS_FORBIDDEN","comment":"You can't send videos in this chat."},{"code":403,"name":"CHAT_SEND_VOICES_FORBIDDEN","comment":"You can't send voice recordings in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"CURRENCY_TOTAL_AMOUNT_INVALID","comment":"The total amount of all prices is invalid."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"EMOTICON_INVALID","comment":"The specified emoji is invalid."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"EXTERNAL_URL_INVALID","comment":"External URL invalid."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_PART_LENGTH_INVALID","comment":"The length of a file part is invalid."},{"code":400,"name":"FILE_REFERENCE_EMPTY","comment":"An empty file reference was specified."},{"code":400,"name":"FILE_REFERENCE_EXPIRED","comment":"File reference expired, it must be refetched as described in the documentation."},{"code":400,"name":"GAME_BOT_INVALID","comment":"Bots can't send another bot's game."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"INPUT_FILE_INVALID","comment":"The specified InputFile is invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MD5_CHECKSUM_INVALID","comment":"The MD5 checksums do not match."},{"code":400,"name":"MEDIA_CAPTION_TOO_LONG","comment":"The caption is too long."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PAYMENT_PROVIDER_INVALID","comment":"The specified payment provider is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID_DIMENSIONS","comment":"The photo dimensions are invalid."},{"code":400,"name":"PHOTO_SAVE_FILE_INVALID","comment":"Internal issues, try again later."},{"code":400,"name":"POLL_ANSWERS_INVALID","comment":"Invalid poll answers were provided."},{"code":400,"name":"POLL_ANSWER_INVALID","comment":"One of the poll answers is not acceptable."},{"code":400,"name":"POLL_OPTION_DUPLICATE","comment":"Duplicate poll options provided."},{"code":400,"name":"POLL_OPTION_INVALID","comment":"Invalid poll option provided."},{"code":400,"name":"POLL_QUESTION_INVALID","comment":"One of the poll questions is not acceptable."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":403,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":400,"name":"QUIZ_CORRECT_ANSWERS_EMPTY","comment":"No correct quiz answer was specified."},{"code":400,"name":"QUIZ_CORRECT_ANSWERS_TOO_MUCH","comment":"You specified too many correct answers in a quiz, quizzes can only have one right answer!"},{"code":400,"name":"QUIZ_CORRECT_ANSWER_INVALID","comment":"An invalid value was provided to the correct_answers field."},{"code":400,"name":"QUIZ_MULTIPLE_INVALID","comment":"Quizzes can't have the multiple_choice flag set!"},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"REPLY_MARKUP_BUY_EMPTY","comment":"Reply markup for buy button empty."},{"code":400,"name":"REPLY_MARKUP_GAME_EMPTY","comment":"A game message is being edited, but the newly provided keyboard doesn't have a keyboardButtonGame button."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"REPLY_MARKUP_TOO_LONG","comment":"The specified reply_markup is too long."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"SCHEDULE_BOT_NOT_ALLOWED","comment":"Bots cannot schedule messages."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."},{"code":406,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":406,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"TTL_MEDIA_INVALID","comment":"Invalid media Time To Live was provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."},{"code":400,"name":"VIDEO_CONTENT_TYPE_INVALID","comment":"The video's content type is invalid."},{"code":400,"name":"VOICE_MESSAGES_FORBIDDEN","comment":"This user's privacy settings forbid you from sending voice messages."},{"code":400,"name":"WEBDOCUMENT_MIME_INVALID","comment":"Invalid webdocument mime type provided."},{"code":400,"name":"WEBPAGE_CURL_FAILED","comment":"Failure while fetching the webpage with cURL."},{"code":400,"name":"WEBPAGE_MEDIA_EMPTY","comment":"Webpage media empty."},{"code":400,"name":"WEBPAGE_NOT_FOUND","comment":"A preview for the specified webpage url could not be generated."},{"code":400,"name":"WEBPAGE_URL_INVALID","comment":"The specified webpage url is invalid."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"both"},{"kind":"method","name":"messages.forwardMessages","type":"Updates","id":3573781000,"comment":"Forwards messages by their IDs.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to send messages silently (no notification will be triggered on the destination clients)"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether to send the message in background"},{"name":"with_my_score","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"When forwarding games, whether to include your score in the game"},{"name":"drop_author","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether to forward messages without quoting the original author"},{"name":"drop_media_captions","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether to strip captions from media"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Only for bots, disallows further re-forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled"},{"name":"from_peer","type":"InputPeer","comment":"Source of messages"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages"},{"name":"random_id","type":"long","typeModifiers":{"isVector":true},"comment":"Random ID to prevent resending of messages"},{"name":"to_peer","type":"InputPeer","comment":"Destination peer"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.9"},"comment":"Destination forum topic"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Scheduled message date for scheduled messages"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Forward the messages as the specified peer"},{"name":"quick_reply_shortcut","type":"InputQuickReplyShortcut","typeModifiers":{"predicate":"flags.17"},"comment":"Add the messages to the specified quick reply shortcut », instead."}],"throws":[{"code":400,"name":"BROADCAST_PUBLIC_VOTERS_FORBIDDEN","comment":"You can't forward polls with public voters."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":406,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_AUDIOS_FORBIDDEN","comment":"You can't send audio messages in this chat."},{"code":403,"name":"CHAT_SEND_DOCS_FORBIDDEN","comment":"You can't send documents in this chat."},{"code":403,"name":"CHAT_SEND_GAME_FORBIDDEN","comment":"You can't send a game to this chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_SEND_POLL_FORBIDDEN","comment":"You can't send polls in this chat."},{"code":403,"name":"CHAT_SEND_STICKERS_FORBIDDEN","comment":"You can't send stickers in this chat."},{"code":403,"name":"CHAT_SEND_VIDEOS_FORBIDDEN","comment":"You can't send videos in this chat."},{"code":403,"name":"CHAT_SEND_VOICES_FORBIDDEN","comment":"You can't send voice recordings in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"GROUPED_MEDIA_INVALID","comment":"Invalid grouped media."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MESSAGE_IDS_EMPTY","comment":"No message ids were provided."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":406,"name":"PAYMENT_UNSUPPORTED","comment":"A detailed description of the error will be received separately as described here »."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":406,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":400,"name":"QUIZ_ANSWER_MISSING","comment":"You can forward a quiz while hiding the original author only after choosing an option in the quiz."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"RANDOM_ID_INVALID","comment":"A provided random ID is invalid."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"SCHEDULE_BOT_NOT_ALLOWED","comment":"Bots cannot schedule messages."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":400,"name":"SLOWMODE_MULTI_MSGS_DISABLED","comment":"Slowmode is enabled, you cannot forward multiple messages to this group."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":406,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":406,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."},{"code":403,"name":"VOICE_MESSAGES_FORBIDDEN","comment":"This user's privacy settings forbid you from sending voice messages."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"both"},{"kind":"method","name":"messages.reportSpam","type":"Bool","id":3474297563,"comment":"Report a new incoming chat for spam, if the {@link RawPeerSettings} of the chat allow us to do that","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer to report"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getPeerSettings","type":"messages.PeerSettings","typeModifiers":{"constructorId":1753266509},"id":4024018594,"comment":"Get peer settings","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.report","id":4235767707,"type":"ReportResult","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages to report"},{"name":"option","type":"bytes"},{"name":"message","type":"string","comment":"Comment for report moderation"}],"comment":"Report a message in a chat for violation of telegram's Terms of Service","throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getChats","type":"messages.Chats","id":1240027791,"comment":"Returns chat basic info on their IDs.","arguments":[{"name":"id","type":"int53","typeModifiers":{"isVector":true},"comment":"List of chat IDs"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"messages.getFullChat","type":"messages.ChatFull","typeModifiers":{"constructorId":3856126364},"id":2930772788,"comment":"Get full info about a basic group.","arguments":[{"name":"chat_id","type":"int53","comment":"Basic group ID."}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"messages.editChatTitle","type":"Updates","id":1937260541,"comment":"Changes chat name and sends a service message on it.","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"title","type":"string","comment":"New chat name, different from the old one"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"messages.editChatPhoto","type":"Updates","id":903730804,"comment":"Changes chat photo and sends a service message on it","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"photo","type":"InputChatPhoto","comment":"Photo to be set"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."}],"available":"both"},{"kind":"method","name":"messages.addChatUser","type":"messages.InvitedUsers","typeModifiers":{"constructorId":2136862630},"id":3418804487,"comment":"Adds a user to a chat and sends a service message on it.","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"user_id","type":"InputUser","comment":"User ID to be added"},{"name":"fwd_limit","type":"int","comment":"Number of last messages to be forwarded"}],"throws":[{"code":400,"name":"BOT_GROUPS_BLOCKED","comment":"This bot can't be added to groups."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":403,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},{"kind":"method","name":"messages.deleteChatUser","type":"Updates","id":2719505579,"comment":"Deletes a user from a chat and sends a service message on it.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoke_history","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Remove the entire chat history of the specified user in this chat."},{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"user_id","type":"InputUser","comment":"User ID to be deleted"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},{"kind":"method","name":"messages.createChat","type":"messages.InvitedUsers","typeModifiers":{"constructorId":2136862630},"id":2463030740,"comment":"Creates a new chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"List of user IDs to be invited"},{"name":"title","type":"string","comment":"Chat name"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Time-to-live of all messages that will be sent in the chat: once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well. You can use {@link messages.RawSetDefaultHistoryTTLRequest} to edit this value later."}],"throws":[{"code":500,"name":"CHAT_ID_GENERATE_FAILED","comment":"Failure while generating the chat ID."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."},{"code":400,"name":"USERS_TOO_FEW","comment":"Not enough users (to create a chat, for example)."},{"code":406,"name":"USER_RESTRICTED","comment":"You're spamreported, you can't create channels or chats."}],"available":"user"},{"kind":"method","name":"messages.getDhConfig","type":"messages.DhConfig","id":651135312,"comment":"Returns configuration parameters for Diffie-Hellman key generation. Can also return a random sequence of bytes of required length.","arguments":[{"name":"version","type":"int","comment":"Value of the version parameter from {@link messages.RawDhConfig}, available at the client"},{"name":"random_length","type":"int","comment":"Length of the required random sequence"}],"throws":[{"code":400,"name":"RANDOM_LENGTH_INVALID","comment":"Random length invalid."}],"available":"user"},{"kind":"method","name":"messages.requestEncryption","type":"EncryptedChat","id":4132286275,"comment":"Sends a request to start a secret chat to the user.","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID"},{"name":"random_id","type":"int","comment":"Unique client request ID required to prevent resending. This also doubles as the chat ID."},{"name":"g_a","type":"bytes","comment":"A = g ^ a mod p, see Wikipedia"}],"throws":[{"code":400,"name":"DH_G_A_INVALID","comment":"g_a invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.acceptEncryption","type":"EncryptedChat","id":1035731989,"comment":"Confirms creation of a secret chat","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"g_b","type":"bytes","comment":"B = g ^ b mod p, see Wikipedia"},{"name":"key_fingerprint","type":"long","comment":"64-bit fingerprint of the received key"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"ENCRYPTION_ALREADY_ACCEPTED","comment":"Secret chat already accepted."},{"code":400,"name":"ENCRYPTION_ALREADY_DECLINED","comment":"The secret chat was already declined."}],"available":"user"},{"kind":"method","name":"messages.discardEncryption","type":"Bool","id":4086541984,"comment":"Cancels a request for creation and/or delete info on secret chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"delete_history","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to delete the entire chat history for the other user as well"},{"name":"chat_id","type":"int","comment":"Secret chat ID"}],"throws":[{"code":400,"name":"CHAT_ID_EMPTY","comment":"The provided chat ID is empty."},{"code":400,"name":"ENCRYPTION_ALREADY_ACCEPTED","comment":"Secret chat already accepted."},{"code":400,"name":"ENCRYPTION_ALREADY_DECLINED","comment":"The secret chat was already declined."},{"code":400,"name":"ENCRYPTION_ID_INVALID","comment":"The provided secret chat ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.setEncryptedTyping","type":"Bool","id":2031374829,"comment":"Send typing event by the current user to a secret chat.","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"typing","type":"Bool","comment":"Typing.
Possible values:
true, if the user started typing and more than 5 seconds have passed since the last request
false, if the user stopped typing"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."}],"available":"user"},{"kind":"method","name":"messages.readEncryptedHistory","type":"Bool","id":2135648522,"comment":"Marks message history within a secret chat as read.","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"max_date","type":"int","comment":"Maximum date value for received messages in history"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MAX_DATE_INVALID","comment":"The specified maximum date is invalid."},{"code":400,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."}],"available":"user"},{"kind":"method","name":"messages.sendEncrypted","type":"messages.SentEncryptedMessage","id":1157265941,"comment":"Sends a text message to a secret chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Send encrypted message without a notification"},{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"random_id","type":"long","comment":"Unique client message ID, necessary to avoid message resending"},{"name":"data","type":"bytes","comment":"TL-serialization of DecryptedMessage type, encrypted with a key that was created during chat initialization"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"DATA_TOO_LONG","comment":"Data too long."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."}],"available":"user"},{"kind":"method","name":"messages.sendEncryptedFile","type":"messages.SentEncryptedMessage","id":1431914525,"comment":"Sends a message with a file attachment to a secret chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to send the file without triggering a notification"},{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"random_id","type":"long","comment":"Unique client message ID necessary to prevent message resending"},{"name":"data","type":"bytes","comment":"TL-serialization of DecryptedMessage type, encrypted with a key generated during chat initialization"},{"name":"file","type":"InputEncryptedFile","comment":"File attachment for the secret chat"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"DATA_TOO_LONG","comment":"Data too long."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":400,"name":"FILE_EMTPY","comment":"An empty file was provided."},{"code":400,"name":"MD5_CHECKSUM_INVALID","comment":"The MD5 checksums do not match."},{"code":400,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."}],"available":"user"},{"kind":"method","name":"messages.sendEncryptedService","type":"messages.SentEncryptedMessage","id":852769188,"comment":"Sends a service message to a secret chat.","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"random_id","type":"long","comment":"Unique client message ID required to prevent message resending"},{"name":"data","type":"bytes","comment":"TL-serialization of DecryptedMessage type, encrypted with a key generated during chat initialization"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":400,"name":"ENCRYPTION_ID_INVALID","comment":"The provided secret chat ID is invalid."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":403,"name":"USER_DELETED","comment":"You can't send this secret message because the other participant deleted their account."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."}],"available":"user"},{"kind":"method","name":"messages.receivedQueue","type":"long","typeModifiers":{"isVector":true},"id":1436924774,"comment":"Confirms receipt of messages in a secret chat by client, cancels push notifications.
\nThe method returns a list of random_ids of messages for which push notifications were cancelled.","arguments":[{"name":"max_qts","type":"int","comment":"Maximum qts value available at the client"}],"throws":[{"code":400,"name":"MAX_QTS_INVALID","comment":"The specified max_qts is invalid."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."}],"available":"user"},{"kind":"method","name":"messages.reportEncryptedSpam","type":"Bool","id":1259113487,"comment":"Report a secret chat for spam","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"The secret chat to report"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."}],"available":"user"},{"kind":"method","name":"messages.readMessageContents","type":"messages.AffectedMessages","typeModifiers":{"constructorId":2228326789},"id":916930423,"comment":"Notifies the sender about the recipient having listened a voice message or watched a video.","arguments":[{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Message ID list"}],"available":"user"},{"kind":"method","name":"messages.getStickers","type":"messages.Stickers","id":3584414625,"comment":"Get stickers by emoji","arguments":[{"name":"emoticon","type":"string","comment":"The emoji"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"throws":[{"code":400,"name":"EMOTICON_EMPTY","comment":"The emoji is empty."}],"available":"user"},{"kind":"method","name":"messages.getAllStickers","type":"messages.AllStickers","id":3097534888,"comment":"Get all installed stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getWebPagePreview","type":"MessageMedia","id":2338894028,"comment":"Get preview of webpage","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message","type":"string","comment":"Message from which to extract the preview"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text"}],"throws":[{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."}],"available":"user"},{"kind":"method","name":"messages.exportChatInvite","id":2757090960,"type":"ExportedChatInvite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"legacy_revoke_permanent","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Legacy flag, reproducing legacy behavior of this method: if set, revokes all previous links before creating a new one. Kept for bot API BC, should not be used by modern clients."},{"name":"request_needed","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether admin confirmation is required before admitting each separate user into the chat"},{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"expire_date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Expiration date"},{"name":"usage_limit","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Maximum number of users that can join using this link"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Description of the invite link, visible only to administrators"},{"name":"subscription_pricing","type":"StarsSubscriptionPricing","typeModifiers":{"predicate":"flags.5"}}],"comment":"Export an invite link for a chat","throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"EXPIRE_DATE_INVALID","comment":"The specified expiration date is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USAGE_LIMIT_INVALID","comment":"The specified usage limit is invalid."}],"available":"both"},{"kind":"method","name":"messages.checkChatInvite","type":"ChatInvite","id":1051570619,"comment":"Check the validity of a chat invite link and get basic info about it","arguments":[{"name":"hash","type":"string","comment":"Invite hash from chat invite deep link »."}],"throws":[{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"INVITE_HASH_EMPTY","comment":"The invite hash is empty."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_HASH_INVALID","comment":"The invite hash is invalid."}],"available":"user"},{"kind":"method","name":"messages.importChatInvite","type":"Updates","id":1817183516,"comment":"Import a chat invite and join a private chat/supergroup/channel","arguments":[{"name":"hash","type":"string","comment":"hash from a chat invite deep link"}],"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"INVITE_HASH_EMPTY","comment":"The invite hash is empty."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_HASH_INVALID","comment":"The invite hash is invalid."},{"code":400,"name":"INVITE_REQUEST_SENT","comment":"You have successfully requested to join this chat or channel."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":400,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."}],"available":"user"},{"kind":"method","name":"messages.getStickerSet","type":"messages.StickerSet","id":3365989492,"comment":"Get info about a stickerset","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":400,"name":"EMOTICON_STICKERPACK_MISSING","comment":"inputStickerSetDice.emoji cannot be empty."},{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"both"},{"kind":"method","name":"messages.installStickerSet","type":"messages.StickerSetInstallResult","id":3348096096,"comment":"Install a stickerset","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset to install"},{"name":"archived","type":"Bool","comment":"Whether to archive stickerset"}],"throws":[{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"user"},{"kind":"method","name":"messages.uninstallStickerSet","type":"Bool","id":4184757726,"comment":"Uninstall a stickerset","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"The stickerset to uninstall"}],"throws":[{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"user"},{"kind":"method","name":"messages.startBot","type":"Updates","id":3873403768,"comment":"Start a conversation with a bot using a deep linking parameter","arguments":[{"name":"bot","type":"InputUser","comment":"The bot"},{"name":"peer","type":"InputPeer","comment":"The chat where to start the bot, can be the bot's private chat or a group"},{"name":"random_id","type":"long","comment":"Random ID to avoid resending the same message"},{"name":"start_param","type":"string","comment":"Deep linking parameter"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"START_PARAM_EMPTY","comment":"The start parameter is empty."},{"code":400,"name":"START_PARAM_INVALID","comment":"Start parameter invalid."},{"code":400,"name":"START_PARAM_TOO_LONG","comment":"Start parameter is too long."}],"available":"user"},{"kind":"method","name":"messages.getMessagesViews","type":"messages.MessageViews","typeModifiers":{"constructorId":3066361155},"id":1468322785,"comment":"Get and increase the view counter of a message sent or forwarded from a channel","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the message was found"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"ID of message"},{"name":"increment","type":"Bool","comment":"Whether to mark the message as viewed and increment the view counter"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.editChatAdmin","type":"Bool","id":2824589762,"comment":"Make a user admin in a basic group.","arguments":[{"name":"chat_id","type":"int53","comment":"The ID of the group"},{"name":"user_id","type":"InputUser","comment":"The user to make admin"},{"name":"is_admin","type":"Bool","comment":"Whether to make them admin"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"user"},{"kind":"method","name":"messages.migrateChat","type":"Updates","id":2726777625,"comment":"Turn a basic group into a supergroup","arguments":[{"name":"chat_id","type":"int53","comment":"Basic group to migrate"}],"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":500,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.searchGlobal","type":"messages.Messages","id":1271290010,"comment":"Search for messages and peers globally","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"broadcasts_only","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, only returns results from channels (used in the global channel search tab »)."},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Peer folder ID, for more info click here"},{"name":"q","type":"string","comment":"Query"},{"name":"filter","type":"MessagesFilter","comment":"Global search filter"},{"name":"min_date","type":"int","comment":"If a positive value was specified, the method will return only messages with date bigger than min_date"},{"name":"max_date","type":"int","comment":"If a positive value was transferred, the method will return only messages with date smaller than max_date"},{"name":"offset_rate","type":"int","comment":"Initially 0, then set to the {@link messages.RawMessagesSlice}"},{"name":"offset_peer","type":"InputPeer","comment":"Offsets for pagination, for more info click here"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Offsets for pagination, for more info click here"}],"throws":[{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."},{"code":400,"name":"INPUT_FILTER_INVALID","comment":"The specified filter is invalid."},{"code":400,"name":"SEARCH_QUERY_EMPTY","comment":"The search query is empty."}],"available":"user"},{"kind":"method","name":"messages.reorderStickerSets","type":"Bool","id":2016638777,"comment":"Reorder installed stickersets","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Reorder mask stickersets"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Reorder custom emoji stickersets"},{"name":"order","type":"long","typeModifiers":{"isVector":true},"comment":"New stickerset order by stickerset IDs"}],"available":"user"},{"kind":"method","name":"messages.getDocumentByHash","type":"Document","id":2985428511,"comment":"Get a document by its SHA256 hash, mainly used for gifs","arguments":[{"name":"sha256","type":"bytes","comment":"SHA256 of file"},{"name":"size","type":"int53","comment":"Size of the file in bytes"},{"name":"mime_type","type":"string","comment":"Mime type"}],"throws":[{"code":400,"name":"SHA256_HASH_INVALID","comment":"The provided SHA256 hash is invalid."}],"available":"both"},{"kind":"method","name":"messages.getSavedGifs","type":"messages.SavedGifs","id":1559270965,"comment":"Get saved GIFs.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.saveGif","type":"Bool","id":846868683,"comment":"Add GIF to saved gifs list","arguments":[{"name":"id","type":"InputDocument","comment":"GIF to save"},{"name":"unsave","type":"Bool","comment":"Whether to remove GIF from saved gifs list"}],"throws":[{"code":400,"name":"GIF_ID_INVALID","comment":"The provided GIF ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getInlineBotResults","type":"messages.BotResults","typeModifiers":{"constructorId":3760321270},"id":1364105629,"comment":"Query an inline bot","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bot","type":"InputUser","comment":"The bot to query"},{"name":"peer","type":"InputPeer","comment":"The currently opened chat"},{"name":"geo_point","type":"InputGeoPoint","typeModifiers":{"predicate":"flags.0"},"comment":"The geolocation, if requested"},{"name":"query","type":"string","comment":"The query"},{"name":"offset","type":"string","comment":"The offset within the results, will be passed directly as-is to the bot."}],"throws":[{"code":400,"name":"BOT_INLINE_DISABLED","comment":"This bot can't be used in inline mode."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BOT_RESPONSE_TIMEOUT","comment":"A timeout occurred while fetching data from the bot."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":-503,"name":"Timeout","comment":"Timeout while fetching data."}],"available":"user"},{"kind":"method","name":"messages.setInlineBotResults","type":"Bool","id":3138561049,"comment":"Answer an inline query, for bots only","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"gallery","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag if the results are composed of media files"},{"name":"private","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if results may be cached on the server side only for the user that sent the query. By default, results may be returned to any user who sends the same query"},{"name":"query_id","type":"long","comment":"Unique identifier for the answered query"},{"name":"results","type":"InputBotInlineResult","typeModifiers":{"isVector":true},"comment":"Vector of results for the inline query"},{"name":"cache_time","type":"int","comment":"The maximum amount of time in seconds that the result of the inline query may be cached on the server. Defaults to 300."},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Pass the offset that a client should send in the next query with the same text to receive more results. Pass an empty string if there are no more results or if you don't support pagination. Offset length can't exceed 64 bytes."},{"name":"switch_pm","type":"InlineBotSwitchPM","typeModifiers":{"predicate":"flags.3"},"comment":"If passed, clients will display a button on top of the remaining inline result list with the specified text, that switches the user to a private chat with the bot and sends the bot a start message with a certain parameter."},{"name":"switch_webview","type":"InlineBotWebView","typeModifiers":{"predicate":"flags.4"},"comment":"If passed, clients will display a button on top of the remaining inline result list with the specified text, that switches the user to the specified inline mode mini app."}],"throws":[{"code":400,"name":"ARTICLE_TITLE_EMPTY","comment":"The title of the article is empty."},{"code":400,"name":"AUDIO_CONTENT_URL_EMPTY","comment":"The remote URL specified in the content field is empty."},{"code":400,"name":"AUDIO_TITLE_EMPTY","comment":"An empty audio title was provided."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"FILE_CONTENT_TYPE_INVALID","comment":"File content-type is invalid."},{"code":400,"name":"FILE_TITLE_EMPTY","comment":"An empty file title was specified."},{"code":400,"name":"GIF_CONTENT_TYPE_INVALID","comment":"GIF content-type invalid."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"NEXT_OFFSET_INVALID","comment":"The specified offset is longer than 64 bytes."},{"code":400,"name":"PHOTO_CONTENT_TYPE_INVALID","comment":"Photo mime-type invalid."},{"code":400,"name":"PHOTO_CONTENT_URL_EMPTY","comment":"Photo URL invalid."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."},{"code":400,"name":"PHOTO_THUMB_URL_EMPTY","comment":"Photo thumbnail URL is empty."},{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"RESULTS_TOO_MUCH","comment":"Too many results were provided."},{"code":400,"name":"RESULT_ID_DUPLICATE","comment":"You provided a duplicate result ID."},{"code":400,"name":"RESULT_ID_INVALID","comment":"One of the specified result IDs is invalid."},{"code":400,"name":"RESULT_TYPE_INVALID","comment":"Result type invalid."},{"code":400,"name":"SEND_MESSAGE_MEDIA_INVALID","comment":"Invalid media provided."},{"code":400,"name":"SEND_MESSAGE_TYPE_INVALID","comment":"The message type is invalid."},{"code":400,"name":"START_PARAM_EMPTY","comment":"The start parameter is empty."},{"code":400,"name":"START_PARAM_INVALID","comment":"Start parameter invalid."},{"code":400,"name":"STICKER_DOCUMENT_INVALID","comment":"The specified sticker document is invalid."},{"code":400,"name":"SWITCH_PM_TEXT_EMPTY","comment":"The switch_pm.text field was empty."},{"code":400,"name":"SWITCH_WEBVIEW_URL_INVALID","comment":"The URL specified in switch_webview.url is invalid!"},{"code":400,"name":"URL_INVALID","comment":"Invalid URL provided."},{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"VIDEO_TITLE_EMPTY","comment":"The specified video title is empty."},{"code":400,"name":"WEBDOCUMENT_INVALID","comment":"Invalid webdocument URL provided."},{"code":400,"name":"WEBDOCUMENT_MIME_INVALID","comment":"Invalid webdocument mime type provided."},{"code":400,"name":"WEBDOCUMENT_SIZE_TOO_BIG","comment":"Webdocument is too big!"},{"code":400,"name":"WEBDOCUMENT_URL_INVALID","comment":"The specified webdocument URL is invalid."}],"available":"bot"},{"kind":"method","name":"messages.sendInlineBotResult","type":"Updates","id":1052698730,"comment":"Send a result obtained using {@link messages.RawGetInlineBotResultsRequest}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to send the message silently (no notification will be triggered on the other client)"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether to send the message in background"},{"name":"clear_draft","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether to clear the draft"},{"name":"hide_via","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether to hide the via @botname in the resulting message (only for bot usernames encountered in the {@link RawConfig})"},{"name":"peer","type":"InputPeer","comment":"Destination"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story."},{"name":"random_id","type":"long","comment":"Random ID to avoid resending the same query"},{"name":"query_id","type":"long","comment":"Query ID from {@link messages.RawGetInlineBotResultsRequest}"},{"name":"id","type":"string","comment":"Result ID from {@link messages.RawGetInlineBotResultsRequest}"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Scheduled message date for scheduled messages"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Send this message as the specified peer"},{"name":"quick_reply_shortcut","type":"InputQuickReplyShortcut","typeModifiers":{"predicate":"flags.17"},"comment":"Add the message to the specified quick reply shortcut », instead."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_AUDIOS_FORBIDDEN","comment":"You can't send audio messages in this chat."},{"code":403,"name":"CHAT_SEND_GAME_FORBIDDEN","comment":"You can't send a game to this chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_SEND_INLINE_FORBIDDEN","comment":"You can't send inline messages in this group."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_SEND_STICKERS_FORBIDDEN","comment":"You can't send stickers in this chat."},{"code":403,"name":"CHAT_SEND_VOICES_FORBIDDEN","comment":"You can't send voice recordings in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"INLINE_RESULT_EXPIRED","comment":"The inline query expired."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"QUERY_ID_EMPTY","comment":"The query ID is empty."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"RESULT_ID_EMPTY","comment":"Result ID empty."},{"code":400,"name":"RESULT_ID_INVALID","comment":"One of the specified result IDs is invalid."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":500,"name":"SEND_MEDIA_INVALID","comment":"The specified media is invalid."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"VOICE_MESSAGES_FORBIDDEN","comment":"This user's privacy settings forbid you from sending voice messages."},{"code":400,"name":"WEBPAGE_CURL_FAILED","comment":"Failure while fetching the webpage with cURL."},{"code":400,"name":"WEBPAGE_MEDIA_EMPTY","comment":"Webpage media empty."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},{"kind":"method","name":"messages.getMessageEditData","type":"messages.MessageEditData","typeModifiers":{"constructorId":649453030},"id":4255550774,"comment":"Find out if a media message's caption can be edited","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the media was sent"},{"name":"id","type":"int","comment":"ID of message"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"MESSAGE_AUTHOR_REQUIRED","comment":"Message author required."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.editMessage","type":"Updates","id":3755032581,"comment":"Edit message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Disable webpage preview"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"peer","type":"InputPeer","comment":"Where was the message sent"},{"name":"id","type":"int","comment":"ID of the message to edit"},{"name":"message","type":"string","typeModifiers":{"predicate":"flags.11"},"comment":"New message"},{"name":"media","type":"InputMedia","typeModifiers":{"predicate":"flags.14"},"comment":"New attached media"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for inline keyboards"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.15"},"comment":"Scheduled message date for scheduled messages"},{"name":"quick_reply_shortcut_id","type":"int","typeModifiers":{"predicate":"flags.17"},"comment":"If specified, edits a quick reply shortcut message, instead »."}],"throws":[{"code":400,"name":"BOT_DOMAIN_INVALID","comment":"Bot domain invalid."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"ENTITIES_TOO_LONG","comment":"You provided too many styled message entities."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":403,"name":"INLINE_BOT_REQUIRED","comment":"Only the inline bot can edit message."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_CAPTION_TOO_LONG","comment":"The caption is too long."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_GROUPED_INVALID","comment":"You tried to send media of different types in an album."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MEDIA_NEW_INVALID","comment":"The new media is invalid."},{"code":400,"name":"MEDIA_PREV_INVALID","comment":"Previous media invalid."},{"code":400,"name":"MEDIA_TTL_INVALID","comment":"The specified media TTL is invalid."},{"code":403,"name":"MESSAGE_AUTHOR_REQUIRED","comment":"Message author required."},{"code":400,"name":"MESSAGE_EDIT_TIME_EXPIRED","comment":"You can't edit this message anymore, too much time has passed since its creation."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_MODIFIED","comment":"The provided message data is identical to the previous message data, the message wasn't modified."},{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"REPLY_MARKUP_TOO_LONG","comment":"The specified reply_markup is too long."},{"code":400,"name":"SCHEDULE_DATE_INVALID","comment":"Invalid schedule date provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"WEBPAGE_NOT_FOUND","comment":"A preview for the specified webpage url could not be generated."}],"available":"both"},{"kind":"method","name":"messages.editInlineBotMessage","type":"Bool","id":2203418042,"comment":"Edit an inline bot message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Disable webpage preview"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"id","type":"InputBotInlineMessageID","comment":"Sent inline message ID"},{"name":"message","type":"string","typeModifiers":{"predicate":"flags.11"},"comment":"Message"},{"name":"media","type":"InputMedia","typeModifiers":{"predicate":"flags.14"},"comment":"Media"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for inline keyboards"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text"}],"throws":[{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_MODIFIED","comment":"The provided message data is identical to the previous message data, the message wasn't modified."}],"available":"both"},{"kind":"method","name":"messages.getBotCallbackAnswer","type":"messages.BotCallbackAnswer","typeModifiers":{"constructorId":911761060},"id":2470627847,"comment":"Press an inline callback button and get a callback answer from the bot","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"game","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is a \"play game\" button"},{"name":"peer","type":"InputPeer","comment":"Where was the inline keyboard sent"},{"name":"msg_id","type":"int","comment":"ID of the Message with the inline keyboard"},{"name":"data","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Callback data"},{"name":"password","type":"InputCheckPasswordSRP","typeModifiers":{"predicate":"flags.2"},"comment":"For buttons {@link RawKeyboardButtonCallback}, the SRP payload generated using SRP."}],"throws":[{"code":400,"name":"BOT_RESPONSE_TIMEOUT","comment":"A timeout occurred while fetching data from the bot."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":-503,"name":"Timeout","comment":"Timeout while fetching data."}],"available":"user"},{"kind":"method","name":"messages.setBotCallbackAnswer","type":"Bool","id":3582923530,"comment":"Set the callback answer to a user button press (bots only)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"alert","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to show the message as a popup instead of a toast notification"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"message","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Popup to show"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"URL to open"},{"name":"cache_time","type":"int","comment":"Cache validity"}],"throws":[{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"URL_INVALID","comment":"Invalid URL provided."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.getPeerDialogs","type":"messages.PeerDialogs","typeModifiers":{"constructorId":863093588},"id":3832593661,"comment":"Get dialog info of specified peers","arguments":[{"name":"peers","type":"InputDialogPeer","typeModifiers":{"isVector":true},"comment":"Peers"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.saveDraft","type":"Bool","id":3547514318,"comment":"Save a message draft associated to a chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Disable generation of the webpage preview"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.4"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story."},{"name":"peer","type":"InputPeer","comment":"Destination of the message that should be sent"},{"name":"message","type":"string","comment":"The draft"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text"},{"name":"media","type":"InputMedia","typeModifiers":{"predicate":"flags.5"},"comment":"Attached media"},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags.7"},"comment":"Specifies a message effect » to use for the message."}],"throws":[{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getAllDrafts","type":"Updates","id":1782549861,"comment":"Return all message drafts.
\nReturns all the latest {@link RawUpdateDraftMessage} updates related to all chats with drafts.","arguments":[],"available":"user"},{"kind":"method","name":"messages.getFeaturedStickers","type":"messages.FeaturedStickers","id":1685588756,"comment":"Get featured stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.readFeaturedStickers","type":"Bool","id":1527873830,"comment":"Mark new featured stickers as read","arguments":[{"name":"id","type":"long","typeModifiers":{"isVector":true},"comment":"IDs of stickersets to mark as read"}],"available":"user"},{"kind":"method","name":"messages.getRecentStickers","type":"messages.RecentStickers","id":2645114939,"comment":"Get recent stickers","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"attached","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Get stickers recently attached to photo or video files"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.saveRecentSticker","type":"Bool","id":958863608,"comment":"Add/remove sticker from recent stickers list","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"attached","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to add/remove stickers recently attached to photo or video files"},{"name":"id","type":"InputDocument","comment":"Sticker"},{"name":"unsave","type":"Bool","comment":"Whether to save or unsave the sticker"}],"throws":[{"code":400,"name":"STICKER_ID_INVALID","comment":"The provided sticker ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.clearRecentStickers","type":"Bool","id":2308530221,"comment":"Clear recent stickers","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"attached","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag to clear the list of stickers recently attached to photo or video files"}],"available":"user"},{"kind":"method","name":"messages.getArchivedStickers","type":"messages.ArchivedStickers","typeModifiers":{"constructorId":1338747336},"id":1475442322,"comment":"Get all archived stickers","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Get mask stickers"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Get custom emoji stickers"},{"name":"offset_id","type":"long","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"available":"user"},{"kind":"method","name":"messages.getMaskStickers","type":"messages.AllStickers","id":1678738104,"comment":"Get installed mask stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getAttachedStickers","type":"StickerSetCovered","typeModifiers":{"isVector":true},"id":3428542412,"comment":"Get stickers attached to a photo or video","arguments":[{"name":"media","type":"InputStickeredMedia","comment":"Stickered media"}],"throws":[{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."}],"available":"user"},{"kind":"method","name":"messages.setGameScore","type":"Updates","id":2398678208,"comment":"Use this method to set the score of the specified user in a game sent as a normal message (bots only).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"edit_message","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag if the game message should be automatically edited to include the current scoreboard"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters"},{"name":"peer","type":"InputPeer","comment":"Unique identifier of target chat"},{"name":"id","type":"int","comment":"Identifier of the sent message"},{"name":"user_id","type":"InputUser","comment":"User identifier"},{"name":"score","type":"int","comment":"New score"}],"throws":[{"code":400,"name":"BOT_SCORE_NOT_MODIFIED","comment":"The score wasn't modified."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SCORE_INVALID","comment":"The specified game score is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.setInlineGameScore","type":"Bool","id":363700068,"comment":"Use this method to set the score of the specified user in a game sent as an inline message (bots only).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"edit_message","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag if the game message should be automatically edited to include the current scoreboard"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters"},{"name":"id","type":"InputBotInlineMessageID","comment":"ID of the inline message"},{"name":"user_id","type":"InputUser","comment":"User identifier"},{"name":"score","type":"int","comment":"New score"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.getGameHighScores","type":"messages.HighScores","typeModifiers":{"constructorId":2587622809},"id":3894568093,"comment":"Get highscores of a game","arguments":[{"name":"peer","type":"InputPeer","comment":"Where was the game sent"},{"name":"id","type":"int","comment":"ID of message with game media attachment"},{"name":"user_id","type":"InputUser","comment":"Get high scores made by a certain user"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.getInlineGameHighScores","type":"messages.HighScores","typeModifiers":{"constructorId":2587622809},"id":258170395,"comment":"Get highscores of a game sent using an inline bot","arguments":[{"name":"id","type":"InputBotInlineMessageID","comment":"ID of inline message"},{"name":"user_id","type":"InputUser","comment":"Get high scores of a certain user"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.getCommonChats","type":"messages.Chats","id":3826032900,"comment":"Get chats in common with a user","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID"},{"name":"max_id","type":"int53","comment":"Maximum ID of chat to return (see pagination)"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getWebPage","type":"messages.WebPage","typeModifiers":{"constructorId":4250800829},"id":2375455395,"comment":"Get instant view page","arguments":[{"name":"url","type":"string","comment":"URL of IV page to fetch"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here.
Note: the usual hash generation algorithm cannot be used in this case, please re-use the {@link RawWebPage}.hash field returned by a previous call to the method, or pass 0 if this is the first call or if the previous call did not return a {@link RawWebPage}."}],"throws":[{"code":400,"name":"WC_CONVERT_URL_INVALID","comment":"WC convert URL invalid."}],"available":"user"},{"kind":"method","name":"messages.toggleDialogPin","type":"Bool","id":2805064279,"comment":"Pin/unpin a dialog","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to pin or unpin the dialog"},{"name":"peer","type":"InputDialogPeer","comment":"The dialog to pin"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_HISTORY_EMPTY","comment":"You can't pin an empty chat with a user."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PINNED_DIALOGS_TOO_MUCH","comment":"Too many pinned dialogs."}],"available":"user"},{"kind":"method","name":"messages.reorderPinnedDialogs","type":"Bool","id":991616823,"comment":"Reorder pinned dialogs","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, dialogs pinned server-side but not present in the order field will be unpinned."},{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"},{"name":"order","type":"InputDialogPeer","typeModifiers":{"isVector":true},"comment":"New dialog order"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getPinnedDialogs","type":"messages.PeerDialogs","typeModifiers":{"constructorId":863093588},"id":3602468338,"comment":"Get pinned dialogs","arguments":[{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"}],"throws":[{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."}],"available":"user"},{"kind":"method","name":"messages.setBotShippingResults","type":"Bool","id":3858133754,"comment":"If you sent an invoice requesting a shipping address and the parameter is_flexible was specified, the bot will receive an {@link RawUpdateBotShippingQuery} update. Use this method to reply to shipping queries.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Unique identifier for the query to be answered"},{"name":"error","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Error message in human readable form that explains why it is impossible to complete the order (e.g. \"Sorry, delivery to your desired address is unavailable\"). Telegram will display this message to the user."},{"name":"shipping_options","type":"ShippingOption","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"A vector of available shipping options."}],"throws":[{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.setBotPrecheckoutResults","type":"Bool","id":163765653,"comment":"Once the user has confirmed their payment and shipping details, the bot receives an {@link RawUpdateBotPrecheckoutQuery} update.
\nUse this method to respond to such pre-checkout queries.
\nNote: Telegram must receive an answer within 10 seconds after the pre-checkout query was sent.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"success","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if everything is alright (goods are available, etc.) and the bot is ready to proceed with the order, otherwise do not set it, and set the error field, instead"},{"name":"query_id","type":"long","comment":"Unique identifier for the query to be answered"},{"name":"error","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Required if the success isn't set. Error message in human readable form that explains the reason for failure to proceed with the checkout (e.g. \"Sorry, somebody just bought the last of our amazing black T-shirts while you were busy filling out your payment details. Please choose a different color or garment!\"). Telegram will display this message to the user."}],"throws":[{"code":400,"name":"ERROR_TEXT_EMPTY","comment":"The provided error message is empty."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.uploadMedia","type":"MessageMedia","id":345405816,"comment":"Upload a file and associate it to a chat (without actually sending it to the chat)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"business_connection_id","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the media will be used only in the specified business connection », and not directly by the bot."},{"name":"peer","type":"InputPeer","comment":"The chat, can be {@link RawInputPeerEmpty} for bots and {@link RawInputPeerSelf} for users."},{"name":"media","type":"InputMedia","comment":"File uploaded in chunks as described in files »"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_PART_LENGTH_INVALID","comment":"The length of a file part is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID_DIMENSIONS","comment":"The photo dimensions are invalid."},{"code":400,"name":"PHOTO_SAVE_FILE_INVALID","comment":"Internal issues, try again later."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"WEBPAGE_CURL_FAILED","comment":"Failure while fetching the webpage with cURL."}],"available":"both"},{"kind":"method","name":"messages.sendScreenshotNotification","type":"Updates","id":2705348631,"comment":"Notify the other user in a private chat that a screenshot of the chat was taken","arguments":[{"name":"peer","type":"InputPeer","comment":"Other user"},{"name":"reply_to","type":"InputReplyTo","comment":"Indicates the message that was screenshotted (the specified message ID can also be 0 to avoid indicating any specific message)."},{"name":"random_id","type":"long","comment":"Random ID to avoid message resending"}],"throws":[{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REPLY_MESSAGE_ID_INVALID","comment":"The specified reply-to message ID is invalid."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},{"kind":"method","name":"messages.getFavedStickers","type":"messages.FavedStickers","id":82946729,"comment":"Get faved stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.faveSticker","type":"Bool","id":3120547163,"comment":"Mark or unmark a sticker as favorite","arguments":[{"name":"id","type":"InputDocument","comment":"Sticker in question"},{"name":"unfave","type":"Bool","comment":"Whether to add or remove a sticker from favorites"}],"throws":[{"code":400,"name":"STICKER_ID_INVALID","comment":"The provided sticker ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getUnreadMentions","type":"messages.Messages","id":4043827088,"comment":"Get unread messages where we were mentioned","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer where to look for mentions"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, considers only messages within the specified forum topic"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"add_offset","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"max_id","type":"int","comment":"Maximum message ID to return, see pagination"},{"name":"min_id","type":"int","comment":"Minimum message ID to return, see pagination"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.readMentions","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":921026381,"comment":"Mark mentions as read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Dialog"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Mark as read only mentions within the specified forum topic"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getRecentLocations","type":"messages.Messages","id":1881817312,"comment":"Get live location history of a certain user","arguments":[{"name":"peer","type":"InputPeer","comment":"User"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"available":"user"},{"kind":"method","name":"messages.sendMultiMedia","type":"Updates","id":934757205,"comment":"Send an album or grouped media","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to send the album silently (no notification triggered)"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Send in background?"},{"name":"clear_draft","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether to clear drafts"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled"},{"name":"update_stickersets_order","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Whether to move used stickersets to top, see here for more info on this flag »"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"peer","type":"InputPeer","comment":"The destination chat"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story."},{"name":"multi_media","type":"InputSingleMedia","typeModifiers":{"isVector":true},"comment":"The medias to send: note that they must be separately uploaded using {@link messages.RawUploadMediaRequest} first, using raw inputMediaUploaded* constructors is not supported."},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Scheduled message date for scheduled messages"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Send this message as the specified peer"},{"name":"quick_reply_shortcut","type":"InputQuickReplyShortcut","typeModifiers":{"predicate":"flags.17"},"comment":"Add the message to the specified quick reply shortcut », instead."},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags.18"},"comment":"Specifies a message effect » to use for the message."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_VIDEOS_FORBIDDEN","comment":"You can't send videos in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"FILE_REFERENCE_%d_EXPIRED","comment":"The file reference of the media file at index %d in the passed media array expired, it must be refreshed."},{"code":400,"name":"FILE_REFERENCE_%d_INVALID","comment":"The file reference of the media file at index %d in the passed media array is invalid."},{"code":400,"name":"MEDIA_CAPTION_TOO_LONG","comment":"The caption is too long."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MULTI_MEDIA_TOO_LONG","comment":"Too many media files for album."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"RANDOM_ID_EMPTY","comment":"Random ID empty."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":400,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"messages.uploadEncryptedFile","type":"EncryptedFile","id":1347929239,"comment":"Upload encrypted file and associate it to a secret chat","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"The secret chat to associate the file to"},{"name":"file","type":"InputEncryptedFile","comment":"The file"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."}],"available":"user"},{"kind":"method","name":"messages.searchStickerSets","type":"messages.FoundStickerSets","id":896555914,"comment":"Search for stickersets","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"exclude_featured","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Exclude featured stickersets from results"},{"name":"q","type":"string","comment":"Query string"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getSplitRanges","type":"MessageRange","typeModifiers":{"isVector":true,"constructorId":182649427},"id":486505992,"comment":"Get message ranges for saving the user's chat history","arguments":[],"available":"user"},{"kind":"method","name":"messages.markDialogUnread","type":"Bool","id":3263617423,"comment":"Manually mark dialog as unread","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"unread","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Mark as unread/read"},{"name":"peer","type":"InputDialogPeer","comment":"Dialog"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getDialogUnreadMarks","type":"DialogPeer","typeModifiers":{"isVector":true},"id":585256482,"comment":"Get dialogs manually marked as unread","arguments":[],"available":"user"},{"kind":"method","name":"messages.clearAllDrafts","type":"Bool","id":2119757468,"comment":"Clear all drafts.","arguments":[],"available":"user"},{"kind":"method","name":"messages.updatePinnedMessage","type":"Updates","id":3534419948,"comment":"Pin a message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Pin the message silently, without triggering a notification"},{"name":"unpin","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the message should unpinned or pinned"},{"name":"pm_oneside","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the message should only be pinned on the local side of a one-to-one chat"},{"name":"peer","type":"InputPeer","comment":"The peer where to pin the message"},{"name":"id","type":"int","comment":"The message to pin or unpin"}],"throws":[{"code":400,"name":"BOT_ONESIDE_NOT_AVAIL","comment":"Bots can't pin messages in PM just for themselves."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PIN_RESTRICTED","comment":"You can't pin messages."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"messages.sendVote","type":"Updates","id":283795844,"comment":"Vote in a {@link RawPoll}\n\nStarting from layer 159, the vote will be sent from the peer specified using {@link messages.RawSaveDefaultSendAsRequest}.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where the poll was sent"},{"name":"msg_id","type":"int","comment":"The message ID of the poll"},{"name":"options","type":"bytes","typeModifiers":{"isVector":true},"comment":"The options that were chosen"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_POLL_CLOSED","comment":"Poll closed."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"OPTIONS_TOO_MUCH","comment":"Too many options provided."},{"code":400,"name":"OPTION_INVALID","comment":"Invalid option selected."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REVOTE_NOT_ALLOWED","comment":"You cannot change your vote."}],"available":"user"},{"kind":"method","name":"messages.getPollResults","type":"Updates","id":1941660731,"comment":"Get poll results","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the poll was found"},{"name":"msg_id","type":"int","comment":"Message ID of poll message"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getOnlines","type":"ChatOnlines","typeModifiers":{"constructorId":4030849616},"id":1848369232,"comment":"Get count of online users in a chat","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.editChatAbout","type":"Bool","id":3740665751,"comment":"Edit the description of a group/supergroup/channel.","arguments":[{"name":"peer","type":"InputPeer","comment":"The group/supergroup/channel."},{"name":"about","type":"string","comment":"The new description"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ABOUT_NOT_MODIFIED","comment":"About text has not changed."},{"code":400,"name":"CHAT_ABOUT_TOO_LONG","comment":"Chat about too long."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"messages.editChatDefaultBannedRights","type":"Updates","id":2777049921,"comment":"Edit the default banned rights of a channel/supergroup/group.","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer"},{"name":"banned_rights","type":"ChatBannedRights","comment":"The new global rights"}],"throws":[{"code":400,"name":"BANNED_RIGHTS_INVALID","comment":"You provided some invalid flags in the banned rights."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"UNTIL_DATE_INVALID","comment":"Invalid until date provided."}],"available":"both"},{"kind":"method","name":"messages.getEmojiKeywords","type":"EmojiKeywordsDifference","typeModifiers":{"constructorId":1556570557},"id":899735650,"comment":"Get localized emoji keywords ».","arguments":[{"name":"lang_code","type":"string","comment":"Language code"}],"available":"user"},{"kind":"method","name":"messages.getEmojiKeywordsDifference","type":"EmojiKeywordsDifference","typeModifiers":{"constructorId":1556570557},"id":352892591,"comment":"Get changed emoji keywords ».","arguments":[{"name":"lang_code","type":"string","comment":"Language code"},{"name":"from_version","type":"int","comment":"Previous stored emoji keyword list version"}],"available":"user"},{"kind":"method","name":"messages.getEmojiKeywordsLanguages","type":"EmojiLanguage","typeModifiers":{"isVector":true,"constructorId":3019592545},"id":1318675378,"comment":"Obtain a list of related languages that must be used when fetching emoji keyword lists ».\n\nUsually the method will return the passed language codes (if localized) + en + some language codes for similar languages (if applicable).","arguments":[{"name":"lang_codes","type":"string","typeModifiers":{"isVector":true},"comment":"The user's language codes"}],"available":"user"},{"kind":"method","name":"messages.getEmojiURL","type":"EmojiURL","typeModifiers":{"constructorId":2775937949},"id":3585149990,"comment":"Returns an HTTP URL which can be used to automatically log in into translation platform and suggest new emoji keywords ». The URL will be valid for 30 seconds after generation.","arguments":[{"name":"lang_code","type":"string","comment":"Language code for which the emoji keywords will be suggested"}],"available":"user"},{"kind":"method","name":"messages.getSearchCounters","type":"messages.SearchCounter","typeModifiers":{"isVector":true,"constructorId":3896830975},"id":465367808,"comment":"Get the number of results that would be found by a {@link messages.RawSearchRequest} call with the same parameters","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer where to search"},{"name":"saved_peer_id","type":"InputPeer","typeModifiers":{"predicate":"flags.2"},"comment":"Search within the saved message dialog » with this ID."},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, consider only messages within the specified forum topic"},{"name":"filters","type":"MessagesFilter","typeModifiers":{"isVector":true},"comment":"Search filters"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.requestUrlAuth","type":"UrlAuthResult","id":428848198,"comment":"Get more info about a Seamless Telegram Login authorization request, for more info click here »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","typeModifiers":{"predicate":"flags.1"},"comment":"Peer where the message is located"},{"name":"msg_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"The message"},{"name":"button_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"The ID of the button with the authorization request"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"URL used for link URL authorization, click here for more info »"}],"available":"user"},{"kind":"method","name":"messages.acceptUrlAuth","type":"UrlAuthResult","id":2972479781,"comment":"Use this to accept a Seamless Telegram Login authorization request, for more info click here »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"write_allowed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag to allow the bot to send messages to you (if requested)"},{"name":"peer","type":"InputPeer","typeModifiers":{"predicate":"flags.1"},"comment":"The location of the message"},{"name":"msg_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Message ID of the message with the login button"},{"name":"button_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"ID of the login button"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"URL used for link URL authorization, click here for more info »"}],"available":"user"},{"kind":"method","name":"messages.hidePeerSettingsBar","type":"Bool","id":1336717624,"comment":"Should be called after the user hides the report spam/add as contact bar of a new chat, effectively prevents the user from executing the actions specified in the action bar ».","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getScheduledHistory","type":"messages.Messages","id":4111889931,"comment":"Get scheduled messages","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here.
To generate the hash, populate the ids array with the id, date and edit_date (in this order) of the previously returned messages (in order, i.e. ids = [id1, date1, edit_date1, id2, date2, edit_date2, ...])."}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getScheduledMessages","type":"messages.Messages","id":3183150180,"comment":"Get scheduled messages","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of scheduled messages"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.sendScheduledMessages","type":"Updates","id":3174597898,"comment":"Send scheduled messages right away","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Scheduled message IDs"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."}],"available":"user"},{"kind":"method","name":"messages.deleteScheduledMessages","type":"Updates","id":1504586518,"comment":"Delete scheduled messages","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Scheduled message IDs"}],"throws":[{"code":403,"name":"MESSAGE_DELETE_FORBIDDEN","comment":"You can't delete one of the messages you tried to delete, most likely because it is a service message."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getPollVotes","type":"messages.VotesList","typeModifiers":{"constructorId":1218005070},"id":3094231054,"comment":"Get poll results for non-anonymous polls","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Chat where the poll was sent"},{"name":"id","type":"int","comment":"Message ID"},{"name":"option","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Get only results for the specified poll option"},{"name":"offset","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Offset for results, taken from the next_offset field of {@link messages.RawVotesList}, initially an empty string.
Note: if no more results are available, the method call will return an empty next_offset; thus, avoid providing the next_offset returned in {@link messages.RawVotesList} if it is empty, to avoid an infinite loop."},{"name":"limit","type":"int","comment":"Number of results to return"}],"throws":[{"code":403,"name":"BROADCAST_FORBIDDEN","comment":"Channel poll voters and reactions cannot be fetched to prevent deanonymization."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":403,"name":"POLL_VOTE_REQUIRED","comment":"Cast a vote in the poll before calling this method."}],"available":"user"},{"kind":"method","name":"messages.toggleStickerSets","type":"Bool","id":3037016042,"comment":"Apply changes to multiple stickersets","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"uninstall","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Uninstall the specified stickersets"},{"name":"archive","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Archive the specified stickersets"},{"name":"unarchive","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Unarchive the specified stickersets"},{"name":"stickersets","type":"InputStickerSet","typeModifiers":{"isVector":true},"comment":"Stickersets to act upon"}],"available":"user"},{"kind":"method","name":"messages.getDialogFilters","type":"messages.DialogFilters","typeModifiers":{"constructorId":718878489},"id":4023684233,"comment":"Get folders","arguments":[],"available":"user"},{"kind":"method","name":"messages.getSuggestedDialogFilters","type":"DialogFilterSuggested","typeModifiers":{"isVector":true,"constructorId":2004110666},"id":2728186924,"comment":"Get suggested folders","arguments":[],"available":"user"},{"kind":"method","name":"messages.updateDialogFilter","type":"Bool","id":450142282,"comment":"Update folder","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"int","comment":"Folder ID"},{"name":"filter","type":"DialogFilter","typeModifiers":{"predicate":"flags.0"},"comment":"Folder info"}],"throws":[{"code":400,"name":"CHATLIST_EXCLUDE_INVALID","comment":"The specified exclude_peers are invalid."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_INCLUDE_EMPTY","comment":"The include_peers vector of the filter is empty."},{"code":400,"name":"FILTER_TITLE_EMPTY","comment":"The title field of the filter is empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.updateDialogFiltersOrder","type":"Bool","id":3311649252,"comment":"Reorder folders","arguments":[{"name":"order","type":"int","typeModifiers":{"isVector":true},"comment":"New folder order"}],"available":"user"},{"kind":"method","name":"messages.getOldFeaturedStickers","type":"messages.FeaturedStickers","id":2127598753,"comment":"Method for fetching previously featured stickers","arguments":[{"name":"offset","type":"int","comment":"Offset"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getReplies","type":"messages.Messages","id":584962828,"comment":"Get messages in a reply thread","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"add_offset","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"max_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with ID smaller than max_id"},{"name":"min_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with ID bigger than min_id"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getDiscussionMessage","type":"messages.DiscussionMessage","typeModifiers":{"constructorId":2788431746},"id":1147761405,"comment":"Get discussion message from the associated discussion group of a channel to show it on top of the comment section, without actually joining the group","arguments":[{"name":"peer","type":"InputPeer","comment":"Channel ID"},{"name":"msg_id","type":"int","comment":"Message ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.readDiscussion","type":"Bool","id":4147227124,"comment":"Mark a thread as read","arguments":[{"name":"peer","type":"InputPeer","comment":"Group ID"},{"name":"msg_id","type":"int","comment":"ID of message that started the thread"},{"name":"read_max_id","type":"int","comment":"ID up to which thread messages were read"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.unpinAllMessages","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":3995253160,"comment":"Unpin all pinned messages","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Chat where to unpin"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Forum topic where to unpin"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"messages.deleteChat","type":"Bool","id":1540419152,"comment":"Delete a chat","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deletePhoneCallHistory","type":"messages.AffectedFoundMessages","typeModifiers":{"constructorId":4019011180},"id":4190888969,"comment":"Delete the entire phone call history.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoke","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to remove phone call history for participants as well"}],"available":"user"},{"kind":"method","name":"messages.checkHistoryImport","type":"messages.HistoryImportParsed","typeModifiers":{"constructorId":1578088377},"id":1140726259,"comment":"Obtains information about a chat export file, generated by a foreign chat app, click here for more info about imported chats ».","arguments":[{"name":"import_head","type":"string","comment":"Beginning of the message file; up to 100 lines."}],"throws":[{"code":400,"name":"IMPORT_FORMAT_UNRECOGNIZED","comment":"The specified chat export file was exported from an unsupported chat app."}],"available":"user"},{"kind":"method","name":"messages.initHistoryImport","type":"messages.HistoryImport","typeModifiers":{"constructorId":375566091},"id":873008187,"comment":"Import chat history from a foreign chat app into a specific Telegram chat, click here for more info about imported chats ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The Telegram chat where the history should be imported."},{"name":"file","type":"InputFile","comment":"File with messages to import."},{"name":"media_count","type":"int","comment":"Number of media files associated with the chat that will be uploaded using {@link messages.RawUploadImportedMediaRequest}."}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"IMPORT_FILE_INVALID","comment":"The specified chat export file is invalid."},{"code":400,"name":"IMPORT_FORMAT_DATE_INVALID","comment":"The date specified in the import file is invalid."},{"code":400,"name":"IMPORT_FORMAT_UNRECOGNIZED","comment":"The specified chat export file was exported from an unsupported chat app."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":406,"name":"PREVIOUS_CHAT_IMPORT_ACTIVE_WAIT_%dMIN","comment":"Import for this chat is already in progress, wait %d minutes before starting a new one."}],"available":"user"},{"kind":"method","name":"messages.uploadImportedMedia","type":"MessageMedia","id":713433234,"comment":"Upload a media file associated with an imported chat, click here for more info ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The Telegram chat where the media will be imported"},{"name":"import_id","type":"long","comment":"Identifier of a history import session, returned by {@link messages.RawInitHistoryImportRequest}"},{"name":"file_name","type":"string","comment":"File name"},{"name":"media","type":"InputMedia","comment":"Media metadata"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"IMPORT_ID_INVALID","comment":"The specified import ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.startHistoryImport","type":"Bool","id":3023958852,"comment":"Complete the history import process, importing all messages into the chat.
\nTo be called only after initializing the import with {@link messages.RawInitHistoryImportRequest} and uploading all files using {@link messages.RawUploadImportedMediaRequest}.","arguments":[{"name":"peer","type":"InputPeer","comment":"The Telegram chat where the messages should be imported, click here for more info »"},{"name":"import_id","type":"long","comment":"Identifier of a history import session, returned by {@link messages.RawInitHistoryImportRequest}."}],"throws":[{"code":400,"name":"IMPORT_ID_INVALID","comment":"The specified import ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getExportedChatInvites","type":"messages.ExportedChatInvites","typeModifiers":{"constructorId":3183881676},"id":2729812982,"comment":"Get info about the chat invites of a specific chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoked","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether to fetch revoked chat invites"},{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"admin_id","type":"InputUser","comment":"Whether to only fetch chat invites from this admin"},{"name":"offset_date","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Offsets for pagination, for more info click here"},{"name":"offset_link","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"ADMIN_ID_INVALID","comment":"The specified admin ID is invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getExportedChatInvite","type":"messages.ExportedChatInvite","id":1937010524,"comment":"Get info about a chat invite","arguments":[{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"link","type":"string","comment":"Invite link"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.editExportedChatInvite","type":"messages.ExportedChatInvite","id":3184144245,"comment":"Edit an exported chat invite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoked","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to revoke the chat invite"},{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"link","type":"string","comment":"Invite link"},{"name":"expire_date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"New expiration date"},{"name":"usage_limit","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Maximum number of users that can join using this link"},{"name":"request_needed","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"Whether admin confirmation is required before admitting each separate user into the chat"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Description of the invite link, visible only to administrators"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_INVITE_PERMANENT","comment":"You can't set an expiration date on permanent invite links."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"EDIT_BOT_INVITE_FORBIDDEN","comment":"Normal users can't edit invites that were created by bots."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USAGE_LIMIT_INVALID","comment":"The specified usage limit is invalid."}],"available":"both"},{"kind":"method","name":"messages.deleteRevokedExportedChatInvites","type":"Bool","id":1452833749,"comment":"Delete all revoked chat invites","arguments":[{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"admin_id","type":"InputUser","comment":"ID of the admin that originally generated the revoked chat invites"}],"throws":[{"code":400,"name":"ADMIN_ID_INVALID","comment":"The specified admin ID is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteExportedChatInvite","type":"Bool","id":3563365419,"comment":"Delete a chat invite","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"link","type":"string","comment":"Invite link"}],"throws":[{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_REVOKED_MISSING","comment":"The specified invite link was already revoked or is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getAdminsWithInvites","type":"messages.ChatAdminsWithInvites","typeModifiers":{"constructorId":3063640791},"id":958457583,"comment":"Get info about chat invites generated by admins.","arguments":[{"name":"peer","type":"InputPeer","comment":"Chat"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getChatInviteImporters","type":"messages.ChatInviteImporters","typeModifiers":{"constructorId":2176233482},"id":3741637966,"comment":"Get info about the users that joined the chat using a specific chat invite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"requested","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, only returns info about users with pending join requests »"},{"name":"subscription_expired","type":"true","typeModifiers":{"predicate":"flags.3"}},{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"link","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Invite link"},{"name":"q","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Search for a user in the pending join requests » list: only available when the requested flag is set, cannot be used together with a specific link."},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"offset_user","type":"InputUser","comment":"User ID for pagination: if set, offset_date must also be set."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SEARCH_WITH_LINK_NOT_SUPPORTED","comment":"You cannot provide a search query and an invite link at the same time."}],"available":"user"},{"kind":"method","name":"messages.setHistoryTTL","type":"Updates","id":3087949796,"comment":"Set maximum Time-To-Live of all messages in the specified chat","arguments":[{"name":"peer","type":"InputPeer","comment":"The dialog"},{"name":"period","type":"int","comment":"Automatically delete all messages sent in the chat after this many seconds"}],"throws":[{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."}],"available":"user"},{"kind":"method","name":"messages.checkHistoryImportPeer","type":"messages.CheckedHistoryImportPeer","typeModifiers":{"constructorId":2723014423},"id":1573261059,"comment":"Check whether chat history exported from another chat app can be imported into a specific Telegram chat, click here for more info ».\n\nIf the check succeeds, and no RPC errors are returned, a messages.CheckedHistoryImportPeer constructor will be returned, with a confirmation text to be shown to the user, before actually initializing the import.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where we want to import history »."}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."}],"available":"user"},{"kind":"method","name":"messages.setChatTheme","type":"Updates","id":3862683967,"comment":"Change the chat theme of a certain chat","arguments":[{"name":"peer","type":"InputPeer","comment":"Private chat where to change theme"},{"name":"emoticon","type":"string","comment":"Emoji, identifying a specific chat theme; a list of chat themes can be fetched using {@link account.RawGetChatThemesRequest}"}],"throws":[{"code":400,"name":"EMOJI_INVALID","comment":"The specified theme emoji is valid."},{"code":400,"name":"EMOJI_NOT_MODIFIED","comment":"The theme wasn't changed."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getMessageReadParticipants","type":"ReadParticipantDate","typeModifiers":{"isVector":true,"constructorId":1246753138},"id":834782287,"comment":"Get which users read a specific message: only available for groups and supergroups with less than chat_read_mark_size_threshold members, read receipts will be stored for chat_read_mark_expire_period seconds after the message was sent, see client configuration for more info ».","arguments":[{"name":"peer","type":"InputPeer","comment":"Dialog"},{"name":"msg_id","type":"int","comment":"Message ID"}],"throws":[{"code":400,"name":"CHAT_TOO_BIG","comment":"This method is not available for groups with more than chat_read_mark_size_threshold members, see client configuration »."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"MSG_TOO_OLD","comment":"chat_read_mark_expire_period seconds have passed since the message was sent, read receipts were deleted."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getSearchResultsCalendar","type":"messages.SearchResultsCalendar","typeModifiers":{"constructorId":343859772},"id":1789130429,"comment":"Returns information about the next messages of the specified type in the chat split by days.\n\nReturns the results in reverse chronological order.
\nCan return partial results for the last returned day.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer where to search"},{"name":"saved_peer_id","type":"InputPeer","typeModifiers":{"predicate":"flags.2"},"comment":"Search within the saved message dialog » with this ID."},{"name":"filter","type":"MessagesFilter","comment":"Message filter, {@link RawInputMessagesFilterEmpty}, {@link RawInputMessagesFilterMyMentions} filters are not supported by this method."},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here"}],"throws":[{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getSearchResultsPositions","type":"messages.SearchResultsPositions","typeModifiers":{"constructorId":1404185519},"id":2625580816,"comment":"Returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation.\n\nReturns the results in reverse chronological order (i.e., in order of decreasing message_id).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer where to search"},{"name":"saved_peer_id","type":"InputPeer","typeModifiers":{"predicate":"flags.2"},"comment":"Search within the saved message dialog » with this ID."},{"name":"filter","type":"MessagesFilter","comment":"Message filter, {@link RawInputMessagesFilterEmpty}, {@link RawInputMessagesFilterMyMentions} filters are not supported by this method."},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.hideChatJoinRequest","type":"Updates","id":2145904661,"comment":"Dismiss or approve a chat join request related to a specific chat or channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"approved","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to dismiss or approve the chat join request »"},{"name":"peer","type":"InputPeer","comment":"The chat or channel"},{"name":"user_id","type":"InputUser","comment":"The user whose join request » should be dismissed or approved"}],"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"HIDE_REQUESTER_MISSING","comment":"The join request was missing or was already handled."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":403,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"messages.hideAllChatJoinRequests","type":"Updates","id":3766875370,"comment":"Dismiss or approve all join requests related to a specific chat or channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"approved","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to dismiss or approve all chat join requests »"},{"name":"peer","type":"InputPeer","comment":"The chat or channel"},{"name":"link","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Only dismiss or approve join requests » initiated using this invite link"}],"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"HIDE_REQUESTER_MISSING","comment":"The join request was missing or was already handled."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."}],"available":"user"},{"kind":"method","name":"messages.toggleNoForwards","type":"Updates","id":2971578274,"comment":"Enable or disable content protection on a channel or chat","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat or channel"},{"name":"enabled","type":"Bool","comment":"Enable or disable content protection"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.saveDefaultSendAs","type":"Bool","id":3439189910,"comment":"Change the default peer that should be used when sending messages, reactions, poll votes to a specific group","arguments":[{"name":"peer","type":"InputPeer","comment":"Group"},{"name":"send_as","type":"InputPeer","comment":"The default peer that should be used when sending messages to the group"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."}],"available":"user"},{"kind":"method","name":"messages.sendReaction","type":"Updates","id":3540875476,"comment":"React to message.\n\nStarting from layer 159, the reaction will be sent from the peer specified using {@link messages.RawSaveDefaultSendAsRequest}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"big","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether a bigger and longer reaction should be shown"},{"name":"add_to_recent","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to add this reaction to the recent reactions list »."},{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"msg_id","type":"int","comment":"Message ID to react to"},{"name":"reaction","type":"Reaction","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"A list of reactions"}],"throws":[{"code":403,"name":"ANONYMOUS_REACTIONS_DISABLED","comment":"Sorry, anonymous administrators cannot leave reactions or participate in polls."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"CUSTOM_REACTIONS_TOO_MANY","comment":"Too many custom reactions were specified."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_MODIFIED","comment":"The provided message data is identical to the previous message data, the message wasn't modified."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"REACTIONS_TOO_MANY","comment":"The message already has exactly reactions_uniq_max reaction emojis, you can't react with a new emoji, see the docs for more info »."},{"code":400,"name":"REACTION_EMPTY","comment":"Empty reaction provided."},{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"user"},{"kind":"method","name":"messages.getMessagesReactions","type":"Updates","id":2344259814,"comment":"Get message reactions »","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Message IDs"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},{"kind":"method","name":"messages.getMessageReactionsList","type":"messages.MessageReactionsList","typeModifiers":{"constructorId":834488621},"id":1176190792,"comment":"Get message reaction list, along with the sender of each reaction.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","comment":"Message ID"},{"name":"reaction","type":"Reaction","typeModifiers":{"predicate":"flags.0"},"comment":"Get only reactions of this type"},{"name":"offset","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Offset for pagination (taken from the next_offset field of the returned messages.MessageReactionsList); empty in the first request."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":403,"name":"BROADCAST_FORBIDDEN","comment":"Channel poll voters and reactions cannot be fetched to prevent deanonymization."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"messages.setChatAvailableReactions","id":2253071745,"type":"Updates","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Group where to apply changes"},{"name":"available_reactions","type":"ChatReactions","comment":"Allowed reaction emojis"},{"name":"reactions_limit","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max); this field and the other info set by the method will then be available to users in {@link RawChannelFull} and {@link RawChatFull}."},{"name":"paid_enabled","type":"Bool","typeModifiers":{"predicate":"flags.1"}}],"comment":"Change the set of message reactions » that can be used in a certain group, supergroup or channel","throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getAvailableReactions","type":"messages.AvailableReactions","id":417243308,"comment":"Obtain available message reactions »","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.setDefaultReaction","type":"Bool","id":1330094102,"comment":"Change default emoji reaction to use in the quick reaction menu: the value is synced across devices and can be fetched using {@link help.RawGetConfigRequest}.","arguments":[{"name":"reaction","type":"Reaction","comment":"New emoji reaction"}],"throws":[{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."}],"available":"user"},{"kind":"method","name":"messages.translateText","type":"messages.TranslatedText","typeModifiers":{"constructorId":870003448},"id":1662529584,"comment":"Translate a given text.\n\nStyled text entities will only be preserved for Telegram Premium users.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","typeModifiers":{"predicate":"flags.0"},"comment":"If the text is a chat message, the peer ID"},{"name":"id","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"A list of message IDs to translate"},{"name":"text","type":"TextWithEntities","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"A list of styled messages to translate"},{"name":"to_lang","type":"string","comment":"Two-letter ISO 639-1 language code of the language to which the message is translated"}],"throws":[{"code":400,"name":"INPUT_TEXT_EMPTY","comment":"The specified text is empty."},{"code":400,"name":"INPUT_TEXT_TOO_LONG","comment":"The specified text is too long."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TO_LANG_INVALID","comment":"The specified destination language is invalid."},{"code":400,"name":"TRANSLATE_REQ_QUOTA_EXCEEDED","comment":"Translation is currently unavailable due to a temporary server-side lack of resources."}],"available":"user"},{"kind":"method","name":"messages.getUnreadReactions","type":"messages.Messages","id":841173339,"comment":"Get unread reactions to messages you sent","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, considers only reactions to messages within the specified forum topic"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"add_offset","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"max_id","type":"int","comment":"Only return reactions for messages up until this message ID"},{"name":"min_id","type":"int","comment":"Only return reactions for messages starting from this message ID"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.readReactions","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":1420459918,"comment":"Mark message reactions » as read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Mark as read only reactions to messages within the specified forum topic"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.searchSentMedia","type":"messages.Messages","id":276705696,"comment":"View and search recently sent media.
\nThis method does not support pagination.","arguments":[{"name":"q","type":"string","comment":"Optional search query"},{"name":"filter","type":"MessagesFilter","comment":"Message filter"},{"name":"limit","type":"int","comment":"Maximum number of results to return (max 100)."}],"throws":[{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},{"kind":"method","name":"messages.getAttachMenuBots","type":"AttachMenuBots","id":385663691,"comment":"Returns installed attachment menu bot mini apps »","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getAttachMenuBot","type":"AttachMenuBotsBot","typeModifiers":{"constructorId":2478794367},"id":1998676370,"comment":"Returns attachment menu entry for a bot mini app that can be launched from the attachment menu »","arguments":[{"name":"bot","type":"InputUser","comment":"Bot ID"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"messages.toggleBotInAttachMenu","type":"Bool","id":1777704297,"comment":"Enable or disable web bot attachment menu »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"write_allowed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user authorizes the bot to write messages to them, if requested by {@link RawAttachMenuBot}.request_write_access"},{"name":"bot","type":"InputUser","comment":"Bot ID"},{"name":"enabled","type":"Bool","comment":"Toggle"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"messages.requestWebView","type":"WebViewResult","typeModifiers":{"constructorId":1294139288},"id":647873217,"comment":"Open a bot mini app, sending over user information after user confirmation.\n\nAfter calling this method, until the user closes the webview, {@link messages.RawProlongWebViewRequest} must be called every 60 seconds.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"from_bot_menu","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether the webview was opened by clicking on the bot's menu button »."},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent silently (no notifications for the receivers)."},{"name":"compact","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the attachment menu deep link is equal to compact."},{"name":"peer","type":"InputPeer","comment":"Dialog where the web app is being opened, and where the resulting message will be sent (see the docs for more info »)."},{"name":"bot","type":"InputUser","comment":"Bot that owns the web app"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Web app URL"},{"name":"start_param","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"If the web app was opened from the attachment menu using a attachment menu deep link, start_param should contain the data from the startattach parameter."},{"name":"theme_params","type":"DataJSON","typeModifiers":{"predicate":"flags.2"},"comment":"Theme parameters »"},{"name":"platform","type":"string","comment":"Short name of the application; 0-64 English letters, digits, and underscores"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent in reply to the specified message or story."},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Open the web app as the specified peer, sending the resulting the message as the specified peer."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BOT_WEBVIEW_DISABLED","comment":"A webview cannot be opened in the specified conditions: emitted for example if from_bot_menu or url are set and peer is not the chat with the bot."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},{"kind":"method","name":"messages.prolongWebView","type":"Bool","id":2966952579,"comment":"Indicate to the server (from the user side) that the user is still using a web app.\n\nIf the method returns a QUERY_ID_INVALID error, the webview must be closed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent silently (no notifications for the receivers)."},{"name":"peer","type":"InputPeer","comment":"Dialog where the web app was opened."},{"name":"bot","type":"InputUser","comment":"Bot that owns the web app"},{"name":"query_id","type":"long","comment":"Web app interaction ID obtained from {@link messages.RawRequestWebViewRequest}"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent in reply to the specified message or story."},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Open the web app as the specified peer"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"messages.requestSimpleWebView","type":"WebViewResult","typeModifiers":{"constructorId":1294139288},"id":1094336115,"comment":"Open a bot mini app.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"from_switch_webview","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the webapp was opened by clicking on the switch_webview button shown on top of the inline results list returned by {@link messages.RawGetInlineBotResultsRequest}."},{"name":"from_side_menu","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Set this flag if opening the Mini App from the installed side menu entry »."},{"name":"compact","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Deprecated."},{"name":"bot","type":"InputUser","comment":"Bot that owns the mini app"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Web app URL, if opening from a keyboard button or inline result"},{"name":"start_param","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Deprecated."},{"name":"theme_params","type":"DataJSON","typeModifiers":{"predicate":"flags.0"},"comment":"Theme parameters »"},{"name":"platform","type":"string","comment":"Short name of the application; 0-64 English letters, digits, and underscores"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"URL_INVALID","comment":"Invalid URL provided."}],"available":"user"},{"kind":"method","name":"messages.sendWebViewResultMessage","type":"WebViewMessageSent","typeModifiers":{"constructorId":211046684},"id":172168437,"comment":"Terminate webview interaction started with {@link messages.RawRequestWebViewRequest}, sending the specified message to the chat on behalf of the user.","arguments":[{"name":"bot_query_id","type":"string","comment":"Webview interaction ID obtained from {@link messages.RawRequestWebViewRequest}"},{"name":"result","type":"InputBotInlineResult","comment":"Message to send"}],"throws":[{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.sendWebViewData","type":"Updates","id":3691135688,"comment":"Used by the user to relay data from an opened reply keyboard bot mini app to the bot that owns it.","arguments":[{"name":"bot","type":"InputUser","comment":"Bot that owns the web app"},{"name":"random_id","type":"long","comment":"Unique client message ID to prevent duplicate sending of the same event"},{"name":"button_text","type":"string","comment":"Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app."},{"name":"data","type":"string","comment":"Data to relay to the bot, obtained from a web_app_data_send JS event."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"messages.transcribeAudio","type":"messages.TranscribedAudio","typeModifiers":{"constructorId":3485063511},"id":647928393,"comment":"Transcribe voice message","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer ID where the voice message was sent"},{"name":"msg_id","type":"int","comment":"Voice message ID"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"TRANSCRIPTION_FAILED","comment":"Audio transcription failed."}],"available":"user"},{"kind":"method","name":"messages.rateTranscribedAudio","type":"Bool","id":2132608815,"comment":"Rate transcribed voice message","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the voice message was sent"},{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"transcription_id","type":"long","comment":"Transcription ID"},{"name":"good","type":"Bool","comment":"Whether the transcription was correct"}],"available":"user"},{"kind":"method","name":"messages.getCustomEmojiDocuments","type":"Document","typeModifiers":{"isVector":true},"id":3651866452,"comment":"Fetch custom emoji stickers ».\n\nReturns a list of {@link RawDocument} with the animated custom emoji in TGS format, and a {@link RawDocumentAttributeCustomEmoji} attribute with the original emoji and info about the emoji stickerset this custom emoji belongs to.","arguments":[{"name":"document_id","type":"long","typeModifiers":{"isVector":true},"comment":"Custom emoji IDs from a {@link RawMessageEntityCustomEmoji}."}],"available":"both"},{"kind":"method","name":"messages.getEmojiStickers","type":"messages.AllStickers","id":4227637647,"comment":"Gets the list of currently installed custom emoji stickersets.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getFeaturedEmojiStickers","type":"messages.FeaturedStickers","id":248473398,"comment":"Gets featured custom emoji stickersets.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.reportReaction","type":"Bool","id":1063567478,"comment":"Report a message reaction","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the message was sent"},{"name":"id","type":"int","comment":"Message ID"},{"name":"reaction_peer","type":"InputPeer","comment":"Peer that sent the reaction"}],"throws":[{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getTopReactions","type":"messages.Reactions","id":3145803194,"comment":"Got popular message reactions","arguments":[{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getRecentReactions","type":"messages.Reactions","id":960896434,"comment":"Get recently used message reactions","arguments":[{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.clearRecentReactions","type":"Bool","id":2650730420,"comment":"Clear recently used message reactions","arguments":[],"available":"user"},{"kind":"method","name":"messages.getExtendedMedia","type":"Updates","id":2230847508,"comment":"Fetch updated information about paid media, see here » for the full flow.\n\nThis method will return an array of {@link RawUpdateMessageExtendedMedia} updates, only for messages containing already bought paid media.
\nNo information will be returned for messages containing not yet bought paid media.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer with visible paid media messages."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of currently visible messages containing paid media."}],"available":"user"},{"kind":"method","name":"messages.setDefaultHistoryTTL","type":"Bool","id":2662667333,"comment":"Changes the default value of the Time-To-Live setting, applied to all new chats.","arguments":[{"name":"period","type":"int","comment":"The new default Time-To-Live of all messages sent in new chats."}],"throws":[{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."}],"available":"user"},{"kind":"method","name":"messages.getDefaultHistoryTTL","type":"DefaultHistoryTTL","typeModifiers":{"constructorId":1135897376},"id":1703637384,"comment":"Gets the default value of the Time-To-Live setting, applied to all new chats.","arguments":[],"available":"user"},{"kind":"method","name":"messages.sendBotRequestedPeer","type":"Updates","id":2444415072,"comment":"Send one or more chosen peers, as requested by a {@link RawKeyboardButtonRequestPeer} button.","arguments":[{"name":"peer","type":"InputPeer","comment":"The bot that sent the {@link RawKeyboardButtonRequestPeer} button."},{"name":"msg_id","type":"int","comment":"ID of the message that contained the reply keyboard with the {@link RawKeyboardButtonRequestPeer} button."},{"name":"button_id","type":"int","comment":"The button_id field from the {@link RawKeyboardButtonRequestPeer} constructor."},{"name":"requested_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"The chosen peers."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getEmojiGroups","type":"messages.EmojiGroups","id":1955122779,"comment":"Represents a list of emoji categories.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getEmojiStatusGroups","type":"messages.EmojiGroups","id":785209037,"comment":"Represents a list of emoji categories, to be used when selecting custom emojis to set as custom emoji status.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getEmojiProfilePhotoGroups","type":"messages.EmojiGroups","id":564480243,"comment":"Represents a list of emoji categories, to be used when selecting custom emojis to set as profile picture.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.searchCustomEmoji","type":"EmojiList","id":739360983,"comment":"Look for custom emojis associated to a UTF8 emoji","arguments":[{"name":"emoticon","type":"string","comment":"The emoji"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"throws":[{"code":400,"name":"EMOTICON_EMPTY","comment":"The emoji is empty."}],"available":"user"},{"kind":"method","name":"messages.togglePeerTranslations","type":"Bool","id":3833378169,"comment":"Show or hide the real-time chat translation popup for a certain chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"disabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to disable or enable the real-time chat translation popup"},{"name":"peer","type":"InputPeer","comment":"The peer"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getBotApp","type":"messages.BotApp","typeModifiers":{"constructorId":3947933173},"id":889046467,"comment":"Obtain information about a direct link Mini App","arguments":[{"name":"app","type":"InputBotApp","comment":"Bot app information obtained from a Direct Mini App deep link »."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":400,"name":"BOT_APP_BOT_INVALID","comment":"The bot_id passed in the inputBotAppShortName constructor is invalid."},{"code":400,"name":"BOT_APP_INVALID","comment":"The specified bot app is invalid."},{"code":400,"name":"BOT_APP_SHORTNAME_INVALID","comment":"The specified bot app short name is invalid."}],"available":"user"},{"kind":"method","name":"messages.requestAppWebView","type":"WebViewResult","typeModifiers":{"constructorId":1294139288},"id":1398901710,"comment":"Open a bot mini app from a direct Mini App deep link, sending over user information after user confirmation.\n\nAfter calling this method, until the user closes the webview, {@link messages.RawProlongWebViewRequest} must be called every 60 seconds.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"write_allowed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag if the bot is asking permission to send messages to the user as specified in the direct Mini App deep link docs, and the user agreed."},{"name":"compact","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the direct Mini App deep link is equal to compact."},{"name":"peer","type":"InputPeer","comment":"If the client has clicked on the link in a Telegram chat, pass the chat's peer information; otherwise pass the bot's peer information, instead."},{"name":"app","type":"InputBotApp","comment":"The app obtained by invoking {@link messages.RawGetBotAppRequest} as specified in the direct Mini App deep link docs."},{"name":"start_param","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"If the startapp query string parameter is present in the direct Mini App deep link, pass it to start_param."},{"name":"theme_params","type":"DataJSON","typeModifiers":{"predicate":"flags.2"},"comment":"Theme parameters »"},{"name":"platform","type":"string","comment":"Short name of the application; 0-64 English letters, digits, and underscores"}],"throws":[{"code":400,"name":"BOT_APP_INVALID","comment":"The specified bot app is invalid."},{"code":400,"name":"BOT_APP_SHORTNAME_INVALID","comment":"The specified bot app short name is invalid."}],"available":"user"},{"kind":"method","name":"messages.setChatWallPaper","type":"Updates","id":2415577825,"comment":"Set a custom wallpaper » in a specific private chat with another user.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"for_both","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Only for Premium users, sets the specified wallpaper for both users of the chat, without requiring confirmation from the other user."},{"name":"revert","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If we don't like the new wallpaper the other user of the chat has chosen for us using the for_both flag, we can re-set our previous wallpaper just on our side using this flag."},{"name":"peer","type":"InputPeer","comment":"The private chat where the wallpaper will be set"},{"name":"wallpaper","type":"InputWallPaper","typeModifiers":{"predicate":"flags.0"},"comment":"The wallpaper », obtained as described in the wallpaper documentation »; must not be provided when installing a wallpaper obtained from a {@link RawMessageActionSetChatWallPaper} service message (id must be provided, instead)."},{"name":"settings","type":"WallPaperSettings","typeModifiers":{"predicate":"flags.2"},"comment":"Wallpaper settings, obtained as described in the wallpaper documentation » or from {@link RawMessageActionSetChatWallPaper}.wallpaper.settings."},{"name":"id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"If the wallpaper was obtained from a {@link RawMessageActionSetChatWallPaper} service message, must contain the ID of that message."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."},{"code":400,"name":"WALLPAPER_NOT_FOUND","comment":"The specified wallpaper could not be found."}],"available":"user"},{"kind":"method","name":"messages.searchEmojiStickerSets","type":"messages.FoundStickerSets","id":2461288780,"comment":"Search for custom emoji stickersets »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"exclude_featured","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Exclude featured stickersets from results"},{"name":"q","type":"string","comment":"Query string"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getSavedDialogs","type":"messages.SavedDialogs","id":1401016858,"comment":"Returns the current saved dialog list, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"exclude_pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Exclude pinned dialogs"},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here (top_message ID used for pagination)"},{"name":"offset_peer","type":"InputPeer","comment":"Offset peer for pagination"},{"name":"limit","type":"int","comment":"Number of list elements to be returned"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"available":"user"},{"kind":"method","name":"messages.getSavedHistory","type":"messages.Messages","id":1033519437,"comment":"Returns saved messages » forwarded from a specific peer","arguments":[{"name":"peer","type":"InputPeer","comment":"Target peer"},{"name":"offset_id","type":"int","comment":"Only return messages starting from the specified message ID"},{"name":"offset_date","type":"int","comment":"Only return messages sent before the specified date"},{"name":"add_offset","type":"int","comment":"Number of list elements to be skipped, negative values are also accepted."},{"name":"limit","type":"int","comment":"Number of results to return"},{"name":"max_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with IDs less than max_id"},{"name":"min_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with IDs more than min_id"},{"name":"hash","type":"long","comment":"Result hash"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteSavedHistory","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":1855459371,"comment":"Deletes messages forwarded from a specific peer to saved messages ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer, whose messages will be deleted from saved messages »"},{"name":"max_id","type":"int","comment":"Maximum ID of message to delete"},{"name":"min_date","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Delete all messages newer than this UNIX timestamp"},{"name":"max_date","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Delete all messages older than this UNIX timestamp"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getPinnedSavedDialogs","type":"messages.SavedDialogs","id":3594360032,"comment":"Get pinned saved dialogs, see here » for more info.","arguments":[],"available":"user"},{"kind":"method","name":"messages.toggleSavedDialogPin","type":"Bool","id":2894183390,"comment":"Pin or unpin a saved message dialog ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to pin or unpin the dialog"},{"name":"peer","type":"InputDialogPeer","comment":"The dialog to pin"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.reorderPinnedSavedDialogs","type":"Bool","id":2339464583,"comment":"Reorder pinned saved message dialogs ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, dialogs pinned server-side but not present in the order field will be unpinned."},{"name":"order","type":"InputDialogPeer","typeModifiers":{"isVector":true},"comment":"New dialog order"}],"available":"user"},{"kind":"method","name":"messages.getSavedReactionTags","type":"messages.SavedReactionTags","id":909631579,"comment":"Fetch the full list of saved message tags created by the user.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","typeModifiers":{"predicate":"flags.0"},"comment":"If set, returns tags only used in the specified saved message dialog."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.updateSavedReactionTag","type":"Bool","id":1613331948,"comment":"Update the description of a saved message tag ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reaction","type":"Reaction","comment":"Reaction associated to the tag"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Tag description, max 12 UTF-8 characters; to remove the description call the method without setting this flag."}],"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."}],"available":"user"},{"kind":"method","name":"messages.getDefaultTagReactions","type":"messages.Reactions","id":3187225640,"comment":"Fetch a default recommended list of saved message tag reactions.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getOutboxReadDate","type":"OutboxReadDate","typeModifiers":{"constructorId":1001931436},"id":2353790557,"comment":"Get the exact read date of one of our messages, sent to a private chat with another user.\n\nCan be only done for private outgoing messages not older than appConfig.pm_read_date_expire_period ».\n\nIf the peer's {@link RawUserFull}.read_dates_private flag is set, we will not be able to fetch the exact read date of messages we send to them, and a USER_PRIVACY_RESTRICTED RPC error will be emitted.
\nThe exact read date of messages might still be unavailable for other reasons, see {@link RawGlobalPrivacySettings} for more info.
\nTo set {@link RawUserFull}.read_dates_private for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.hide_read_marks flag.","arguments":[{"name":"peer","type":"InputPeer","comment":"The user to whom we sent the message."},{"name":"msg_id","type":"int","comment":"The message ID."}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_READ_YET","comment":"The specified message wasn't read yet."},{"code":400,"name":"MESSAGE_TOO_OLD","comment":"The message is too old, the requested information is not available."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."},{"code":403,"name":"YOUR_PRIVACY_RESTRICTED","comment":"You cannot fetch the read date of this message because you have disallowed other users to do so for your messages; to fix, allow other users to see your exact last online date OR purchase a Telegram Premium subscription."}],"available":"user"},{"kind":"method","name":"messages.getQuickReplies","type":"messages.QuickReplies","id":3565417128,"comment":"Fetch basic info about all existing quick reply shortcuts.","arguments":[{"name":"hash","type":"long","comment":"Hash for pagination, generated as specified here » (not the usual algorithm used for hash generation.)"}],"available":"user"},{"kind":"method","name":"messages.reorderQuickReplies","type":"Bool","id":1613961479,"comment":"Reorder quick reply shortcuts.\n\nThis will emit an {@link RawUpdateQuickReplies} update to other logged-in sessions.","arguments":[{"name":"order","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of all created quick reply shortcuts, in the desired order."}],"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"messages.checkQuickReplyShortcut","type":"Bool","id":4057005011,"comment":"Before offering the user the choice to add a message to a quick reply shortcut, to make sure that none of the limits specified here » were reached.","arguments":[{"name":"shortcut","type":"string","comment":"Shorcut name (not ID!)."}],"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"messages.editQuickReplyShortcut","type":"Bool","id":1543519471,"comment":"Rename a quick reply shortcut.
\nThis will emit an {@link RawUpdateQuickReplies} update to other logged-in sessions.","arguments":[{"name":"shortcut_id","type":"int","comment":"Shortcut ID."},{"name":"shortcut","type":"string","comment":"New shortcut name."}],"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteQuickReplyShortcut","type":"Bool","id":1019234112,"comment":"Completely delete a quick reply shortcut.
\nThis will also emit an {@link RawUpdateDeleteQuickReply} update to other logged-in sessions (and no {@link RawUpdateDeleteQuickReplyMessages} updates, even if all the messages in the shortcuts are also deleted by this method).","arguments":[{"name":"shortcut_id","type":"int","comment":"Shortcut ID"}],"throws":[{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},{"kind":"method","name":"messages.getQuickReplyMessages","type":"messages.Messages","id":2493814211,"comment":"Fetch (a subset or all) messages in a quick reply shortcut ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"shortcut_id","type":"int","comment":"Quick reply shortcut ID."},{"name":"id","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"IDs of the messages to fetch, if empty fetches all of them."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},{"kind":"method","name":"messages.sendQuickReplyMessages","type":"Updates","id":1819610593,"comment":"Send a quick reply shortcut ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer where to send the shortcut (users only, for now)."},{"name":"shortcut_id","type":"int","comment":"The ID of the quick reply shortcut to send."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Specify a subset of messages from the shortcut to send; if empty, defaults to all of them."},{"name":"random_id","type":"long","typeModifiers":{"isVector":true},"comment":"Unique client IDs required to prevent message resending, one for each message we're sending, may be empty (but not recommended)."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"messages.deleteQuickReplyMessages","type":"Updates","id":3775260944,"comment":"Delete one or more messages from a quick reply shortcut. This will also emit an {@link RawUpdateDeleteQuickReplyMessages} update.","arguments":[{"name":"shortcut_id","type":"int","comment":"Shortcut ID."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of shortcut messages to delete."}],"throws":[{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},{"kind":"method","name":"messages.toggleDialogFilterTags","type":"Bool","id":4247640649,"comment":"Enable or disable folder tags ».","arguments":[{"name":"enabled","type":"Bool","comment":"Enable or disable folder tags."}],"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"messages.getMyStickers","type":"messages.MyStickers","typeModifiers":{"constructorId":4211040925},"id":3501580796,"comment":"Fetch all stickersets » owned by the current user.","arguments":[{"name":"offset_id","type":"long","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"available":"user"},{"kind":"method","name":"messages.getEmojiStickerGroups","type":"messages.EmojiGroups","id":500711669,"comment":"Represents a list of emoji categories, to be used when choosing a sticker.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getAvailableEffects","type":"messages.AvailableEffects","id":3735161401,"comment":"Fetch the full list of usable animated message effects ».","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.editFactCheck","type":"Updates","id":92925557,"comment":"Edit/create a fact-check on a message.\n\nCan only be used by independent fact-checkers as specified by the appConfig.can_edit_factcheck configuration flag.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the message was sent"},{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"text","type":"TextWithEntities","comment":"Fact-check (maximum UTF-8 length specified in appConfig.factcheck_length_limit)."}],"throws":[{"code":403,"name":"CHAT_ACTION_FORBIDDEN","comment":"You cannot execute this action."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteFactCheck","type":"Updates","id":3520762892,"comment":"Delete a fact-check from a message.\n\nCan only be used by independent fact-checkers as specified by the appConfig.can_edit_factcheck configuration flag.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the message was sent."},{"name":"msg_id","type":"int","comment":"Message ID"}],"throws":[{"code":403,"name":"CHAT_ACTION_FORBIDDEN","comment":"You cannot execute this action."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getFactCheck","type":"FactCheck","typeModifiers":{"isVector":true,"constructorId":3097230543},"id":3117270510,"comment":"Fetch one or more factchecks, see here » for the full flow.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the messages were sent."},{"name":"msg_id","type":"int","typeModifiers":{"isVector":true},"comment":"Messages that have associated {@link RawFactCheck} constructors with the need_check flag set."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.requestMainWebView","type":"WebViewResult","typeModifiers":{"constructorId":1294139288},"id":3386908283,"comment":"Open a Main Mini App.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"compact","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the Main Mini App link is equal to compact."},{"name":"peer","type":"InputPeer","comment":"Currently open chat, may be {@link RawInputPeerEmpty} if no chat is currently open."},{"name":"bot","type":"InputUser","comment":"Bot that owns the main mini app."},{"name":"start_param","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Start parameter, if opening from a Main Mini App link »."},{"name":"theme_params","type":"DataJSON","typeModifiers":{"predicate":"flags.0"},"comment":"Theme parameters »"},{"name":"platform","type":"string","comment":"Short name of the application; 0-64 English letters, digits, and underscores"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"messages.sendPaidReaction","type":"Updates","id":2648090235,"arguments":[{"name":"flags","type":"#"},{"name":"peer","type":"InputPeer"},{"name":"msg_id","type":"int"},{"name":"count","type":"int"},{"name":"random_id","type":"long"},{"name":"private","type":"Bool","typeModifiers":{"predicate":"flags.0"}}]},{"kind":"method","name":"messages.togglePaidReactionPrivacy","type":"Bool","id":2224739223,"arguments":[{"name":"peer","type":"InputPeer"},{"name":"msg_id","type":"int"},{"name":"private","type":"Bool"}]},{"kind":"method","name":"messages.getPaidReactionPrivacy","type":"Updates","id":1193563562,"arguments":[]},{"kind":"method","name":"updates.getState","type":"updates.State","typeModifiers":{"constructorId":2775329342},"id":3990128682,"comment":"Returns a current state of updates.","arguments":[],"available":"both"},{"kind":"method","name":"updates.getDifference","type":"updates.Difference","id":432207715,"comment":"Get new updates.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pts","type":"int","comment":"PTS, see updates."},{"name":"pts_limit","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"PTS limit"},{"name":"pts_total_limit","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"For fast updating: if provided and pts + pts_total_limit < remote pts, {@link updates.RawDifferenceTooLong} will be returned.
Simply tells the server to not return the difference if it is bigger than pts_total_limit
If the remote pts is too big (> ~4000000), this field will default to 1000000"},{"name":"date","type":"int","comment":"date, see updates."},{"name":"qts","type":"int","comment":"QTS, see updates."},{"name":"qts_limit","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"QTS limit"}],"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"DATE_EMPTY","comment":"Date empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PERSISTENT_TIMESTAMP_EMPTY","comment":"Persistent timestamp empty."},{"code":400,"name":"PERSISTENT_TIMESTAMP_INVALID","comment":"Persistent timestamp invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},{"kind":"method","name":"updates.getChannelDifference","type":"updates.ChannelDifference","id":51854712,"comment":"Returns the difference between the current state of updates of a certain channel and transmitted.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set to true to skip some possibly unneeded updates and reduce server-side load"},{"name":"channel","type":"InputChannel","comment":"The channel"},{"name":"filter","type":"ChannelMessagesFilter","comment":"Messsage filter"},{"name":"pts","type":"int","comment":"Persistent timestamp (see updates)"},{"name":"limit","type":"int","comment":"How many updates to fetch, max 100000
Ordinary (non-bot) users are supposed to pass 10-100"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHANNEL_PUBLIC_GROUP_NA","comment":"channel/supergroup not available."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FROM_MESSAGE_BOT_DISABLED","comment":"Bots can't use fromMessage min constructors."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PERSISTENT_TIMESTAMP_EMPTY","comment":"Persistent timestamp empty."},{"code":400,"name":"PERSISTENT_TIMESTAMP_INVALID","comment":"Persistent timestamp invalid."},{"code":500,"name":"PERSISTENT_TIMESTAMP_OUTDATED","comment":"Channel internal replication issues, try again later (treat this like an RPC_CALL_FAIL)."},{"code":400,"name":"PINNED_DIALOGS_TOO_MUCH","comment":"Too many pinned dialogs."},{"code":400,"name":"RANGES_INVALID","comment":"Invalid range provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"photos.updateProfilePhoto","type":"photos.Photo","typeModifiers":{"constructorId":539045032},"id":166207545,"comment":"Installs a previously uploaded photo as a profile photo.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"fallback","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the chosen profile photo will be shown to users that can't display your main profile photo due to your privacy settings."},{"name":"bot","type":"InputUser","typeModifiers":{"predicate":"flags.1"},"comment":"Can contain info of a bot we own, to change the profile photo of that bot, instead of the current user."},{"name":"id","type":"InputPhoto","comment":"Input photo"}],"throws":[{"code":400,"name":"ALBUM_PHOTOS_TOO_MANY","comment":"You have uploaded too many profile photos, delete some before retrying."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_ID_INVALID","comment":"Photo ID invalid."}],"available":"both"},{"kind":"method","name":"photos.uploadProfilePhoto","type":"photos.Photo","typeModifiers":{"constructorId":539045032},"id":59286453,"comment":"Updates current user profile photo.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"fallback","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, the chosen profile photo will be shown to users that can't display your main profile photo due to your privacy settings."},{"name":"bot","type":"InputUser","typeModifiers":{"predicate":"flags.5"},"comment":"Can contain info of a bot we own, to change the profile photo of that bot, instead of the current user."},{"name":"file","type":"InputFile","typeModifiers":{"predicate":"flags.0"},"comment":"Profile photo"},{"name":"video","type":"InputFile","typeModifiers":{"predicate":"flags.1"},"comment":"Animated profile picture video"},{"name":"video_start_ts","type":"double","typeModifiers":{"predicate":"flags.2"},"comment":"Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set."},{"name":"video_emoji_markup","type":"VideoSize","typeModifiers":{"predicate":"flags.4"},"comment":"Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor."}],"throws":[{"code":400,"name":"ALBUM_PHOTOS_TOO_MANY","comment":"You have uploaded too many profile photos, delete some before retrying."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"EMOJI_MARKUP_INVALID","comment":"The specified video_emoji_markup was invalid."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"PHOTO_CROP_FILE_MISSING","comment":"Photo crop file missing."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_FILE_MISSING","comment":"Profile photo file missing."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."},{"code":400,"name":"STICKER_MIME_INVALID","comment":"The specified sticker MIME type is invalid."},{"code":400,"name":"VIDEO_FILE_INVALID","comment":"The specified video file is invalid."}],"available":"both"},{"kind":"method","name":"photos.deletePhotos","type":"long","typeModifiers":{"isVector":true},"id":2278522671,"comment":"Deletes profile photos. The method returns a list of successfully deleted photo IDs.","arguments":[{"name":"id","type":"InputPhoto","typeModifiers":{"isVector":true},"comment":"Input photos to delete"}],"available":"user"},{"kind":"method","name":"photos.getUserPhotos","type":"photos.Photos","id":2446144168,"comment":"Returns the list of user photos.","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID"},{"name":"offset","type":"int","comment":"Number of list elements to be skipped"},{"name":"max_id","type":"long","comment":"If a positive value was transferred, the method will return only photos with IDs less than the set one. This parameter is often useful when refetching file references », as in conjuction with limit=1 and offset=-1 the {@link RawPhoto} object with the id specified in max_id can be fetched."},{"name":"limit","type":"int","comment":"Number of list elements to be returned"}],"throws":[{"code":400,"name":"MAX_ID_INVALID","comment":"The provided max ID is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"photos.uploadContactProfilePhoto","type":"photos.Photo","typeModifiers":{"constructorId":539045032},"id":3779873393,"comment":"Upload a custom profile picture for a contact, or suggest a new profile picture to a contact.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"suggest","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, will send a {@link RawMessageActionSuggestProfilePhoto} service message to user_id, suggesting them to use the specified profile picture; otherwise, will set a personal profile picture for the user (only visible to the current user)."},{"name":"save","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, removes a previously set personal profile picture (does not affect suggested profile pictures, to remove them simply deleted the {@link RawMessageActionSuggestProfilePhoto} service message with {@link messages.RawDeleteMessagesRequest})."},{"name":"user_id","type":"InputUser","comment":"The contact"},{"name":"file","type":"InputFile","typeModifiers":{"predicate":"flags.0"},"comment":"Profile photo"},{"name":"video","type":"InputFile","typeModifiers":{"predicate":"flags.1"},"comment":"Animated profile picture video"},{"name":"video_start_ts","type":"double","typeModifiers":{"predicate":"flags.2"},"comment":"Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set."},{"name":"video_emoji_markup","type":"VideoSize","typeModifiers":{"predicate":"flags.5"},"comment":"Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor."}],"throws":[{"code":400,"name":"CONTACT_MISSING","comment":"The specified user is not a contact."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"upload.saveFilePart","type":"Bool","id":3003426337,"comment":"Saves a part of file for further sending to one of the methods.","arguments":[{"name":"file_id","type":"long","comment":"Random file identifier created by the client"},{"name":"file_part","type":"int","comment":"Numerical order of a part"},{"name":"bytes","type":"bytes","comment":"Binary data, content of a part"}],"throws":[{"code":400,"name":"FILE_PART_EMPTY","comment":"The provided file part is empty."},{"code":400,"name":"FILE_PART_INVALID","comment":"The file part number is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},{"kind":"method","name":"upload.getFile","type":"upload.File","id":3193124286,"comment":"Returns content of a whole file or its part.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"precise","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Disable some checks on limit and offset values, useful for example to stream videos by keyframes"},{"name":"cdn_supported","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the current client supports CDN downloads"},{"name":"location","type":"InputFileLocation","comment":"File location"},{"name":"offset","type":"int53","comment":"Number of bytes to be skipped"},{"name":"limit","type":"int","comment":"Number of bytes to be returned"}],"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":406,"name":"FILEREF_UPGRADE_NEEDED","comment":"The client has to be updated in order to support file references."},{"code":400,"name":"FILE_ID_INVALID","comment":"The provided file id is invalid."},{"code":400,"name":"FILE_REFERENCE_EXPIRED","comment":"File reference expired, it must be refetched as described in the documentation."},{"code":420,"name":"FLOOD_PREMIUM_WAIT_%d","comment":"Please wait %d seconds before repeating the action, or purchase a Telegram Premium subscription to remove this rate limit."},{"code":400,"name":"LIMIT_INVALID","comment":"The provided limit is invalid."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"OFFSET_INVALID","comment":"The provided offset is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"upload.saveBigFilePart","type":"Bool","id":3732629309,"comment":"Saves a part of a large file (over 10 MB in size) to be later passed to one of the methods.","arguments":[{"name":"file_id","type":"long","comment":"Random file id, created by the client"},{"name":"file_part","type":"int","comment":"Part sequence number"},{"name":"file_total_parts","type":"int","comment":"Total number of parts"},{"name":"bytes","type":"bytes","comment":"Binary data, part contents"}],"throws":[{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_PART_EMPTY","comment":"The provided file part is empty."},{"code":400,"name":"FILE_PART_INVALID","comment":"The file part number is invalid."},{"code":400,"name":"FILE_PART_SIZE_CHANGED","comment":"Provided file part size has changed."},{"code":400,"name":"FILE_PART_SIZE_INVALID","comment":"The provided file part size is invalid."},{"code":400,"name":"FILE_PART_TOO_BIG","comment":"The uploaded file part is too big."}],"available":"both"},{"kind":"method","name":"upload.getWebFile","type":"upload.WebFile","typeModifiers":{"constructorId":568808380},"id":619086221,"comment":"Returns content of a web file, by proxying the request through telegram, see the webfile docs for more info.\n\nNote: the query must be sent to the DC specified in the webfile_dc_id MTProto configuration field.","arguments":[{"name":"location","type":"InputWebFileLocation","comment":"The file to download"},{"name":"offset","type":"int","comment":"Number of bytes to be skipped"},{"name":"limit","type":"int","comment":"Number of bytes to be returned"}],"throws":[{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."}],"available":"user"},{"kind":"method","name":"upload.getCdnFile","type":"upload.CdnFile","id":962554330,"comment":"Download a CDN file.","arguments":[{"name":"file_token","type":"bytes","comment":"File token"},{"name":"offset","type":"int53","comment":"Offset of chunk to download"},{"name":"limit","type":"int","comment":"Length of chunk to download"}],"throws":[{"code":400,"name":"FILE_TOKEN_INVALID","comment":"The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile."}],"available":"user"},{"kind":"method","name":"upload.reuploadCdnFile","type":"FileHash","typeModifiers":{"isVector":true,"constructorId":4087022428},"id":2603046056,"comment":"Request a reupload of a certain file to a CDN DC.","arguments":[{"name":"file_token","type":"bytes","comment":"File token"},{"name":"request_token","type":"bytes","comment":"Request token"}],"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":500,"name":"CDN_UPLOAD_TIMEOUT","comment":"A server-side timeout occurred while reuploading the file to the CDN DC."},{"code":400,"name":"FILE_TOKEN_INVALID","comment":"The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."},{"code":400,"name":"REQUEST_TOKEN_INVALID","comment":"The master DC did not accept the request_token from the CDN DC. Continue downloading the file from the master DC using upload.getFile."},{"code":400,"name":"RSA_DECRYPT_FAILED","comment":"Internal RSA decryption failed."}],"available":"both"},{"kind":"method","name":"upload.getCdnFileHashes","type":"FileHash","typeModifiers":{"isVector":true,"constructorId":4087022428},"id":2447130417,"comment":"Get SHA256 hashes for verifying downloaded CDN files","arguments":[{"name":"file_token","type":"bytes","comment":"File"},{"name":"offset","type":"int53","comment":"Offset from which to start getting hashes"}],"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":400,"name":"FILE_TOKEN_INVALID","comment":"The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile."},{"code":400,"name":"RSA_DECRYPT_FAILED","comment":"Internal RSA decryption failed."}],"available":"both"},{"kind":"method","name":"upload.getFileHashes","type":"FileHash","typeModifiers":{"isVector":true,"constructorId":4087022428},"id":2438371370,"comment":"Get SHA256 hashes for verifying downloaded files","arguments":[{"name":"location","type":"InputFileLocation","comment":"File"},{"name":"offset","type":"int53","comment":"Offset from which to get file hashes"}],"throws":[{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."}],"available":"both"},{"kind":"method","name":"help.getConfig","type":"Config","typeModifiers":{"constructorId":3424265246},"id":3304659051,"comment":"Returns current configuration, including data center configuration.","arguments":[],"throws":[{"code":400,"name":"CONNECTION_API_ID_INVALID","comment":"The provided API id is invalid."},{"code":400,"name":"CONNECTION_APP_VERSION_EMPTY","comment":"App version is empty."},{"code":400,"name":"CONNECTION_LAYER_INVALID","comment":"Layer invalid."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."}],"available":"both"},{"kind":"method","name":"help.getNearestDc","type":"NearestDc","typeModifiers":{"constructorId":2384074613},"id":531836966,"comment":"Returns info on data center nearest to the user.","arguments":[],"available":"user"},{"kind":"method","name":"help.getAppUpdate","type":"help.AppUpdate","id":1378703997,"comment":"Returns information on update availability for the current application.","arguments":[{"name":"source","type":"string","comment":"Source"}],"available":"user"},{"kind":"method","name":"help.getInviteText","type":"help.InviteText","typeModifiers":{"constructorId":415997816},"id":1295590211,"comment":"Returns localized text of a text message with an invitation.","arguments":[],"available":"user"},{"kind":"method","name":"help.getSupport","type":"help.Support","typeModifiers":{"constructorId":398898678},"id":2631862477,"comment":"Returns the support user for the \"ask a question\" feature.","arguments":[],"available":"user"},{"kind":"method","name":"help.setBotUpdatesStatus","type":"Bool","id":3961704397,"comment":"Informs the server about the number of pending bot updates if they haven't been processed for a long time; for bots only","arguments":[{"name":"pending_updates_count","type":"int","comment":"Number of pending updates"},{"name":"message","type":"string","comment":"Error message, if present"}],"throws":[{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"help.getCdnConfig","type":"CdnConfig","typeModifiers":{"constructorId":1462101002},"id":1375900482,"comment":"Get configuration for CDN file downloads.","arguments":[],"available":"both"},{"kind":"method","name":"help.getRecentMeUrls","type":"help.RecentMeUrls","typeModifiers":{"constructorId":235081943},"id":1036054804,"comment":"Get recently used t.me links.\n\nWhen installing official applications from \"Download Telegram\" buttons present in t.me pages, a referral parameter is passed to applications after installation.
\nIf, after downloading the application, the user creates a new account (instead of logging into an existing one), the referral parameter should be imported using this method, which returns the t.me pages the user recently opened, before installing Telegram.","arguments":[{"name":"referer","type":"string","comment":"Referrer"}],"available":"user"},{"kind":"method","name":"help.getTermsOfServiceUpdate","type":"help.TermsOfServiceUpdate","id":749019089,"comment":"Look for updates of telegram's terms of service","arguments":[],"available":"user"},{"kind":"method","name":"help.acceptTermsOfService","type":"Bool","id":4000511898,"comment":"Accept the new terms of service","arguments":[{"name":"id","type":"DataJSON","comment":"ID of terms of service"}],"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},{"kind":"method","name":"help.getDeepLinkInfo","type":"help.DeepLinkInfo","id":1072547679,"comment":"Get info about an unsupported deep link, see here for more info ».","arguments":[{"name":"path","type":"string","comment":"Path component of a tg: link"}],"available":"user"},{"kind":"method","name":"help.getAppConfig","type":"help.AppConfig","id":1642330196,"comment":"Get app-specific configuration, see client configuration for more info on the result.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"help.saveAppLog","type":"Bool","id":1862465352,"comment":"Saves logs of application on the server.","arguments":[{"name":"events","type":"InputAppEvent","typeModifiers":{"isVector":true},"comment":"List of input events"}],"available":"user"},{"kind":"method","name":"help.getPassportConfig","type":"help.PassportConfig","id":3328290056,"comment":"Get passport configuration","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"help.getSupportName","type":"help.SupportName","typeModifiers":{"constructorId":2349199817},"id":3546343212,"comment":"Get localized name of the telegram support user","arguments":[],"throws":[{"code":403,"name":"USER_INVALID","comment":"Invalid user provided."}],"available":"user"},{"kind":"method","name":"help.getUserInfo","type":"help.UserInfo","id":59377875,"comment":"Can only be used by TSF members to obtain internal information.","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID"}],"throws":[{"code":403,"name":"USER_INVALID","comment":"Invalid user provided."}],"available":"user"},{"kind":"method","name":"help.editUserInfo","type":"help.UserInfo","id":1723407216,"comment":"Internal use","arguments":[{"name":"user_id","type":"InputUser","comment":"User"},{"name":"message","type":"string","comment":"Message"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"}],"throws":[{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":403,"name":"USER_INVALID","comment":"Invalid user provided."}],"available":"user"},{"kind":"method","name":"help.getPromoData","type":"help.PromoData","id":3231151137,"comment":"Get MTProxy/Public Service Announcement information","arguments":[],"available":"user"},{"kind":"method","name":"help.hidePromoData","type":"Bool","id":505748629,"comment":"Hide MTProxy/Public Service Announcement information","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer to hide"}],"available":"user"},{"kind":"method","name":"help.dismissSuggestion","type":"Bool","id":4111317665,"comment":"Dismiss a suggestion, see here for more info ».","arguments":[{"name":"peer","type":"InputPeer","comment":"In the case of pending suggestions in {@link RawChannelFull}, the channel ID."},{"name":"suggestion","type":"string","comment":"Suggestion, see here for more info »."}],"available":"user"},{"kind":"method","name":"help.getCountriesList","type":"help.CountriesList","id":1935116200,"comment":"Get name, ISO code, localized name and phone codes/patterns of all available countries","arguments":[{"name":"lang_code","type":"string","comment":"Language code of the current user"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"help.getPremiumPromo","type":"help.PremiumPromo","typeModifiers":{"constructorId":1395946908},"id":3088815060,"comment":"Get Telegram Premium promotion information","arguments":[],"available":"user"},{"kind":"method","name":"help.getPeerColors","type":"help.PeerColors","id":3665884207,"comment":"Get the set of accent color palettes » that can be used for message accents.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"help.getPeerProfileColors","type":"help.PeerColors","id":2882513405,"comment":"Get the set of accent color palettes » that can be used in profile page backgrounds.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"help.getTimezonesList","type":"help.TimezonesList","id":1236468288,"comment":"Returns timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"channels.readHistory","type":"Bool","id":3423619383,"comment":"Mark channel/supergroup history as read","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"max_id","type":"int","comment":"ID of message up to which messages should be marked as read"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"channels.deleteMessages","type":"messages.AffectedMessages","typeModifiers":{"constructorId":2228326789},"id":2227305806,"comment":"Delete messages in a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages to delete"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"MESSAGE_DELETE_FORBIDDEN","comment":"You can't delete one of the messages you tried to delete, most likely because it is a service message."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},{"kind":"method","name":"channels.reportSpam","type":"Bool","id":4098523925,"comment":"Reports some messages from a user in a supergroup as spam; requires administrator rights in the supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup"},{"name":"participant","type":"InputPeer","comment":"Participant whose messages should be reported"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of spam messages"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"channels.getMessages","type":"messages.Messages","id":2911672867,"comment":"Get channel/supergroup messages","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"id","type":"InputMessage","typeModifiers":{"isVector":true},"comment":"IDs of messages to get"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MESSAGE_IDS_EMPTY","comment":"No message ids were provided."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"channels.getParticipants","type":"channels.ChannelParticipants","id":2010044880,"comment":"Get the participants of a supergroup/channel","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel"},{"name":"filter","type":"ChannelParticipantsFilter","comment":"Which participant types to fetch"},{"name":"offset","type":"int","comment":"Offset"},{"name":"limit","type":"int","comment":"Limit"},{"name":"hash","type":"long","comment":"Hash"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},{"kind":"method","name":"channels.getParticipant","type":"channels.ChannelParticipant","typeModifiers":{"constructorId":3753378583},"id":2695589062,"comment":"Get info about a channel/supergroup participant","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"participant","type":"InputPeer","comment":"Participant to get info about"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PARTICIPANT_ID_INVALID","comment":"The specified participant ID is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},{"kind":"method","name":"channels.getChannels","type":"messages.Chats","id":176122811,"comment":"Get info about channels/supergroups","arguments":[{"name":"id","type":"InputChannel","typeModifiers":{"isVector":true},"comment":"IDs of channels/supergroups to get info about"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"channels.getFullChannel","type":"messages.ChatFull","typeModifiers":{"constructorId":3856126364},"id":141781513,"comment":"Get full info about a supergroup, gigagroup or channel","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel, supergroup or gigagroup to get info about"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHANNEL_PUBLIC_GROUP_NA","comment":"channel/supergroup not available."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},{"kind":"method","name":"channels.createChannel","type":"Updates","id":2432722695,"comment":"Create a supergroup/channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"broadcast","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to create a channel"},{"name":"megagroup","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to create a supergroup"},{"name":"for_import","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the supergroup is being created to import messages from a foreign chat service using {@link messages.RawInitHistoryImportRequest}"},{"name":"forum","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to create a forum"},{"name":"title","type":"string","comment":"Channel title"},{"name":"about","type":"string","comment":"Channel description"},{"name":"geo_point","type":"InputGeoPoint","typeModifiers":{"predicate":"flags.2"},"comment":"Geogroup location, see here » for more info on geogroups."},{"name":"address","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Geogroup address, see here » for more info on geogroups."},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Time-to-live of all messages that will be sent in the supergroup: once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well. You can use {@link messages.RawSetDefaultHistoryTTLRequest} to edit this value later."}],"throws":[{"code":400,"name":"ADDRESS_INVALID","comment":"The specified geopoint address is invalid."},{"code":400,"name":"CHANNELS_ADMIN_LOCATED_TOO_MUCH","comment":"The user has reached the limit of public geogroups."},{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHAT_ABOUT_TOO_LONG","comment":"Chat about too long."},{"code":500,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."},{"code":406,"name":"USER_RESTRICTED","comment":"You're spamreported, you can't create channels or chats."}],"available":"user"},{"kind":"method","name":"channels.editAdmin","type":"Updates","id":3543959810,"comment":"Modify the admin rights of a user in a supergroup/channel.","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup/channel."},{"name":"user_id","type":"InputUser","comment":"The ID of the user whose admin rights should be modified"},{"name":"admin_rights","type":"ChatAdminRights","comment":"The admin rights"},{"name":"rank","type":"string","comment":"Indicates the role (rank) of the admin in the group: just an arbitrary string"}],"throws":[{"code":400,"name":"ADMINS_TOO_MUCH","comment":"There are too many admins."},{"code":400,"name":"ADMIN_RANK_EMOJI_NOT_ALLOWED","comment":"An admin rank cannot contain emojis."},{"code":400,"name":"ADMIN_RANK_INVALID","comment":"The specified admin rank is invalid."},{"code":400,"name":"BOTS_TOO_MUCH","comment":"There are too many bots in this chat/channel."},{"code":400,"name":"BOT_CHANNELS_NA","comment":"Bots can't edit admin privileges."},{"code":400,"name":"BOT_GROUPS_BLOCKED","comment":"This bot can't be added to groups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_INVITE_REQUIRED","comment":"You do not have the rights to do this."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":406,"name":"FRESH_CHANGE_ADMINS_FORBIDDEN","comment":"You were just elected admin, you can't add or modify other admins yet."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"RIGHT_FORBIDDEN","comment":"Your admin rights do not allow you to do this."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_BLOCKED","comment":"User blocked."},{"code":403,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."},{"code":400,"name":"USER_CREATOR","comment":"For channels.editAdmin: you've tried to edit the admin rights of the owner, but you're not the owner; for channels.leaveChannel: you can't leave this channel, because you're its creator."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":403,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."},{"code":403,"name":"USER_RESTRICTED","comment":"You're spamreported, you can't create channels or chats."}],"available":"both"},{"kind":"method","name":"channels.editTitle","type":"Updates","id":1450044624,"comment":"Edit the name of a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"title","type":"string","comment":"New name"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."}],"available":"both"},{"kind":"method","name":"channels.editPhoto","type":"Updates","id":4046346185,"comment":"Change the photo of a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup whose photo should be edited"},{"name":"photo","type":"InputChatPhoto","comment":"New photo"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_REFERENCE_INVALID","comment":"The specified file reference is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."},{"code":400,"name":"STICKER_MIME_INVALID","comment":"The specified sticker MIME type is invalid."}],"available":"both"},{"kind":"method","name":"channels.checkUsername","type":"Bool","id":283557164,"comment":"Check if a username is free and can be assigned to a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel/supergroup that will assigned the specified username"},{"name":"username","type":"string","comment":"The username to check"}],"throws":[{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},{"kind":"method","name":"channels.updateUsername","type":"Bool","id":890549214,"comment":"Change or remove the username of a supergroup/channel","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel"},{"name":"username","type":"string","comment":"New username, pass an empty string to remove the username"}],"throws":[{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},{"kind":"method","name":"channels.joinChannel","type":"Updates","id":615851205,"comment":"Join a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup to join"}],"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"INVITE_HASH_EMPTY","comment":"The invite hash is empty."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_HASH_INVALID","comment":"The invite hash is invalid."},{"code":400,"name":"INVITE_REQUEST_SENT","comment":"You have successfully requested to join this chat or channel."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":400,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."}],"available":"user"},{"kind":"method","name":"channels.leaveChannel","type":"Updates","id":4164332181,"comment":"Leave a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup to leave"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHANNEL_PUBLIC_GROUP_NA","comment":"channel/supergroup not available."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"USER_CREATOR","comment":"For channels.editAdmin: you've tried to edit the admin rights of the owner, but you're not the owner; for channels.leaveChannel: you can't leave this channel, because you're its creator."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},{"kind":"method","name":"channels.inviteToChannel","type":"messages.InvitedUsers","typeModifiers":{"constructorId":2136862630},"id":3387112788,"comment":"Invite users to a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"Users to invite"}],"throws":[{"code":400,"name":"BOTS_TOO_MUCH","comment":"There are too many bots in this chat/channel."},{"code":400,"name":"BOT_GROUPS_BLOCKED","comment":"This bot can't be added to groups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"USER_BLOCKED","comment":"User blocked."},{"code":400,"name":"USER_BOT","comment":"Bots can only be admins in channels."},{"code":403,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_KICKED","comment":"This user was kicked from this supergroup/channel."},{"code":403,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."}],"available":"user"},{"kind":"method","name":"channels.deleteChannel","type":"Updates","id":3222347747,"comment":"Delete a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup to delete"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":406,"name":"CHANNEL_TOO_LARGE","comment":"Channel is too large to be deleted; this error is issued when trying to delete channels with more than 1000 members (subject to change)."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."}],"available":"user"},{"kind":"method","name":"channels.exportMessageLink","type":"ExportedMessageLink","typeModifiers":{"constructorId":1571494644},"id":3862932971,"comment":"Get link and embed info of a message in a channel/supergroup","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"grouped","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to include other grouped media (for albums)"},{"name":"thread","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to also include a thread ID, if available, inside of the link"},{"name":"channel","type":"InputChannel","comment":"Channel"},{"name":"id","type":"int","comment":"Message ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"channels.toggleSignatures","id":1099781276,"type":"Updates","arguments":[{"name":"flags","type":"#"},{"name":"signatures_enabled","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"profiles_enabled","type":"true","typeModifiers":{"predicate":"flags.1"}},{"name":"channel","type":"InputChannel","comment":"Channel"}],"comment":"Enable/disable message signatures in channels","throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},{"kind":"method","name":"channels.getAdminedPublicChannels","type":"messages.Chats","id":4172297903,"comment":"Get channels/supergroups/geogroups we're admin in. Usually called when the user exceeds the {@link RawConfig} for owned public channels/supergroups/geogroups, and the user is given the choice to remove one of their channels/supergroups/geogroups.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"by_location","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Get geogroups"},{"name":"check_limit","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set and the user has reached the limit of owned public channels/supergroups/geogroups, instead of returning the channel list one of the specified errors will be returned.
Useful to check if a new public channel can indeed be created, even before asking the user to enter a channel username to use in {@link channels.RawCheckUsernameRequest}/{@link channels.RawUpdateUsernameRequest}."},{"name":"for_personal","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Set this flag to only fetch the full list of channels that may be passed to {@link account.RawUpdatePersonalChannelRequest} to display them on our profile page."}],"throws":[{"code":400,"name":"CHANNELS_ADMIN_LOCATED_TOO_MUCH","comment":"The user has reached the limit of public geogroups."},{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."}],"available":"user"},{"kind":"method","name":"channels.editBanned","type":"Updates","id":2531708289,"comment":"Ban/unban/kick a user in a supergroup/channel.","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup/channel."},{"name":"participant","type":"InputPeer","comment":"Participant to ban"},{"name":"banned_rights","type":"ChatBannedRights","comment":"The banned rights"}],"throws":[{"code":406,"name":"BANNED_RIGHTS_INVALID","comment":"You provided some invalid flags in the banned rights."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PARTICIPANT_ID_INVALID","comment":"The specified participant ID is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ADMIN_INVALID","comment":"You're not an admin."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"channels.getAdminLog","type":"channels.AdminLogResults","typeModifiers":{"constructorId":3985307469},"id":870184064,"comment":"Get the admin log of a channel/supergroup","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"InputChannel","comment":"Channel"},{"name":"q","type":"string","comment":"Search query, can be empty"},{"name":"events_filter","type":"ChannelAdminLogEventsFilter","typeModifiers":{"predicate":"flags.0"},"comment":"Event filter"},{"name":"admins","type":"InputUser","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Only show events from these admins"},{"name":"max_id","type":"long","comment":"Maximum ID of message to return (see pagination)"},{"name":"min_id","type":"long","comment":"Minimum ID of message to return (see pagination)"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"channels.setStickers","type":"Bool","id":3935085817,"comment":"Associate a stickerset to the supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup"},{"name":"stickerset","type":"InputStickerSet","comment":"The stickerset to associate"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PARTICIPANTS_TOO_FEW","comment":"Not enough participants."},{"code":406,"name":"STICKERSET_OWNER_ANONYMOUS","comment":"Provided stickerset can't be installed as group stickerset to prevent admin deanonymization."}],"available":"both"},{"kind":"method","name":"channels.readMessageContents","type":"Bool","id":3937786936,"comment":"Mark channel/supergroup message contents as read","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages whose contents should be marked as read"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"channels.deleteHistory","type":"Updates","id":2611648071,"comment":"Delete the history of a supergroup","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"for_everyone","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the history should be deleted for everyone"},{"name":"channel","type":"InputChannel","comment":"Supergroup whose history must be deleted"},{"name":"max_id","type":"int","comment":"ID of message up to which the history must be deleted"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PARICIPANT_MISSING","comment":"The current user is not in the channel."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHANNEL_TOO_BIG","comment":"This channel has too many participants (>1000) to be deleted."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."}],"available":"user"},{"kind":"method","name":"channels.togglePreHistoryHidden","type":"Updates","id":3938171212,"comment":"Hide/unhide message history for new channel/supergroup users","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"enabled","type":"Bool","comment":"Hide/unhide"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_LINK_EXISTS","comment":"The chat is public, you can't hide the history to new users."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"FORUM_ENABLED","comment":"You can't execute the specified action because the group is a forum, disable forum functionality to continue."}],"available":"user"},{"kind":"method","name":"channels.getLeftChannels","type":"messages.Chats","id":2202135744,"comment":"Get a list of channels/supergroups we left, requires a takeout session, see here » for more info.","arguments":[{"name":"offset","type":"int","comment":"Offset for pagination"}],"throws":[{"code":403,"name":"TAKEOUT_REQUIRED","comment":"A takeout session needs to be initialized first, see here » for more info."}],"available":"user"},{"kind":"method","name":"channels.getGroupsForDiscussion","type":"messages.Chats","id":4124758904,"comment":"Get all groups that can be used as discussion groups.\n\nReturned basic group chats must be first upgraded to supergroups before they can be set as a discussion group.
\nTo set a returned supergroup as a discussion group, access to its old messages must be enabled using {@link channels.RawTogglePreHistoryHiddenRequest}, first.","arguments":[],"available":"user"},{"kind":"method","name":"channels.setDiscussionGroup","type":"Bool","id":1079520178,"comment":"Associate a group to a channel as discussion group for that channel","arguments":[{"name":"broadcast","type":"InputChannel","comment":"Channel"},{"name":"group","type":"InputChannel","comment":"Discussion group to associate to the channel"}],"throws":[{"code":400,"name":"BROADCAST_ID_INVALID","comment":"Broadcast ID invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"LINK_NOT_MODIFIED","comment":"Discussion link not modified."},{"code":400,"name":"MEGAGROUP_ID_INVALID","comment":"Invalid supergroup ID."},{"code":400,"name":"MEGAGROUP_PREHISTORY_HIDDEN","comment":"Group with hidden history for new members can't be set as discussion groups."}],"available":"user"},{"kind":"method","name":"channels.editCreator","type":"Updates","id":2402864415,"comment":"Transfer channel ownership","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel"},{"name":"user_id","type":"InputUser","comment":"New channel owner"},{"name":"password","type":"InputCheckPasswordSRP","comment":"2FA password of account"}],"throws":[{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PASSWORD_TOO_FRESH_%d","comment":"The password was modified less than 24 hours ago, try again in %d seconds."},{"code":400,"name":"SESSION_TOO_FRESH_%d","comment":"This session was created less than 24 hours ago, try again in %d seconds."},{"code":400,"name":"SRP_ID_INVALID","comment":"Invalid SRP ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"channels.editLocation","type":"Bool","id":1491484525,"comment":"Edit location of geo group, see here » for more info on geogroups.","arguments":[{"name":"channel","type":"InputChannel","comment":"Geogroup"},{"name":"geo_point","type":"InputGeoPoint","comment":"New geolocation"},{"name":"address","type":"string","comment":"Address string"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"MEGAGROUP_GEO_REQUIRED","comment":"This method can only be invoked on a geogroup."},{"code":400,"name":"MEGAGROUP_REQUIRED","comment":"You can only use this method on a supergroup."}],"available":"user"},{"kind":"method","name":"channels.toggleSlowMode","type":"Updates","id":3990134512,"comment":"Toggle supergroup slow mode: if enabled, users will only be able to send one message every seconds seconds","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup"},{"name":"seconds","type":"int","comment":"Users will only be able to send one message every seconds seconds, 0 to disable the limitation"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"SECONDS_INVALID","comment":"Invalid duration provided."}],"available":"user"},{"kind":"method","name":"channels.getInactiveChannels","type":"messages.InactiveChats","typeModifiers":{"constructorId":2837970629},"id":300429806,"comment":"Get inactive channels and supergroups","arguments":[],"available":"user"},{"kind":"method","name":"channels.convertToGigagroup","type":"Updates","id":187239529,"comment":"Convert a supergroup to a gigagroup, when requested by channel suggestions.","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup to convert"}],"throws":[{"code":400,"name":"CHANNEL_ID_INVALID","comment":"The specified supergroup ID is invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FORUM_ENABLED","comment":"You can't execute the specified action because the group is a forum, disable forum functionality to continue."},{"code":400,"name":"PARTICIPANTS_TOO_FEW","comment":"Not enough participants."}],"available":"user"},{"kind":"method","name":"channels.viewSponsoredMessage","type":"Bool","id":3199130516,"comment":"Mark a specific sponsored message as read","arguments":[{"name":"channel","type":"InputChannel","comment":"Peer"},{"name":"random_id","type":"bytes","comment":"Message ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},{"kind":"method","name":"channels.getSponsoredMessages","type":"messages.SponsoredMessages","id":3961589695,"comment":"Get a list of sponsored messages","arguments":[{"name":"channel","type":"InputChannel","comment":"Peer"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"channels.getSendAs","type":"channels.SendAsPeers","typeModifiers":{"constructorId":4103516358},"id":231174382,"comment":"Obtains a list of peers that can be used to send messages in a specific group","arguments":[{"name":"peer","type":"InputPeer","comment":"The group where we intend to send messages"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"channels.deleteParticipantHistory","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":913655003,"comment":"Delete all messages sent by a specific participant of a given supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup"},{"name":"participant","type":"InputPeer","comment":"The participant whose messages should be deleted"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PARTICIPANT_ID_INVALID","comment":"The specified participant ID is invalid."}],"available":"user"},{"kind":"method","name":"channels.toggleJoinToSend","type":"Updates","id":3838547328,"comment":"Set whether all users should join a discussion group in order to comment on a post »","arguments":[{"name":"channel","type":"InputChannel","comment":"Discussion group"},{"name":"enabled","type":"Bool","comment":"Toggle"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},{"kind":"method","name":"channels.toggleJoinRequest","type":"Updates","id":1277789622,"comment":"Set whether all users should request admin approval to join the group ».","arguments":[{"name":"channel","type":"InputChannel","comment":"Group"},{"name":"enabled","type":"Bool","comment":"Toggle"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"CHAT_PUBLIC_REQUIRED","comment":"You can only enable join requests in public groups."}],"available":"user"},{"kind":"method","name":"channels.reorderUsernames","type":"Bool","id":3025988893,"comment":"Reorder active usernames","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup or channel"},{"name":"order","type":"string","typeModifiers":{"isVector":true},"comment":"The new order for active usernames. All active usernames must be specified."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},{"kind":"method","name":"channels.toggleUsername","type":"Bool","id":1358053637,"comment":"Activate or deactivate a purchased fragment.com username associated to a supergroup or channel we own.","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup or channel"},{"name":"username","type":"string","comment":"Username"},{"name":"active","type":"Bool","comment":"Whether to activate or deactivate the username"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"USERNAMES_ACTIVE_TOO_MUCH","comment":"The maximum number of active usernames was reached."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},{"kind":"method","name":"channels.deactivateAllUsernames","type":"Bool","id":170155475,"comment":"Disable all purchased usernames of a supergroup or channel","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup or channel"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.toggleForum","type":"Updates","id":2754186025,"comment":"Enable or disable forum functionality in a supergroup.","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup ID"},{"name":"enabled","type":"Bool","comment":"Enable or disable forum functionality"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_DISCUSSION_UNALLOWED","comment":"You can't enable forum topics in a discussion group linked to a channel."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},{"kind":"method","name":"channels.createForumTopic","type":"Updates","id":4094427684,"comment":"Create a forum topic; requires manage_topics rights.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"InputChannel","comment":"The forum"},{"name":"title","type":"string","comment":"Topic title (maximum UTF-8 length: 128)"},{"name":"icon_color","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F."},{"name":"icon_emoji_id","type":"long","typeModifiers":{"predicate":"flags.3"},"comment":"ID of the custom emoji used as topic icon. Telegram Premium users can use any custom emoji, other users can only use the custom emojis contained in the {@link RawInputStickerSetEmojiDefaultTopicIcons} emoji pack."},{"name":"random_id","type":"long","comment":"Unique client message ID to prevent duplicate sending of the same event"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.2"},"comment":"Create the topic as the specified peer"}],"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"TOPIC_TITLE_EMPTY","comment":"The specified topic title is empty."}],"available":"both"},{"kind":"method","name":"channels.getForumTopics","type":"messages.ForumTopics","typeModifiers":{"constructorId":913709011},"id":233136337,"comment":"Get topics of a forum","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"InputChannel","comment":"Supergroup"},{"name":"q","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Search query"},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here, date of the last message of the last found topic. Use 0 or any date in the future to get results from the last topic."},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here, ID of the last message of the last found topic (or initially 0)."},{"name":"offset_topic","type":"int","comment":"Offsets for pagination, for more info click here, ID of the last found topic (or initially 0)."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination. For optimal performance, the number of returned topics is chosen by the server and can be smaller than the specified limit."}],"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},{"kind":"method","name":"channels.getForumTopicsByID","type":"messages.ForumTopics","typeModifiers":{"constructorId":913709011},"id":2961383097,"comment":"Get forum topics by their ID","arguments":[{"name":"channel","type":"InputChannel","comment":"Forum"},{"name":"topics","type":"int","typeModifiers":{"isVector":true},"comment":"Topic IDs"}],"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"TOPICS_EMPTY","comment":"You specified no topic IDs."}],"available":"user"},{"kind":"method","name":"channels.editForumTopic","type":"Updates","id":4108296581,"comment":"Edit forum topic; requires manage_topics rights.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"InputChannel","comment":"Supergroup"},{"name":"topic_id","type":"int","comment":"Topic ID"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If present, will update the topic title (maximum UTF-8 length: 128)."},{"name":"icon_emoji_id","type":"long","typeModifiers":{"predicate":"flags.1"},"comment":"If present, updates the custom emoji used as topic icon. Telegram Premium users can use any custom emoji, other users can only use the custom emojis contained in the {@link RawInputStickerSetEmojiDefaultTopicIcons} emoji pack. Pass 0 to switch to the fallback topic icon."},{"name":"closed","type":"Bool","typeModifiers":{"predicate":"flags.2"},"comment":"If present, will update the open/closed status of the topic."},{"name":"hidden","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"If present, will hide/unhide the topic (only valid for the \"General\" topic, id=1)."}],"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"GENERAL_MODIFY_ICON_FORBIDDEN","comment":"You can't modify the icon of the \"General\" topic."},{"code":400,"name":"TOPIC_CLOSE_SEPARATELY","comment":"The close flag cannot be provided together with any of the other flags."},{"code":400,"name":"TOPIC_HIDE_SEPARATELY","comment":"The hide flag cannot be provided together with any of the other flags."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."},{"code":400,"name":"TOPIC_NOT_MODIFIED","comment":"The updated topic info is equal to the current topic info, nothing was changed."}],"available":"both"},{"kind":"method","name":"channels.updatePinnedForumTopic","type":"Updates","id":1814925350,"comment":"Pin or unpin forum topics","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup ID"},{"name":"topic_id","type":"int","comment":"Forum topic ID"},{"name":"pinned","type":"Bool","comment":"Whether to pin or unpin the topic"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"user"},{"kind":"method","name":"channels.deleteTopicHistory","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":876830509,"comment":"Delete message history of a forum topic","arguments":[{"name":"channel","type":"InputChannel","comment":"Forum"},{"name":"top_msg_id","type":"int","comment":"Topic ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"both"},{"kind":"method","name":"channels.reorderPinnedForumTopics","type":"Updates","id":693150095,"comment":"Reorder pinned forum topics","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If not set, the order of only the topics present both server-side and in order will be changed (i.e. mentioning topics not pinned server-side in order will not pin them, and not mentioning topics pinned server-side will not unpin them).
If set, the entire server-side pinned topic list will be replaced with order (i.e. mentioning topics not pinned server-side in order will pin them, and not mentioning topics pinned server-side will unpin them)"},{"name":"channel","type":"InputChannel","comment":"Supergroup ID"},{"name":"order","type":"int","typeModifiers":{"isVector":true},"comment":"Topic IDs »"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.toggleAntiSpam","type":"Updates","id":1760814315,"comment":"Enable or disable the native antispam system.","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup ID. The specified supergroup must have at least telegram_antispam_group_size_min members to enable antispam functionality, as specified by the client configuration parameters."},{"name":"enabled","type":"Bool","comment":"Enable or disable the native antispam system."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},{"kind":"method","name":"channels.reportAntiSpamFalsePositive","type":"Bool","id":2823857811,"comment":"Report a native antispam false positive","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup ID"},{"name":"msg_id","type":"int","comment":"Message ID that was mistakenly deleted by the native antispam system, taken from the admin log"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.toggleParticipantsHidden","type":"Updates","id":1785624660,"comment":"Hide or display the participants list in a supergroup.\n\nThe supergroup must have at least hidden_members_group_size_min participants in order to use this method, as specified by the client configuration parameters ».","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup ID"},{"name":"enabled","type":"Bool","comment":"If true, will hide the participants list; otherwise will unhide it."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PARTICIPANTS_TOO_FEW","comment":"Not enough participants."}],"available":"user"},{"kind":"method","name":"channels.clickSponsoredMessage","id":21257589,"type":"Bool","arguments":[{"name":"flags","type":"#"},{"name":"media","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"fullscreen","type":"true","typeModifiers":{"predicate":"flags.1"}},{"name":"channel","type":"InputChannel","comment":"Channel where the sponsored message was posted"},{"name":"random_id","type":"bytes","comment":"Message ID"}],"comment":"Informs the server that the user has either:","throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.updateColor","type":"Updates","id":3635033713,"comment":"Update the accent color and background custom emoji » of a channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"for_profile","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to change the accent color emoji pattern of the profile page; otherwise, the accent color and emoji pattern of messages will be changed.
Channels can change both message and profile palettes; supergroups can only change the profile palette, of course after reaching the appropriate boost level."},{"name":"channel","type":"InputChannel","comment":"Channel whose accent color should be changed."},{"name":"color","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"ID of the accent color palette » to use (not RGB24, see here » for more info); if not set, the default palette is used."},{"name":"background_emoji_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"Custom emoji ID used in the accent color pattern."}],"throws":[{"code":400,"name":"BOOSTS_REQUIRED","comment":"The specified channel must first be boosted by its users in order to perform this action."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.toggleViewForumAsMessages","type":"Updates","id":2537077525,"comment":"Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client: this setting only affects the current account, and is synced to other logged in sessions using this method.\n\nInvoking this method will update the value of the view_forum_as_messages flag of {@link RawChannelFull} or {@link RawDialog} and emit an {@link RawUpdateChannelViewForumAsMessages}.","arguments":[{"name":"channel","type":"InputChannel","comment":"The forum"},{"name":"enabled","type":"Bool","comment":"The new value of the view_forum_as_messages flag."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.getChannelRecommendations","type":"messages.Chats","id":631707458,"comment":"Obtain a list of similarly themed public channels, selected based on similarities in their subscriber bases.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"InputChannel","typeModifiers":{"predicate":"flags.0"},"comment":"The method will return channels related to the passed channel. If not set, the method will returns channels related to channels the user has joined."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},{"kind":"method","name":"channels.updateEmojiStatus","type":"Updates","id":4040418984,"comment":"Set an emoji status for a channel or supergroup.","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel/supergroup, must have at least channel_emoji_status_level_min/group_emoji_status_level_min boosts."},{"name":"emoji_status","type":"EmojiStatus","comment":"Emoji status to set"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.setBoostsToUnblockRestrictions","type":"Updates","id":2906234094,"comment":"Admins with {@link RawChatAdminRights} may allow users that apply a certain number of booosts » to the group to bypass {@link channels.RawToggleSlowModeRequest} and other » supergroup restrictions, see here » for more info.","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup."},{"name":"boosts","type":"int","comment":"The number of required boosts (1-8, 0 to disable)."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.setEmojiStickers","type":"Bool","id":1020866743,"comment":"Set a custom emoji stickerset for supergroups. Only usable after reaching at least the boost level » specified in the group_emoji_stickers_level_min » config parameter.","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup"},{"name":"stickerset","type":"InputStickerSet","comment":"The custom emoji stickerset to associate to the supergroup"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.reportSponsoredMessage","type":"channels.SponsoredMessageReportResult","id":2945447609,"comment":"Report a sponsored message », see here » for more info on the full flow.","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel where the sponsored message can be seen."},{"name":"random_id","type":"bytes","comment":"ID of the sponsored message."},{"name":"option","type":"bytes","comment":"Chosen report option, initially an empty string, see here » for more info on the full flow."}],"throws":[{"code":400,"name":"AD_EXPIRED","comment":"The ad has expired (too old or not found)."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"channels.restrictSponsoredMessages","type":"Updates","id":2598966553,"comment":"Disable ads on the specified channel, for all users.\n\nAvailable only after reaching at least the boost level » specified in the channel_restrict_sponsored_level_min » config parameter.","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel."},{"name":"restricted","type":"Bool","comment":"Whether to disable or re-enable ads."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.searchPosts","type":"messages.Messages","id":3516897403,"comment":"Globally search for posts from public channels » (including those we aren't a member of) containing a specific hashtag.","arguments":[{"name":"hashtag","type":"string","comment":"The hashtag to search, without the # character."},{"name":"offset_rate","type":"int","comment":"Initially 0, then set to the {@link messages.RawMessagesSlice}"},{"name":"offset_peer","type":"InputPeer","comment":"Offsets for pagination, for more info click here"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"available":"user"},{"kind":"method","name":"bots.sendCustomRequest","type":"DataJSON","typeModifiers":{"constructorId":2104790276},"id":2854709741,"comment":"Sends a custom request; for bots only","arguments":[{"name":"custom_method","type":"string","comment":"The method name"},{"name":"params","type":"DataJSON","comment":"JSON-serialized method parameters"}],"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."},{"code":400,"name":"METHOD_INVALID","comment":"The specified method is invalid."},{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.answerWebhookJSONQuery","type":"Bool","id":3860938573,"comment":"Answers a custom query; for bots only","arguments":[{"name":"query_id","type":"long","comment":"Identifier of a custom query"},{"name":"data","type":"DataJSON","comment":"JSON-serialized answer to the query"}],"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."},{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.setBotCommands","type":"Bool","id":85399130,"comment":"Set bot command list","arguments":[{"name":"scope","type":"BotCommandScope","comment":"Command scope"},{"name":"lang_code","type":"string","comment":"Language code"},{"name":"commands","type":"BotCommand","typeModifiers":{"isVector":true},"comment":"Bot commands"}],"throws":[{"code":400,"name":"BOT_COMMAND_DESCRIPTION_INVALID","comment":"The specified command description is invalid."},{"code":400,"name":"BOT_COMMAND_INVALID","comment":"The specified command is invalid."},{"code":400,"name":"LANG_CODE_INVALID","comment":"The specified language code is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"bot"},{"kind":"method","name":"bots.resetBotCommands","type":"Bool","id":1032708345,"comment":"Clear bot commands for the specified bot scope and language code","arguments":[{"name":"scope","type":"BotCommandScope","comment":"Command scope"},{"name":"lang_code","type":"string","comment":"Language code"}],"throws":[{"code":400,"name":"LANG_CODE_INVALID","comment":"The specified language code is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.getBotCommands","type":"BotCommand","typeModifiers":{"isVector":true,"constructorId":3262826695},"id":3813412310,"comment":"Obtain a list of bot commands for the specified bot scope and language code","arguments":[{"name":"scope","type":"BotCommandScope","comment":"Command scope"},{"name":"lang_code","type":"string","comment":"Language code"}],"throws":[{"code":400,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.setBotMenuButton","type":"Bool","id":1157944655,"comment":"Sets the menu button action » for a given user or for all users","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID"},{"name":"button","type":"BotMenuButton","comment":"Bot menu button action"}],"throws":[{"code":400,"name":"BUTTON_TEXT_INVALID","comment":"The specified button text is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.getBotMenuButton","type":"BotMenuButton","id":2623597352,"comment":"Gets the menu button action for a given user or for all users, previously set using {@link bots.RawSetBotMenuButtonRequest}; users can see this information in the {@link RawBotInfo} constructor.","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID or empty for the default menu button."}],"throws":[{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.setBotBroadcastDefaultAdminRights","type":"Bool","id":2021942497,"comment":"Set the default suggested admin rights for bots being added as admins to channels, see here for more info on how to handle them ».","arguments":[{"name":"admin_rights","type":"ChatAdminRights","comment":"Admin rights"}],"throws":[{"code":400,"name":"RIGHTS_NOT_MODIFIED","comment":"The new admin rights are equal to the old rights, no change was made."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.setBotGroupDefaultAdminRights","type":"Bool","id":2455685610,"comment":"Set the default suggested admin rights for bots being added as admins to groups, see here for more info on how to handle them ».","arguments":[{"name":"admin_rights","type":"ChatAdminRights","comment":"Admin rights"}],"throws":[{"code":400,"name":"RIGHTS_NOT_MODIFIED","comment":"The new admin rights are equal to the old rights, no change was made."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.setBotInfo","type":"Bool","id":282013987,"comment":"Set localized name, about text and description of a bot (or of the current account, if called by a bot).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bot","type":"InputUser","typeModifiers":{"predicate":"flags.2"},"comment":"If called by a user, must contain the peer of a bot we own."},{"name":"lang_code","type":"string","comment":"Language code, if left empty update the fallback about text and description"},{"name":"name","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"New bot name"},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"New about text"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"New description"}],"throws":[{"code":400,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."}],"available":"both"},{"kind":"method","name":"bots.getBotInfo","type":"bots.BotInfo","typeModifiers":{"constructorId":3903288752},"id":3705214205,"comment":"Get localized name, about text and description of a bot (or of the current account, if called by a bot).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bot","type":"InputUser","typeModifiers":{"predicate":"flags.0"},"comment":"If called by a user, must contain the peer of a bot we own."},{"name":"lang_code","type":"string","comment":"Language code, if left empty this method will return the fallback about text and description."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"LANG_CODE_INVALID","comment":"The specified language code is invalid."},{"code":400,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."}],"available":"both"},{"kind":"method","name":"bots.reorderUsernames","type":"Bool","id":2533994946,"comment":"Reorder usernames associated to a bot we own.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot"},{"name":"order","type":"string","typeModifiers":{"isVector":true},"comment":"The new order for active usernames. All active usernames must be specified."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},{"kind":"method","name":"bots.toggleUsername","type":"Bool","id":87861619,"comment":"Activate or deactivate a purchased fragment.com username associated to a bot we own.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot"},{"name":"username","type":"string","comment":"Username"},{"name":"active","type":"Bool","comment":"Whether to activate or deactivate it"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},{"kind":"method","name":"bots.canSendMessage","type":"Bool","id":324662502,"comment":"Check whether the specified bot can send us messages","arguments":[{"name":"bot","type":"InputUser","comment":"The bot"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.allowSendMessage","type":"Updates","id":4046644207,"comment":"Allow the specified bot to send us messages","arguments":[{"name":"bot","type":"InputUser","comment":"The bot"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.invokeWebViewCustomMethod","type":"DataJSON","typeModifiers":{"constructorId":2104790276},"id":142591463,"comment":"Send a custom request from a mini bot app, triggered by a web_app_invoke_custom_method event ».\n\nThe response should be sent using a custom_method_invoked event, see here » for more info on the flow.","arguments":[{"name":"bot","type":"InputUser","comment":"Identifier of the bot associated to the mini bot app"},{"name":"custom_method","type":"string","comment":"Identifier of the custom method to invoke"},{"name":"params","type":"DataJSON","comment":"Method parameters"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},{"kind":"method","name":"bots.getPopularAppBots","type":"bots.PopularAppBots","typeModifiers":{"constructorId":428978491},"id":3260088722,"comment":"Fetch popular Main Mini Apps, to be used in the apps tab of global search ».","arguments":[{"name":"offset","type":"string","comment":"Offset for pagination, initially an empty string, then re-use the next_offset returned by the previous query."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"available":"user"},{"kind":"method","name":"bots.addPreviewMedia","type":"BotPreviewMedia","typeModifiers":{"constructorId":602479523},"id":397326170,"comment":"Add a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."},{"name":"lang_code","type":"string","comment":"ISO 639-1 language code, indicating the localization of the preview to add."},{"name":"media","type":"InputMedia","comment":"The photo/video preview, uploaded using {@link messages.RawUploadMediaRequest}."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.editPreviewMedia","type":"BotPreviewMedia","typeModifiers":{"constructorId":602479523},"id":2233819247,"comment":"Edit a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."},{"name":"lang_code","type":"string","comment":"ISO 639-1 language code, indicating the localization of the preview to edit."},{"name":"media","type":"InputMedia","comment":"The photo/video preview to replace, previously fetched as specified here »."},{"name":"new_media","type":"InputMedia","comment":"The new photo/video preview, uploaded using {@link messages.RawUploadMediaRequest}."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.deletePreviewMedia","type":"Bool","id":755054003,"comment":"Delete a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."},{"name":"lang_code","type":"string","comment":"ISO 639-1 language code, indicating the localization of the preview to delete."},{"name":"media","type":"InputMedia","typeModifiers":{"isVector":true},"comment":"The photo/video preview to delete, previously fetched as specified here »."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.reorderPreviewMedias","type":"Bool","id":3056071594,"comment":"Reorder a main mini app previews, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."},{"name":"lang_code","type":"string","comment":"ISO 639-1 language code, indicating the localization of the previews to reorder."},{"name":"order","type":"InputMedia","typeModifiers":{"isVector":true},"comment":"New order of the previews."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.getPreviewInfo","type":"bots.PreviewInfo","typeModifiers":{"constructorId":212278628},"id":1111143341,"comment":"Bot owners only, fetch main mini app preview information, see here » for more info.\n\nNote: technically non-owners may also invoke this method, but it will always behave exactly as {@link bots.RawGetPreviewMediasRequest}, returning only previews for the current language and an empty lang_codes array, regardless of the passed lang_code, so please only use {@link bots.RawGetPreviewMediasRequest} if you're not the owner of the bot.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."},{"name":"lang_code","type":"string","comment":"Fetch previews for the specified ISO 639-1 language code."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.getPreviewMedias","type":"BotPreviewMedia","typeModifiers":{"isVector":true,"constructorId":602479523},"id":2728745293,"comment":"Fetch main mini app previews, see here » for more info.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"payments.getPaymentForm","type":"payments.PaymentForm","id":924093883,"comment":"Get a payment form","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"invoice","type":"InputInvoice","comment":"Invoice"},{"name":"theme_params","type":"DataJSON","typeModifiers":{"predicate":"flags.0"},"comment":"A JSON object with the following keys, containing color theme information (integers, RGB24) to pass to the payment provider, to apply in eventual verification pages:
bg_color - Background color
text_color - Text color
hint_color - Hint text color
link_color - Link color
button_color - Button color
button_text_color - Button text color"}],"throws":[{"code":400,"name":"BOOST_PEER_INVALID","comment":"The specified boost_peer is invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SLUG_INVALID","comment":"The specified invoice slug is invalid."},{"code":400,"name":"UNTIL_DATE_INVALID","comment":"Invalid until date provided."}],"available":"user"},{"kind":"method","name":"payments.getPaymentReceipt","type":"payments.PaymentReceipt","id":611897804,"comment":"Get payment receipt","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer where the payment receipt was sent"},{"name":"msg_id","type":"int","comment":"Message ID of receipt"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."}],"available":"user"},{"kind":"method","name":"payments.validateRequestedInfo","type":"payments.ValidatedRequestedInfo","typeModifiers":{"constructorId":3510966403},"id":3066622251,"comment":"Submit requested order information for validation","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"save","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Save order information to re-use it for future orders"},{"name":"invoice","type":"InputInvoice","comment":"Invoice"},{"name":"info","type":"PaymentRequestedInfo","comment":"Requested order information"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.sendPaymentForm","type":"payments.PaymentResult","id":755192367,"comment":"Send compiled payment form","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"form_id","type":"long","comment":"Form ID"},{"name":"invoice","type":"InputInvoice","comment":"Invoice"},{"name":"requested_info_id","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"ID of saved and validated {@link payments.RawValidatedRequestedInfo}"},{"name":"shipping_option_id","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Chosen shipping option ID"},{"name":"credentials","type":"InputPaymentCredentials","comment":"Payment credentials"},{"name":"tip_amount","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"Tip, in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getSavedInfo","type":"payments.SavedInfo","typeModifiers":{"constructorId":4220511292},"id":578650699,"comment":"Get saved payment information","arguments":[],"available":"user"},{"kind":"method","name":"payments.clearSavedInfo","type":"Bool","id":3627905217,"comment":"Clear saved payment information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"credentials","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Remove saved payment credentials"},{"name":"info","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Clear the last order settings saved by the user"}],"available":"user"},{"kind":"method","name":"payments.getBankCardData","type":"payments.BankCardData","typeModifiers":{"constructorId":1042605427},"id":779736953,"comment":"Get info about a credit card","arguments":[{"name":"number","type":"string","comment":"Credit card number"}],"throws":[{"code":400,"name":"BANK_CARD_NUMBER_INVALID","comment":"The specified card number is invalid."}],"available":"user"},{"kind":"method","name":"payments.exportInvoice","type":"payments.ExportedInvoice","typeModifiers":{"constructorId":2932919257},"id":261206117,"comment":"Generate an invoice deep link","arguments":[{"name":"invoice_media","type":"InputMedia","comment":"Invoice"}],"throws":[{"code":400,"name":"CURRENCY_TOTAL_AMOUNT_INVALID","comment":"The total amount of all prices is invalid."},{"code":400,"name":"INVOICE_PAYLOAD_INVALID","comment":"The specified invoice payload is invalid."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"PAYMENT_PROVIDER_INVALID","comment":"The specified payment provider is invalid."}],"available":"both"},{"kind":"method","name":"payments.assignAppStoreTransaction","type":"Updates","id":2163045501,"comment":"Informs server about a purchase made through the App Store: for official applications only.","arguments":[{"name":"receipt","type":"bytes","comment":"Receipt"},{"name":"purpose","type":"InputStorePaymentPurpose","comment":"Payment purpose"}],"throws":[{"code":400,"name":"RECEIPT_EMPTY","comment":"The specified receipt is empty."}],"available":"user"},{"kind":"method","name":"payments.assignPlayMarketTransaction","type":"Updates","id":3757920467,"comment":"Informs server about a purchase made through the Play Store: for official applications only.","arguments":[{"name":"receipt","type":"DataJSON","comment":"Receipt"},{"name":"purpose","type":"InputStorePaymentPurpose","comment":"Payment purpose"}],"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},{"kind":"method","name":"payments.canPurchasePremium","type":"Bool","id":2680266422,"comment":"Checks whether Telegram Premium purchase is possible. Must be called before in-store Premium purchase, official apps only.","arguments":[{"name":"purpose","type":"InputStorePaymentPurpose","comment":"Payment purpose"}],"throws":[{"code":406,"name":"PREMIUM_CURRENTLY_UNAVAILABLE","comment":"You cannot currently purchase a Premium subscription."}],"available":"user"},{"kind":"method","name":"payments.getPremiumGiftCodeOptions","type":"PremiumGiftCodeOption","typeModifiers":{"isVector":true,"constructorId":629052971},"id":660060756,"comment":"Obtain a list of Telegram Premium giveaway/gift code » options.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"boost_peer","type":"InputPeer","typeModifiers":{"predicate":"flags.0"},"comment":"The channel that will start the giveaway"}],"available":"user"},{"kind":"method","name":"payments.checkGiftCode","type":"payments.CheckedGiftCode","typeModifiers":{"constructorId":675942550},"id":2387719361,"comment":"Obtain information about a Telegram Premium giftcode »","arguments":[{"name":"slug","type":"string","comment":"The giftcode to check"}],"throws":[{"code":400,"name":"GIFT_SLUG_EXPIRED","comment":"The specified gift slug has expired."},{"code":400,"name":"GIFT_SLUG_INVALID","comment":"The specified slug is invalid."}],"available":"user"},{"kind":"method","name":"payments.applyGiftCode","type":"Updates","id":4142032980,"comment":"Apply a Telegram Premium giftcode »","arguments":[{"name":"slug","type":"string","comment":"The code to apply"}],"throws":[{"code":400,"name":"GIFT_SLUG_EXPIRED","comment":"The specified gift slug has expired."},{"code":400,"name":"GIFT_SLUG_INVALID","comment":"The specified slug is invalid."},{"code":420,"name":"PREMIUM_SUB_ACTIVE_UNTIL_%d","comment":"You already have a premium subscription active until unixtime %d ."}],"available":"user"},{"kind":"method","name":"payments.getGiveawayInfo","type":"payments.GiveawayInfo","id":4095972389,"comment":"Obtain information about a Telegram Premium giveaway ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer where the giveaway was posted."},{"name":"msg_id","type":"int","comment":"Message ID of the {@link RawMessageActionGiveawayLaunch} service message"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.launchPrepaidGiveaway","type":"Updates","id":1609928480,"comment":"Launch a prepaid giveaway ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer where to launch the giveaway."},{"name":"giveaway_id","type":"long","comment":"The prepaid giveaway ID."},{"name":"purpose","type":"InputStorePaymentPurpose","comment":"Giveway parameters"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getStarsTopupOptions","type":"StarsTopupOption","typeModifiers":{"isVector":true,"constructorId":198776256},"id":3222194131,"comment":"Obtain a list of Telegram Stars topup options » as {@link RawStarsTopupOption} constructors.","arguments":[],"available":"user"},{"kind":"method","name":"payments.getStarsStatus","type":"payments.StarsStatus","typeModifiers":{"constructorId":3153736044},"id":273665959,"comment":"Get the current Telegram Stars balance of the current account (with peer={@link RawInputPeerSelf}), or the stars balance of the bot specified in peer.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer of which to get the balance."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getStarsTransactions","id":1775912279,"type":"payments.StarsStatus","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inbound","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, fetches only incoming transactions."},{"name":"outbound","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, fetches only outgoing transactions."},{"name":"ascending","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Return transactions in ascending order by date (instead of descending order by date)."},{"name":"subscription_id","type":"string","typeModifiers":{"predicate":"flags.3"}},{"name":"peer","type":"InputPeer","comment":"Fetch the transaction history of the peer ({@link RawInputPeerSelf} or a bot we own)."},{"name":"offset","type":"string","comment":"Offset for pagination, obtained from the returned next_offset, initially an empty string »."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"typeModifiers":{"constructorId":3153736044},"comment":"Fetch Telegram Stars transactions.\n\nThe inbound and outbound flags are mutually exclusive: if none of the two are set, both incoming and outgoing transactions are fetched.","throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"payments.sendStarsForm","id":2040056084,"type":"payments.PaymentResult","arguments":[{"name":"form_id","type":"long","comment":"Payment form ID"},{"name":"invoice","type":"InputInvoice","comment":"Invoice"}],"comment":"Make a payment using Telegram Stars, see here » for more info.","throws":[{"code":400,"name":"BALANCE_TOO_LOW","comment":"The transaction cannot be completed because the current Telegram Stars balance is too low."},{"code":400,"name":"FORM_EXPIRED","comment":"The form was generated more than 10 minutes ago and has expired, please re-generate it using {@link payments.RawGetPaymentFormRequest} and pass the new form_id."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.refundStarsCharge","type":"Updates","id":632196938,"comment":"Refund a Telegram Stars transaction, see here » for more info.","arguments":[{"name":"user_id","type":"InputUser","comment":"User to refund."},{"name":"charge_id","type":"string","comment":"Transaction ID."}],"throws":[{"code":400,"name":"CHARGE_ALREADY_REFUNDED","comment":"The transaction was already refunded."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"bot"},{"kind":"method","name":"payments.getStarsRevenueStats","type":"payments.StarsRevenueStats","typeModifiers":{"constructorId":3375085371},"id":3642751702,"comment":"Get Telegram Star revenue statistics ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable dark theme for graph colors"},{"name":"peer","type":"InputPeer","comment":"Get statistics for the specified bot, channel or ourselves ({@link RawInputPeerSelf})."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getStarsRevenueWithdrawalUrl","type":"payments.StarsRevenueWithdrawalUrl","typeModifiers":{"constructorId":497778871},"id":331081907,"comment":"Withdraw funds from a channel or bot's star balance ».","arguments":[{"name":"peer","type":"InputPeer","comment":"Channel or bot from which to withdraw funds."},{"name":"stars","type":"long","comment":"Amount of stars to withdraw."},{"name":"password","type":"InputCheckPasswordSRP","comment":"2FA password, see here » for more info."}],"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PASSWORD_TOO_FRESH_%d","comment":"The password was modified less than 24 hours ago, try again in %d seconds."}],"available":"user"},{"kind":"method","name":"payments.getStarsRevenueAdsAccountUrl","type":"payments.StarsRevenueAdsAccountUrl","typeModifiers":{"constructorId":961445665},"id":3520589765,"comment":"Returns a URL for a Telegram Ad platform account that can be used to set up advertisements for channel/bot in peer, paid using the Telegram Stars owned by the specified peer, see here » for more info.","arguments":[{"name":"peer","type":"InputPeer","comment":"Channel or bot that owns the stars."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getStarsTransactionsByID","type":"payments.StarsStatus","typeModifiers":{"constructorId":3153736044},"id":662973742,"comment":"Obtain info about Telegram Star transactions » using specific transaction IDs.","arguments":[{"name":"peer","type":"InputPeer","comment":"Channel or bot."},{"name":"id","type":"InputStarsTransaction","typeModifiers":{"isVector":true},"comment":"Transaction IDs."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getStarsGiftOptions","type":"StarsGiftOption","typeModifiers":{"isVector":true,"constructorId":1577421297},"id":3553192904,"comment":"Obtain a list of Telegram Stars gift options » as {@link RawStarsGiftOption} constructors.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"user_id","type":"InputUser","typeModifiers":{"predicate":"flags.0"},"comment":"Receiver of the gift (optional)."}],"available":"user"},{"kind":"method","name":"payments.getStarsSubscriptions","type":"payments.StarsStatus","typeModifiers":{"constructorId":3153736044},"id":52761285,"arguments":[{"name":"flags","type":"#"},{"name":"missing_balance","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"peer","type":"InputPeer"},{"name":"offset","type":"string"}]},{"kind":"method","name":"payments.changeStarsSubscription","type":"Bool","id":3346466936,"arguments":[{"name":"flags","type":"#"},{"name":"peer","type":"InputPeer"},{"name":"subscription_id","type":"string"},{"name":"canceled","type":"Bool","typeModifiers":{"predicate":"flags.0"}}]},{"kind":"method","name":"payments.fulfillStarsSubscription","type":"Bool","id":3428576179,"arguments":[{"name":"peer","type":"InputPeer"},{"name":"subscription_id","type":"string"}]},{"kind":"method","name":"payments.getStarsGiveawayOptions","type":"StarsGiveawayOption","typeModifiers":{"isVector":true,"constructorId":2496562474},"id":3172924734,"arguments":[]},{"kind":"method","name":"payments.getStarGifts","id":3293984144,"type":"payments.StarGifts","arguments":[{"name":"hash","type":"int"}]},{"kind":"method","name":"payments.getUserStarGifts","id":1584580577,"type":"payments.UserStarGifts","arguments":[{"name":"user_id","type":"InputUser"},{"name":"offset","type":"string"},{"name":"limit","type":"int"}],"typeModifiers":{"constructorId":1801827607}},{"kind":"method","name":"payments.saveStarGift","id":2276257934,"type":"Bool","arguments":[{"name":"flags","type":"#"},{"name":"unsave","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"user_id","type":"InputUser"},{"name":"msg_id","type":"int"}]},{"kind":"method","name":"payments.convertStarGift","id":69328935,"type":"Bool","arguments":[{"name":"user_id","type":"InputUser"},{"name":"msg_id","type":"int"}]},{"kind":"method","name":"stickers.createStickerSet","type":"messages.StickerSet","id":2418125671,"comment":"Create a stickerset.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a mask stickerset"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this is a custom emoji stickerset."},{"name":"text_color","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether the color of TGS custom emojis contained in this set should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context. For custom emoji stickersets only."},{"name":"user_id","type":"InputUser","comment":"Stickerset owner"},{"name":"title","type":"string","comment":"Stickerset name, 1-64 chars"},{"name":"short_name","type":"string","comment":"Short name of sticker set, to be used in sticker deep links ». Can contain only english letters, digits and underscores. Must begin with a letter, can't contain consecutive underscores and, if called by a bot, must end in \"_by_\". is case insensitive. 1-64 characters."},{"name":"thumb","type":"InputDocument","typeModifiers":{"predicate":"flags.2"},"comment":"Thumbnail"},{"name":"stickers","type":"InputStickerSetItem","typeModifiers":{"isVector":true},"comment":"Stickers"},{"name":"software","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Used when importing stickers using the sticker import SDKs, specifies the name of the software that created the stickers"}],"throws":[{"code":400,"name":"PACK_SHORT_NAME_INVALID","comment":"Short pack name invalid."},{"code":400,"name":"PACK_SHORT_NAME_OCCUPIED","comment":"A stickerpack with this name already exists."},{"code":400,"name":"PACK_TITLE_INVALID","comment":"The stickerpack title is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STICKERS_EMPTY","comment":"No sticker provided."},{"code":400,"name":"STICKER_EMOJI_INVALID","comment":"Sticker emoji invalid."},{"code":400,"name":"STICKER_FILE_INVALID","comment":"Sticker file invalid."},{"code":400,"name":"STICKER_GIF_DIMENSIONS","comment":"The specified video sticker has invalid dimensions."},{"code":400,"name":"STICKER_PNG_DIMENSIONS","comment":"Sticker png dimensions invalid."},{"code":400,"name":"STICKER_PNG_NOPNG","comment":"One of the specified stickers is not a valid PNG file."},{"code":400,"name":"STICKER_TGS_NODOC","comment":"You must send the animated sticker as a document."},{"code":400,"name":"STICKER_TGS_NOTGS","comment":"Invalid TGS sticker provided."},{"code":400,"name":"STICKER_THUMB_PNG_NOPNG","comment":"Incorrect stickerset thumb file provided, PNG / WEBP expected."},{"code":400,"name":"STICKER_THUMB_TGS_NOTGS","comment":"Incorrect stickerset TGS thumb file provided."},{"code":400,"name":"STICKER_VIDEO_BIG","comment":"The specified video sticker is too big."},{"code":400,"name":"STICKER_VIDEO_NODOC","comment":"You must send the video sticker as a document."},{"code":400,"name":"STICKER_VIDEO_NOWEBM","comment":"The specified video sticker is not in webm format."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"stickers.removeStickerFromSet","type":"messages.StickerSet","id":4151709521,"comment":"Remove a sticker from the set where it belongs. The sticker set must have been created by the current user/bot.","arguments":[{"name":"sticker","type":"InputDocument","comment":"The sticker to remove"}],"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},{"kind":"method","name":"stickers.changeStickerPosition","type":"messages.StickerSet","id":4290172106,"comment":"Changes the absolute position of a sticker in the set to which it belongs. The sticker set must have been created by the current user/bot.","arguments":[{"name":"sticker","type":"InputDocument","comment":"The sticker"},{"name":"position","type":"int","comment":"The new position of the sticker, zero-based"}],"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},{"kind":"method","name":"stickers.addStickerToSet","type":"messages.StickerSet","id":2253651646,"comment":"Add a sticker to a stickerset. The sticker set must have been created by the current user/bot.","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"The stickerset"},{"name":"sticker","type":"InputStickerSetItem","comment":"The sticker"}],"throws":[{"code":400,"name":"STICKERPACK_STICKERS_TOO_MUCH","comment":"There are too many stickers in this stickerpack, you can't add any more."},{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."},{"code":400,"name":"STICKERS_TOO_MUCH","comment":"There are too many stickers in this stickerpack, you can't add any more."},{"code":400,"name":"STICKER_PNG_NOPNG","comment":"One of the specified stickers is not a valid PNG file."},{"code":400,"name":"STICKER_TGS_NOTGS","comment":"Invalid TGS sticker provided."}],"available":"both"},{"kind":"method","name":"stickers.setStickerSetThumb","type":"messages.StickerSet","id":2808763282,"comment":"Set stickerset thumbnail","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset"},{"name":"thumb","type":"InputDocument","typeModifiers":{"predicate":"flags.0"},"comment":"Thumbnail (only for normal stickersets, not custom emoji stickersets)."},{"name":"thumb_document_id","type":"long","typeModifiers":{"predicate":"flags.1"},"comment":"Only for custom emoji stickersets, ID of a custom emoji present in the set to use as thumbnail; pass 0 to fallback to the first custom emoji of the set."}],"throws":[{"code":400,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."},{"code":400,"name":"STICKER_THUMB_PNG_NOPNG","comment":"Incorrect stickerset thumb file provided, PNG / WEBP expected."},{"code":400,"name":"STICKER_THUMB_TGS_NOTGS","comment":"Incorrect stickerset TGS thumb file provided."}],"available":"both"},{"kind":"method","name":"stickers.checkShortName","type":"Bool","id":676017721,"comment":"Check whether the given short name is available","arguments":[{"name":"short_name","type":"string","comment":"Short name"}],"throws":[{"code":400,"name":"SHORT_NAME_INVALID","comment":"The specified short name is invalid."},{"code":400,"name":"SHORT_NAME_OCCUPIED","comment":"The specified short name is already in use."}],"available":"user"},{"kind":"method","name":"stickers.suggestShortName","type":"stickers.SuggestedShortName","typeModifiers":{"constructorId":2248056895},"id":1303364867,"comment":"Suggests a short name for a given stickerpack name","arguments":[{"name":"title","type":"string","comment":"Sticker pack name"}],"throws":[{"code":400,"name":"TITLE_INVALID","comment":"The specified stickerpack title is invalid."}],"available":"user"},{"kind":"method","name":"stickers.changeSticker","type":"messages.StickerSet","id":4115889852,"comment":"Update the keywords, emojis or mask coordinates of a sticker.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"sticker","type":"InputDocument","comment":"The sticker"},{"name":"emoji","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If set, updates the emoji list associated to the sticker"},{"name":"mask_coords","type":"MaskCoords","typeModifiers":{"predicate":"flags.1"},"comment":"If set, updates the mask coordinates"},{"name":"keywords","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"If set, updates the sticker keywords (separated by commas). Can't be provided for mask stickers."}],"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},{"kind":"method","name":"stickers.renameStickerSet","type":"messages.StickerSet","id":306912256,"comment":"Renames a stickerset.","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset to rename"},{"name":"title","type":"string","comment":"New stickerset title"}],"throws":[{"code":400,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"both"},{"kind":"method","name":"stickers.deleteStickerSet","type":"Bool","id":2272281492,"comment":"Deletes a stickerset we created.","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset to delete"}],"throws":[{"code":400,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"both"},{"kind":"method","name":"stickers.replaceSticker","type":"messages.StickerSet","id":1184253338,"comment":"Replace a sticker in a stickerset ».","arguments":[{"name":"sticker","type":"InputDocument","comment":"Old sticker document."},{"name":"new_sticker","type":"InputStickerSetItem","comment":"New sticker."}],"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},{"kind":"method","name":"phone.getCallConfig","type":"DataJSON","typeModifiers":{"constructorId":2104790276},"id":1430593449,"comment":"Get phone call configuration to be passed to libtgvoip's shared config","arguments":[],"available":"user"},{"kind":"method","name":"phone.requestCall","type":"phone.PhoneCall","typeModifiers":{"constructorId":3968000320},"id":1124046573,"comment":"Start a telegram phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to start a video call"},{"name":"user_id","type":"InputUser","comment":"Destination of the phone call"},{"name":"random_id","type":"int","comment":"Random ID to avoid resending the same object"},{"name":"g_a_hash","type":"bytes","comment":"Parameter for E2E encryption key exchange »"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Phone call settings"}],"throws":[{"code":400,"name":"CALL_PROTOCOL_FLAGS_INVALID","comment":"Call protocol flags invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"PARTICIPANT_VERSION_OUTDATED","comment":"The other participant does not use an up to date telegram client with support for calls."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."}],"available":"user"},{"kind":"method","name":"phone.acceptCall","type":"phone.PhoneCall","typeModifiers":{"constructorId":3968000320},"id":1003664544,"comment":"Accept incoming call","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"The call to accept"},{"name":"g_b","type":"bytes","comment":"Parameter for E2E encryption key exchange »"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Phone call settings"}],"throws":[{"code":400,"name":"CALL_ALREADY_ACCEPTED","comment":"The call was already accepted."},{"code":400,"name":"CALL_ALREADY_DECLINED","comment":"The call was already declined."},{"code":500,"name":"CALL_OCCUPY_FAILED","comment":"The call failed because the user is already making another call."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."},{"code":406,"name":"CALL_PROTOCOL_COMPAT_LAYER_INVALID","comment":"The other side of the call does not support any of the VoIP protocols supported by the local client, as specified by the protocol.layer and protocol.library_versions fields."},{"code":400,"name":"CALL_PROTOCOL_FLAGS_INVALID","comment":"Call protocol flags invalid."}],"available":"user"},{"kind":"method","name":"phone.confirmCall","type":"phone.PhoneCall","typeModifiers":{"constructorId":3968000320},"id":788404002,"comment":"Complete phone call E2E encryption key exchange »","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"The phone call"},{"name":"g_a","type":"bytes","comment":"Parameter for E2E encryption key exchange »"},{"name":"key_fingerprint","type":"long","comment":"Key fingerprint"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Phone call settings"}],"throws":[{"code":400,"name":"CALL_ALREADY_DECLINED","comment":"The call was already declined."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"phone.receivedCall","type":"Bool","id":399855457,"comment":"Optional: notify the server that the user is currently busy in a call: this will automatically refuse all incoming phone calls until the current phone call is ended.","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"The phone call we're currently in"}],"throws":[{"code":400,"name":"CALL_ALREADY_DECLINED","comment":"The call was already declined."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"phone.discardCall","type":"Updates","id":2999697856,"comment":"Refuse or end running call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a video call"},{"name":"peer","type":"InputPhoneCall","comment":"The phone call"},{"name":"duration","type":"int","comment":"Call duration"},{"name":"reason","type":"PhoneCallDiscardReason","comment":"Why was the call discarded"},{"name":"connection_id","type":"long","comment":"Preferred libtgvoip relay ID"}],"throws":[{"code":400,"name":"CALL_ALREADY_ACCEPTED","comment":"The call was already accepted."},{"code":500,"name":"CALL_OCCUPY_FAILED","comment":"The call failed because the user is already making another call."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"phone.setCallRating","type":"Updates","id":1508562471,"comment":"Rate a call, returns info about the rating message sent to the official VoIP bot.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"user_initiative","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user decided on their own initiative to rate the call"},{"name":"peer","type":"InputPhoneCall","comment":"The call to rate"},{"name":"rating","type":"int","comment":"Rating in 1-5 stars"},{"name":"comment","type":"string","comment":"An additional comment"}],"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"phone.saveCallDebug","type":"Bool","id":662363518,"comment":"Send phone call debug data to server","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"Phone call"},{"name":"debug","type":"DataJSON","comment":"Debug statistics obtained from libtgvoip"}],"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."},{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},{"kind":"method","name":"phone.sendSignalingData","type":"Bool","id":4286223235,"comment":"Send VoIP signaling data","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"Phone call"},{"name":"data","type":"bytes","comment":"Signaling payload"}],"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"phone.createGroupCall","type":"Updates","id":1221445336,"comment":"Create a group call or livestream","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"rtmp_stream","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether RTMP stream support should be enabled: only the group/supergroup/channel owner can use this flag."},{"name":"peer","type":"InputPeer","comment":"Associate the group call or livestream to the provided group/supergroup/channel"},{"name":"random_id","type":"int","comment":"Unique client message ID required to prevent creation of duplicate group calls"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Call title"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For scheduled group call or livestreams, the absolute date when the group call will start"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CREATE_CALL_FAILED","comment":"An error occurred while creating the call."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SCHEDULE_DATE_INVALID","comment":"Invalid schedule date provided."}],"available":"user"},{"kind":"method","name":"phone.joinGroupCall","type":"Updates","id":2972909435,"comment":"Join a group call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"muted","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the user will be muted by default upon joining."},{"name":"video_stopped","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the user's video will be disabled by default upon joining."},{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"join_as","type":"InputPeer","comment":"Join the group call, presenting yourself as the specified user/channel"},{"name":"invite_hash","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"The invitation hash from the invite link », if provided allows speaking in a livestream or muted group chat."},{"name":"params","type":"DataJSON","comment":"WebRTC parameters"}],"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."},{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_SSRC_DUPLICATE_MUCH","comment":"The app needs to retry joining the group call with a new SSRC value."},{"code":400,"name":"JOIN_AS_PEER_INVALID","comment":"The specified peer cannot be used to join a group call."}],"available":"user"},{"kind":"method","name":"phone.leaveGroupCall","type":"Updates","id":1342404601,"comment":"Leave a group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"source","type":"int","comment":"Your source ID"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.inviteToGroupCall","type":"Updates","id":2067345760,"comment":"Invite a set of users to a group call.","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"The users to invite."}],"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"INVITE_FORBIDDEN_WITH_JOINAS","comment":"If the user has anonymously joined a group call as a channel, they can't invite other users to the group call because that would cause deanonymization, because the invite would be sent using the original user ID, not the anonymized channel ID."},{"code":400,"name":"USER_ALREADY_INVITED","comment":"You have already invited this user."},{"code":403,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"user"},{"kind":"method","name":"phone.discardGroupCall","type":"Updates","id":2054648117,"comment":"Terminate a group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call to terminate"}],"throws":[{"code":400,"name":"GROUPCALL_ALREADY_DISCARDED","comment":"The group call was already discarded."},{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.toggleGroupCallSettings","type":"Updates","id":1958458429,"comment":"Change group call settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reset_invite_hash","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Invalidate existing invite links"},{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"join_muted","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"Whether all users will that join this group call are muted by default upon joining the group call"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_NOT_MODIFIED","comment":"Group call settings weren't modified."}],"available":"user"},{"kind":"method","name":"phone.getGroupCall","type":"phone.GroupCall","typeModifiers":{"constructorId":2658302637},"id":68699611,"comment":"Get info about a group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.getGroupParticipants","type":"phone.GroupParticipants","typeModifiers":{"constructorId":4101460406},"id":3310934187,"comment":"Get group call participants","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"ids","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"If specified, will fetch group participant info about the specified peers"},{"name":"sources","type":"int","typeModifiers":{"isVector":true},"comment":"If specified, will fetch group participant info about the specified WebRTC source IDs"},{"name":"offset","type":"string","comment":"Offset for results, taken from the next_offset field of {@link phone.RawGroupParticipants}, initially an empty string.
Note: if no more results are available, the method call will return an empty next_offset; thus, avoid providing the next_offset returned in {@link phone.RawGroupParticipants} if it is empty, to avoid an infinite loop."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.checkGroupCall","type":"int","typeModifiers":{"isVector":true},"id":3046963575,"comment":"Check whether the group call Server Forwarding Unit is currently receiving the streams with the specified WebRTC source IDs.
\nReturns an intersection of the source IDs specified in sources, and the source IDs currently being forwarded by the SFU.","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"sources","type":"int","typeModifiers":{"isVector":true},"comment":"Source IDs"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_JOIN_MISSING","comment":"You haven't joined this group call."}],"available":"user"},{"kind":"method","name":"phone.toggleGroupCallRecord","type":"Updates","id":4045981448,"comment":"Start or stop recording a group call: the recorded audio and video streams will be automatically sent to Saved messages (the chat with ourselves).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"start","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to start or stop recording"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to also record video streams"},{"name":"call","type":"InputGroupCall","comment":"The group call or livestream"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Recording title"},{"name":"video_portrait","type":"Bool","typeModifiers":{"predicate":"flags.2"},"comment":"If video stream recording is enabled, whether to record in portrait or landscape mode"}],"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_NOT_MODIFIED","comment":"Group call settings weren't modified."}],"available":"user"},{"kind":"method","name":"phone.editGroupCallParticipant","type":"Updates","id":2770811583,"comment":"Edit information about a given group call participant\n\nNote: flags.N?Bool parameters can have three possible values:","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"participant","type":"InputPeer","comment":"The group call participant (can also be the user itself)"},{"name":"muted","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to mute or unmute the specified participant"},{"name":"volume","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"New volume"},{"name":"raise_hand","type":"Bool","typeModifiers":{"predicate":"flags.2"},"comment":"Raise or lower hand"},{"name":"video_stopped","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"Start or stop the video stream"},{"name":"video_paused","type":"Bool","typeModifiers":{"predicate":"flags.4"},"comment":"Pause or resume the video stream"},{"name":"presentation_paused","type":"Bool","typeModifiers":{"predicate":"flags.5"},"comment":"Pause or resume the screen sharing stream"}],"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"PARTICIPANT_JOIN_MISSING","comment":"Trying to enable a presentation, when the user hasn't joined the Video Chat with {@link phone.RawJoinGroupCallRequest}."},{"code":400,"name":"RAISE_HAND_FORBIDDEN","comment":"You cannot raise your hand."},{"code":400,"name":"USER_VOLUME_INVALID","comment":"The specified user volume is invalid."},{"code":400,"name":"VIDEO_PAUSE_FORBIDDEN","comment":"You cannot pause the video stream."},{"code":400,"name":"VIDEO_STOP_FORBIDDEN","comment":"You cannot stop the video stream."}],"available":"user"},{"kind":"method","name":"phone.editGroupCallTitle","type":"Updates","id":480685066,"comment":"Edit the title of a group call or livestream","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"title","type":"string","comment":"New title"}],"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.getGroupCallJoinAs","type":"phone.JoinAsPeers","typeModifiers":{"constructorId":2951045695},"id":4017889594,"comment":"Get a list of peers that can be used to join a group call, presenting yourself as a specific user/channel.","arguments":[{"name":"peer","type":"InputPeer","comment":"The dialog whose group call or livestream we're trying to join"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"phone.exportGroupCallInvite","type":"phone.ExportedGroupCallInvite","typeModifiers":{"constructorId":541839704},"id":3869926527,"comment":"Get an invite link for a group call or livestream","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_self_unmute","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"For livestreams or muted group chats, if set, users that join using this link will be able to speak without explicitly requesting permission by (for example by raising their hand)."},{"name":"call","type":"InputGroupCall","comment":"The group call"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":403,"name":"PUBLIC_CHANNEL_MISSING","comment":"You can only export group call invite links for public chats or channels."}],"available":"user"},{"kind":"method","name":"phone.toggleGroupCallStartSubscription","type":"Updates","id":563885286,"comment":"Subscribe or unsubscribe to a scheduled group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"Scheduled group call"},{"name":"subscribed","type":"Bool","comment":"Enable or disable subscription"}],"throws":[{"code":403,"name":"GROUPCALL_ALREADY_STARTED","comment":"The groupcall has already started, you can join directly using {@link phone.RawJoinGroupCallRequest}."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.startScheduledGroupCall","type":"Updates","id":1451287362,"comment":"Start a scheduled group call.","arguments":[{"name":"call","type":"InputGroupCall","comment":"The scheduled group call"}],"throws":[{"code":403,"name":"GROUPCALL_ALREADY_STARTED","comment":"The groupcall has already started, you can join directly using {@link phone.RawJoinGroupCallRequest}."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.saveDefaultGroupCallJoinAs","type":"Bool","id":1465786252,"comment":"Set the default peer that will be used to join a group call in a specific dialog.","arguments":[{"name":"peer","type":"InputPeer","comment":"The dialog"},{"name":"join_as","type":"InputPeer","comment":"The default peer that will be used to join group calls in this dialog, presenting yourself as a specific user/channel."}],"throws":[{"code":400,"name":"JOIN_AS_PEER_INVALID","comment":"The specified peer cannot be used to join a group call."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"phone.joinGroupCallPresentation","type":"Updates","id":3421137860,"comment":"Start screen sharing in a call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"params","type":"DataJSON","comment":"WebRTC parameters"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":403,"name":"PARTICIPANT_JOIN_MISSING","comment":"Trying to enable a presentation, when the user hasn't joined the Video Chat with {@link phone.RawJoinGroupCallRequest}."}],"available":"user"},{"kind":"method","name":"phone.leaveGroupCallPresentation","type":"Updates","id":475058500,"comment":"Stop screen sharing in a group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.getGroupCallStreamChannels","type":"phone.GroupCallStreamChannels","typeModifiers":{"constructorId":3504636594},"id":447879488,"comment":"Get info about RTMP streams in a group call or livestream.
\nThis method should be invoked to the same group/channel-related DC used for downloading livestream chunks.
\nAs usual, the media DC is preferred, if available.","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call or livestream"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_JOIN_MISSING","comment":"You haven't joined this group call."}],"available":"user"},{"kind":"method","name":"phone.getGroupCallStreamRtmpUrl","type":"phone.GroupCallStreamRtmpUrl","typeModifiers":{"constructorId":767505458},"id":3736316863,"comment":"Get RTMP URL and stream key for RTMP livestreams. Can be used even before creating the actual RTMP livestream with {@link phone.RawCreateGroupCallRequest} (the rtmp_stream flag must be set).","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer to livestream into"},{"name":"revoke","type":"Bool","comment":"Whether to revoke the previous stream key or simply return the existing one"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"phone.saveCallLog","type":"Bool","id":1092913030,"comment":"Save phone call debug information","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"Phone call"},{"name":"file","type":"InputFile","comment":"Logs"}],"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"langpack.getLangPack","type":"LangPackDifference","typeModifiers":{"constructorId":4085629430},"id":4075959050,"comment":"Get localization pack strings","arguments":[{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."},{"name":"lang_code","type":"string","comment":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."}],"throws":[{"code":400,"name":"LANGUAGE_INVALID","comment":"The specified lang_code is invalid."},{"code":400,"name":"LANG_CODE_NOT_SUPPORTED","comment":"The specified language code is not supported."},{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},{"kind":"method","name":"langpack.getStrings","type":"LangPackString","typeModifiers":{"isVector":true},"id":4025104387,"comment":"Get strings from a language pack","arguments":[{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."},{"name":"lang_code","type":"string","comment":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."},{"name":"keys","type":"string","typeModifiers":{"isVector":true},"comment":"Strings to get"}],"throws":[{"code":400,"name":"LANG_CODE_NOT_SUPPORTED","comment":"The specified language code is not supported."},{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},{"kind":"method","name":"langpack.getDifference","type":"LangPackDifference","typeModifiers":{"constructorId":4085629430},"id":3449309861,"comment":"Get new strings in language pack","arguments":[{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."},{"name":"lang_code","type":"string","comment":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."},{"name":"from_version","type":"int","comment":"Previous localization pack version"}],"throws":[{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},{"kind":"method","name":"langpack.getLanguages","type":"LangPackLanguage","typeModifiers":{"isVector":true,"constructorId":4006239459},"id":1120311183,"comment":"Get information about all languages in a localization pack","arguments":[{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."}],"throws":[{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},{"kind":"method","name":"langpack.getLanguage","type":"LangPackLanguage","typeModifiers":{"constructorId":4006239459},"id":1784243458,"comment":"Get information about a language in a localization pack","arguments":[{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."},{"name":"lang_code","type":"string","comment":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."}],"throws":[{"code":400,"name":"LANG_CODE_NOT_SUPPORTED","comment":"The specified language code is not supported."},{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},{"kind":"method","name":"folders.editPeerFolders","type":"Updates","id":1749536939,"comment":"Edit peers in peer folder","arguments":[{"name":"folder_peers","type":"InputFolderPeer","typeModifiers":{"isVector":true},"comment":"New peer list"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."}],"available":"user"},{"kind":"method","name":"stats.getBroadcastStats","type":"stats.BroadcastStats","typeModifiers":{"constructorId":963421692},"id":2873246746,"comment":"Get channel statistics","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable dark theme for graph colors"},{"name":"channel","type":"InputChannel","comment":"The channel"}],"throws":[{"code":400,"name":"BROADCAST_REQUIRED","comment":"This method can only be called on a channel, please use stats.getMegagroupStats for supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."}],"available":"user"},{"kind":"method","name":"stats.loadAsyncGraph","type":"StatsGraph","id":1646092192,"comment":"Load channel statistics graph asynchronously","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"token","type":"string","comment":"Graph token from {@link RawStatsGraphAsync} constructor"},{"name":"x","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"Zoom value, if required"}],"throws":[{"code":400,"name":"GRAPH_EXPIRED_RELOAD","comment":"This graph has expired, please obtain a new graph token."},{"code":400,"name":"GRAPH_INVALID_RELOAD","comment":"Invalid graph token provided, please reload the stats and provide the updated token."},{"code":400,"name":"GRAPH_OUTDATED_RELOAD","comment":"The graph is outdated, please get a new async token using stats.getBroadcastStats."}],"available":"user"},{"kind":"method","name":"stats.getMegagroupStats","type":"stats.MegagroupStats","typeModifiers":{"constructorId":4018141462},"id":3705636359,"comment":"Get supergroup statistics","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable dark theme for graph colors"},{"name":"channel","type":"InputChannel","comment":"Supergroup ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MEGAGROUP_REQUIRED","comment":"You can only use this method on a supergroup."}],"available":"user"},{"kind":"method","name":"stats.getMessagePublicForwards","type":"stats.PublicForwards","typeModifiers":{"constructorId":2466479648},"id":1595212100,"comment":"Obtains a list of messages, indicating to which other public channels was a channel message forwarded.
\nWill return a list of {@link RawMessage} with peer_id equal to the public channel to which this message was forwarded.","arguments":[{"name":"channel","type":"InputChannel","comment":"Source channel"},{"name":"msg_id","type":"int","comment":"Source message ID"},{"name":"offset","type":"string","comment":"Offset for pagination, empty string on first call, then use the next_offset field of the returned constructor (if present, otherwise no more results are available)."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stats.getMessageStats","type":"stats.MessageStats","typeModifiers":{"constructorId":2145983508},"id":3068175349,"comment":"Get message statistics","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable dark theme for graph colors"},{"name":"channel","type":"InputChannel","comment":"Channel ID"},{"name":"msg_id","type":"int","comment":"Message ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stats.getStoryStats","type":"stats.StoryStats","typeModifiers":{"constructorId":1355613820},"id":927985472,"comment":"Get statistics for a certain story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable the dark theme for graph colors"},{"name":"peer","type":"InputPeer","comment":"The peer that posted the story"},{"name":"id","type":"int","comment":"Story ID"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stats.getStoryPublicForwards","type":"stats.PublicForwards","typeModifiers":{"constructorId":2466479648},"id":2789441270,"comment":"Obtain forwards of a story as a message to public chats and reposts by public channels.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the story was originally posted"},{"name":"id","type":"int","comment":"Story ID"},{"name":"offset","type":"string","comment":"Offset for pagination, from {@link stats.RawPublicForwards}.next_offset."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stats.getBroadcastRevenueStats","type":"stats.BroadcastRevenueStats","typeModifiers":{"constructorId":1409802903},"id":1977595505,"comment":"Get channel ad revenue statistics ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable dark theme for graph colors"},{"name":"channel","type":"InputChannel","comment":"The channel"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."}],"available":"user"},{"kind":"method","name":"stats.getBroadcastRevenueWithdrawalUrl","type":"stats.BroadcastRevenueWithdrawalUrl","typeModifiers":{"constructorId":3966080823},"id":711323507,"comment":"Withdraw funds from a channel's ad revenue balance ».","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel"},{"name":"password","type":"InputCheckPasswordSRP","comment":"2FA password, see here » for more info."}],"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PASSWORD_TOO_FRESH_%d","comment":"The password was modified less than 24 hours ago, try again in %d seconds."}],"available":"user"},{"kind":"method","name":"stats.getBroadcastRevenueTransactions","type":"stats.BroadcastRevenueTransactions","typeModifiers":{"constructorId":2266334310},"id":6891535,"comment":"Fetch channel ad revenue transaction history ».","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel"},{"name":"offset","type":"int","comment":"Offset for pagination"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"chatlists.exportChatlistInvite","type":"chatlists.ExportedChatlistInvite","typeModifiers":{"constructorId":283567014},"id":2222081934,"comment":"Export a folder », creating a chat folder deep link ».","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The folder to export"},{"name":"title","type":"string","comment":"An optional name for the link"},{"name":"peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"The list of channels, group and supergroups to share with the link. Basic groups will automatically be converted to supergroups when invoking the method."}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"INVITES_TOO_MUCH","comment":"The maximum number of per-folder invites specified by the chatlist_invites_limit_default/chatlist_invites_limit_premium client configuration parameters » was reached."},{"code":400,"name":"PEERS_LIST_EMPTY","comment":"The specified list of peers is empty."}],"available":"user"},{"kind":"method","name":"chatlists.deleteExportedInvite","type":"Bool","id":1906072670,"comment":"Delete a previously created chat folder deep link ».","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The related folder"},{"name":"slug","type":"string","comment":"slug obtained from the chat folder deep link »."}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},{"kind":"method","name":"chatlists.editExportedInvite","type":"ExportedChatlistInvite","typeModifiers":{"constructorId":206668204},"id":1698543165,"comment":"Edit a chat folder deep link ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chatlist","type":"InputChatlist","comment":"Folder ID"},{"name":"slug","type":"string","comment":"slug obtained from the chat folder deep link »."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"If set, sets a new name for the link"},{"name":"peers","type":"InputPeer","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"If set, changes the list of peers shared with the link"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"INVITE_SLUG_EMPTY","comment":"The specified invite slug is empty."},{"code":400,"name":"INVITE_SLUG_EXPIRED","comment":"The specified chat folder link has expired."},{"code":400,"name":"PEERS_LIST_EMPTY","comment":"The specified list of peers is empty."}],"available":"user"},{"kind":"method","name":"chatlists.getExportedInvites","type":"chatlists.ExportedInvites","typeModifiers":{"constructorId":279670215},"id":3456359043,"comment":"List all chat folder deep links » associated to a folder","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The folder"}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."}],"available":"user"},{"kind":"method","name":"chatlists.checkChatlistInvite","type":"chatlists.ChatlistInvite","id":1103171583,"comment":"Obtain information about a chat folder deep link ».","arguments":[{"name":"slug","type":"string","comment":"slug obtained from the chat folder deep link »"}],"throws":[{"code":400,"name":"INVITE_SLUG_EMPTY","comment":"The specified invite slug is empty."},{"code":400,"name":"INVITE_SLUG_EXPIRED","comment":"The specified chat folder link has expired."}],"available":"user"},{"kind":"method","name":"chatlists.joinChatlistInvite","type":"Updates","id":2796675994,"comment":"Import a chat folder deep link », joining some or all the chats in the folder.","arguments":[{"name":"slug","type":"string","comment":"slug obtained from a chat folder deep link »."},{"name":"peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"List of new chats to join, fetched using {@link chatlists.RawCheckChatlistInviteRequest} and filtered as specified in the documentation »."}],"throws":[{"code":400,"name":"FILTER_INCLUDE_EMPTY","comment":"The include_peers vector of the filter is empty."},{"code":400,"name":"INVITE_SLUG_EMPTY","comment":"The specified invite slug is empty."},{"code":400,"name":"INVITE_SLUG_EXPIRED","comment":"The specified chat folder link has expired."}],"available":"user"},{"kind":"method","name":"chatlists.getChatlistUpdates","type":"chatlists.ChatlistUpdates","typeModifiers":{"constructorId":2478671757},"id":2302776609,"comment":"Fetch new chats associated with an imported chat folder deep link ». Must be invoked at most every chatlist_update_period seconds (as per the related client configuration parameter »).","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The folder"}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"INPUT_CHATLIST_INVALID","comment":"The specified folder is invalid."}],"available":"user"},{"kind":"method","name":"chatlists.joinChatlistUpdates","type":"Updates","id":3767138549,"comment":"Join channels and supergroups recently added to a chat folder deep link ».","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The folder"},{"name":"peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"List of new chats to join, fetched using {@link chatlists.RawGetChatlistUpdatesRequest} and filtered as specified in the documentation »."}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_INCLUDE_EMPTY","comment":"The include_peers vector of the filter is empty."}],"available":"user"},{"kind":"method","name":"chatlists.hideChatlistUpdates","type":"Bool","id":1726252795,"comment":"Dismiss new pending peers recently added to a chat folder deep link ».","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The folder"}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},{"kind":"method","name":"chatlists.getLeaveChatlistSuggestions","type":"Peer","typeModifiers":{"isVector":true},"id":4257011476,"comment":"Returns identifiers of pinned or always included chats from a chat folder imported using a chat folder deep link », which are suggested to be left when the chat folder is deleted.","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"Folder ID"}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},{"kind":"method","name":"chatlists.leaveChatlist","type":"Updates","id":1962598714,"comment":"Delete a folder imported using a chat folder deep link »","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"Folder ID"},{"name":"peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Also leave the specified channels and groups"}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.canSendStory","type":"Bool","id":3353337821,"comment":"Check whether we can post stories as the specified peer.","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer from which we wish to post stories."}],"throws":[{"code":400,"name":"BOOSTS_REQUIRED","comment":"The specified channel must first be boosted by its users in order to perform this action."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"STORIES_TOO_MUCH","comment":"You have hit the maximum active stories limit as specified by the story_expiring_limit_* client configuration parameters: you should buy a Premium subscription, delete an active story, or wait for the oldest story to expire."},{"code":400,"name":"STORY_SEND_FLOOD_MONTHLY_%d","comment":"You've hit the monthly story limit as specified by the stories_sent_monthly_limit_* client configuration parameters: wait for the specified number of seconds before posting a new story."},{"code":400,"name":"STORY_SEND_FLOOD_WEEKLY_%d","comment":"You've hit the weekly story limit as specified by the stories_sent_weekly_limit_* client configuration parameters: wait for the specified number of seconds before posting a new story."}],"available":"user"},{"kind":"method","name":"stories.sendStory","type":"Updates","id":3840305483,"comment":"Uploads a Telegram Story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to add the story to the profile automatically upon expiration. If not set, the story will only be added to the archive, see here » for more info."},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, disables forwards, screenshots, and downloads."},{"name":"fwd_modified","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Set this flag when reposting stories with fwd_from_id+fwd_from_id, if the media was modified before reposting."},{"name":"peer","type":"InputPeer","comment":"The peer to send the story as."},{"name":"media","type":"InputMedia","comment":"The story media."},{"name":"media_areas","type":"MediaArea","typeModifiers":{"predicate":"flags.5","isVector":true},"comment":"Media areas associated to the story, see here » for more info."},{"name":"caption","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Story caption."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text, if allowed by the stories_entities client configuration parameter »."},{"name":"privacy_rules","type":"InputPrivacyRule","typeModifiers":{"isVector":true},"comment":"Privacy rules for the story, indicating who can or can't view the story."},{"name":"random_id","type":"long","comment":"Unique client message ID required to prevent message resending."},{"name":"period","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Period after which the story is moved to archive (and to the profile if pinned is set), in seconds; must be one of 6 * 3600, 12 * 3600, 86400, or 2 * 86400 for Telegram Premium users, and 86400 otherwise."},{"name":"fwd_from_id","type":"InputPeer","typeModifiers":{"predicate":"flags.6"},"comment":"If set, indicates that this story is a repost of story with ID fwd_from_story posted by the peer in fwd_from_id."},{"name":"fwd_from_story","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"If set, indicates that this story is a repost of story with ID fwd_from_story posted by the peer in fwd_from_id."}],"throws":[{"code":400,"name":"BOOSTS_REQUIRED","comment":"The specified channel must first be boosted by its users in order to perform this action."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_FILE_INVALID","comment":"The specified media file is invalid."},{"code":400,"name":"MEDIA_TYPE_INVALID","comment":"The specified media type cannot be used in stories."},{"code":400,"name":"MEDIA_VIDEO_STORY_MISSING","comment":"A non-story video cannot be repubblished as a story (emitted when trying to resend a non-story video as a story using inputDocument)."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"STORIES_TOO_MUCH","comment":"You have hit the maximum active stories limit as specified by the story_expiring_limit_* client configuration parameters: you should buy a Premium subscription, delete an active story, or wait for the oldest story to expire."},{"code":400,"name":"STORY_PERIOD_INVALID","comment":"The specified story period is invalid for this account."},{"code":400,"name":"VENUE_ID_INVALID","comment":"The specified venue ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.editStory","type":"Updates","id":3045308998,"comment":"Edit an uploaded story","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer where the story was posted."},{"name":"id","type":"int","comment":"ID of story to edit."},{"name":"media","type":"InputMedia","typeModifiers":{"predicate":"flags.0"},"comment":"If specified, replaces the story media."},{"name":"media_areas","type":"MediaArea","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Media areas associated to the story, see here » for more info."},{"name":"caption","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"If specified, replaces the story caption."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text in the caption, if allowed by the stories_entities client configuration parameter »."},{"name":"privacy_rules","type":"InputPrivacyRule","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"If specified, alters the privacy settings » of the story, changing who can or can't view the story."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_NOT_MODIFIED","comment":"The new story information you passed is equal to the previous story information, thus it wasn't modified."}],"available":"user"},{"kind":"method","name":"stories.deleteStories","type":"int","typeModifiers":{"isVector":true},"id":2925124447,"comment":"Deletes some posted stories.","arguments":[{"name":"peer","type":"InputPeer","comment":"Channel/user from where to delete stories."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of stories to delete."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},{"kind":"method","name":"stories.togglePinned","type":"int","typeModifiers":{"isVector":true},"id":2591400431,"comment":"Pin or unpin one or more stories","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where to pin or unpin stories"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of stories to pin or unpin"},{"name":"pinned","type":"Bool","comment":"Whether to pin or unpin the stories"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.getAllStories","type":"stories.AllStories","id":4004566565,"comment":"Fetch the List of active (or active and hidden) stories, see here » for more info on watching stories.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"next","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If next and state are both set, uses the passed state to paginate to the next results; if neither state nor next are set, fetches the initial page; if state is set and next is not set, check for changes in the active/hidden peerset, see here » for more info on the full flow."},{"name":"hidden","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, fetches the hidden active story list, otherwise fetches the active story list, see here » for more info on the full flow."},{"name":"state","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If next and state are both set, uses the passed state to paginate to the next results; if neither state nor next are set, fetches the initial page; if state is set and next is not set, check for changes in the active/hidden peerset, see here » for more info on the full flow."}],"available":"user"},{"kind":"method","name":"stories.getPinnedStories","type":"stories.Stories","typeModifiers":{"constructorId":1673780490},"id":1478600156,"comment":"Fetch the stories pinned on a peer's profile.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer whose pinned stories should be fetched"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.getStoriesArchive","type":"stories.Stories","typeModifiers":{"constructorId":1673780490},"id":3023380502,"comment":"Fetch the story archive » of a peer we control.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer whose archived stories should be fetched"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.getStoriesByID","type":"stories.Stories","typeModifiers":{"constructorId":1673780490},"id":1467271796,"comment":"Obtain full info about a set of stories by their IDs.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the stories were posted"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Story IDs"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORIES_NEVER_CREATED","comment":"This peer hasn't ever posted any stories."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},{"kind":"method","name":"stories.toggleAllStoriesHidden","type":"Bool","id":2082822084,"comment":"Hide the active stories of a specific peer, preventing them from being displayed on the action bar on the homescreen.","arguments":[{"name":"hidden","type":"Bool","comment":"Whether to hide or unhide all active stories of the peer"}],"available":"user"},{"kind":"method","name":"stories.readStories","type":"int","typeModifiers":{"isVector":true},"id":2773932744,"comment":"Mark all stories up to a certain ID as read, for a given peer; will emit an {@link RawUpdateReadStories} update to all logged-in sessions.","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer whose stories should be marked as read."},{"name":"max_id","type":"int","comment":"Mark all stories up to and including this ID as read"}],"throws":[{"code":400,"name":"MAX_ID_INVALID","comment":"The provided max ID is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORIES_NEVER_CREATED","comment":"This peer hasn't ever posted any stories."}],"available":"user"},{"kind":"method","name":"stories.incrementStoryViews","type":"Bool","id":2986511099,"comment":"Increment the view counter of one or more stories.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the stories were posted."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of the stories (maximum 200 at a time)."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},{"kind":"method","name":"stories.getStoryViewsList","type":"stories.StoryViewsList","typeModifiers":{"constructorId":1507299269},"id":2127707223,"comment":"Obtain the list of users that have viewed a specific story we posted","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"just_contacts","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to only fetch view reaction/views made by our contacts"},{"name":"reactions_first","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to return {@link RawStoryView} info about users that reacted to the story (i.e. if set, the server will first sort results by view date as usual, and then also additionally sort the list by putting {@link RawStoryView}s with an associated reaction first in the list). Ignored if forwards_first is set."},{"name":"forwards_first","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, returns forwards and reposts first, then reactions, then other views; otherwise returns interactions sorted just by interaction date."},{"name":"peer","type":"InputPeer","comment":"Peer where the story was posted"},{"name":"q","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Search for specific peers"},{"name":"id","type":"int","comment":"Story ID"},{"name":"offset","type":"string","comment":"Offset for pagination, obtained from {@link stories.RawStoryViewsList}.next_offset"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.getStoriesViews","type":"stories.StoryViews","typeModifiers":{"constructorId":3734957341},"id":685862088,"comment":"Obtain info about the view count, forward count, reactions and recent viewers of one or more stories.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer whose stories should be fetched"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Story IDs"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},{"kind":"method","name":"stories.exportStoryLink","type":"ExportedStoryLink","typeModifiers":{"constructorId":1070138683},"id":2072899360,"comment":"Generate a story deep link for a specific story","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the story was posted"},{"name":"id","type":"int","comment":"Story ID"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."},{"code":400,"name":"USER_PUBLIC_MISSING","comment":"Cannot generate a link to stories posted by a peer without a username."}],"available":"user"},{"kind":"method","name":"stories.report","id":433646405,"type":"ReportResult","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer that uploaded the story."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of the stories to report."},{"name":"option","type":"bytes"},{"name":"message","type":"string","comment":"Comment for report moderation"}],"comment":"Report a story.","throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.activateStealthMode","type":"Updates","id":1471926630,"comment":"Activates stories stealth mode, see here » for more info.\n\nWill return an {@link RawUpdateStoriesStealthMode}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"past","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to erase views from any stories opened in the past stories_stealth_past_period seconds », as specified by the client configuration."},{"name":"future","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to hide future story views for the next stories_stealth_future_period seconds », as specified by the client configuration."}],"throws":[{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"stories.sendReaction","type":"Updates","id":2144810674,"comment":"React to a story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"add_to_recent","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to add this reaction to the recent reactions list »."},{"name":"peer","type":"InputPeer","comment":"The peer that sent the story"},{"name":"story_id","type":"int","comment":"ID of the story to react to"},{"name":"reaction","type":"Reaction","comment":"Reaction"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.getPeerStories","type":"stories.PeerStories","typeModifiers":{"constructorId":3404105576},"id":743103056,"comment":"Fetch the full active story list of a specific peer.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer whose stories should be fetched"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.getAllReadPeerStories","type":"Updates","id":2606426105,"comment":"Obtain the latest read story ID for all peers when first logging in, returned as a list of {@link RawUpdateReadStories} updates, see here » for more info.","arguments":[],"available":"user"},{"kind":"method","name":"stories.getPeerMaxIDs","type":"int","typeModifiers":{"isVector":true},"id":1398375363,"comment":"Get the IDs of the maximum read stories for a set of peers.","arguments":[{"name":"id","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Peers"}],"available":"user"},{"kind":"method","name":"stories.getChatsToSend","type":"messages.Chats","id":2775223136,"comment":"Obtain a list of channels where the user can post stories","arguments":[],"available":"user"},{"kind":"method","name":"stories.togglePeerStoriesHidden","type":"Bool","id":3171161540,"comment":"Hide the active stories of a user, preventing them from being displayed on the action bar on the homescreen, see here » for more info.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer whose stories should be (un)hidden."},{"name":"hidden","type":"Bool","comment":"Whether to hide or unhide stories."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.getStoryReactionsList","type":"stories.StoryReactionsList","typeModifiers":{"constructorId":2858383516},"id":3115485215,"comment":"Get the reaction and interaction list of a story posted to a channel, along with the sender of each reaction.\n\nCan only be used by channel admins.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"forwards_first","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, returns forwards and reposts first, then reactions, then other views; otherwise returns interactions sorted just by interaction date."},{"name":"peer","type":"InputPeer","comment":"Channel"},{"name":"id","type":"int","comment":"Story ID"},{"name":"reaction","type":"Reaction","typeModifiers":{"predicate":"flags.0"},"comment":"Get only reactions of this type"},{"name":"offset","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Offset for pagination (taken from the next_offset field of the returned stories.StoryReactionsList); empty in the first request."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.togglePinnedToTop","type":"Bool","id":187268763,"comment":"Pin some stories to the top of the profile, see here » for more info.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where to pin stories."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of the stories to pin (max stories_pinned_to_top_count_max)."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.searchPosts","type":"stories.FoundStories","typeModifiers":{"constructorId":3806230327},"id":1827279210,"comment":"Globally search for stories using a hashtag or a location media area, see here » for more info on the full flow.\n\nEither hashtag or area must be set when invoking the method.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"hashtag","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Hashtag (without the #)"},{"name":"area","type":"MediaArea","typeModifiers":{"predicate":"flags.1"},"comment":"A {@link RawMediaAreaGeoPoint} or a {@link RawMediaAreaVenue}.
Note {@link RawMediaAreaGeoPoint} areas may be searched only if they have an associated address."},{"name":"offset","type":"string","comment":"Offset for pagination: initially an empty string, then the next_offset from the previously returned {@link stories.RawFoundStories}."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"HASHTAG_INVALID","comment":"The specified hashtag is invalid."}],"available":"user"},{"kind":"method","name":"premium.getBoostsList","type":"premium.BoostsList","typeModifiers":{"constructorId":2264424764},"id":1626764896,"comment":"Obtains info about the boosts that were applied to a certain channel or supergroup (admins only)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"gifts","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to return only info about boosts received from gift codes and giveaways created by the channel/supergroup »"},{"name":"peer","type":"InputPeer","comment":"The channel/supergroup"},{"name":"offset","type":"string","comment":"Offset for pagination, obtained from {@link premium.RawBoostsList}.next_offset"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"premium.getMyBoosts","type":"premium.MyBoosts","typeModifiers":{"constructorId":2598512866},"id":199719754,"comment":"Obtain which peers are we currently boosting, and how many boost slots we have left.","arguments":[],"available":"user"},{"kind":"method","name":"premium.applyBoost","type":"premium.MyBoosts","typeModifiers":{"constructorId":2598512866},"id":1803396934,"comment":"Apply one or more boosts » to a peer.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"slots","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Which boost slots to assign to this peer."},{"name":"peer","type":"InputPeer","comment":"The peer to boost."}],"throws":[{"code":400,"name":"BOOSTS_EMPTY","comment":"No boost slots were specified."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SLOTS_EMPTY","comment":"The specified slot list is empty."}],"available":"user"},{"kind":"method","name":"premium.getBoostsStatus","type":"premium.BoostsStatus","typeModifiers":{"constructorId":1230586490},"id":70197089,"comment":"Gets the current number of boosts of a channel/supergroup.","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"premium.getUserBoosts","type":"premium.BoostsList","typeModifiers":{"constructorId":2264424764},"id":965037343,"comment":"Returns the lists of boost that were applied to a channel/supergroup by a specific user (admins only)","arguments":[{"name":"peer","type":"InputPeer","comment":"The channel/supergroup"},{"name":"user_id","type":"InputUser","comment":"The user"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"smsjobs.isEligibleToJoin","type":"smsjobs.EligibilityToJoin","typeModifiers":{"constructorId":3700114639},"id":249313744,"comment":"Check if we can process SMS jobs (official clients only).","arguments":[],"throws":[{"code":403,"name":"NOT_ELIGIBLE","comment":"The current user is not eligible to join the Peer-to-Peer Login Program."}],"available":"user"},{"kind":"method","name":"smsjobs.join","type":"Bool","id":2806959661,"comment":"Enable SMS jobs (official clients only).","arguments":[],"throws":[{"code":400,"name":"NOT_ELIGIBLE","comment":"The current user is not eligible to join the Peer-to-Peer Login Program."}],"available":"user"},{"kind":"method","name":"smsjobs.leave","type":"Bool","id":2560142707,"comment":"Disable SMS jobs (official clients only).","arguments":[],"throws":[{"code":400,"name":"NOT_JOINED","comment":"The current user hasn't joined the Peer-to-Peer Login Program."}],"available":"user"},{"kind":"method","name":"smsjobs.updateSettings","type":"Bool","id":155164863,"comment":"Update SMS job settings (official clients only).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"allow_international","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Allow international numbers?"}],"throws":[{"code":400,"name":"NOT_JOINED","comment":"The current user hasn't joined the Peer-to-Peer Login Program."}],"available":"user"},{"kind":"method","name":"smsjobs.getStatus","type":"smsjobs.Status","typeModifiers":{"constructorId":720277905},"id":279353576,"comment":"Get SMS jobs status (official clients only).","arguments":[],"throws":[{"code":400,"name":"NOT_JOINED","comment":"The current user hasn't joined the Peer-to-Peer Login Program."}],"available":"user"},{"kind":"method","name":"smsjobs.getSmsJob","type":"SmsJob","typeModifiers":{"constructorId":3869372088},"id":2005766191,"comment":"Get info about an SMS job (official clients only).","arguments":[{"name":"job_id","type":"string","comment":"Job ID"}],"throws":[{"code":400,"name":"SMSJOB_ID_INVALID","comment":"The specified job ID is invalid."}],"available":"user"},{"kind":"method","name":"smsjobs.finishJob","type":"Bool","id":1327415076,"comment":"Finish an SMS job (official clients only).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"job_id","type":"string","comment":"Job ID."},{"name":"error","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If failed, the error."}],"throws":[{"code":400,"name":"SMSJOB_ID_INVALID","comment":"The specified job ID is invalid."}],"available":"user"},{"kind":"method","name":"fragment.getCollectibleInfo","type":"fragment.CollectibleInfo","typeModifiers":{"constructorId":1857945489},"id":3189671354,"comment":"Fetch information about a fragment collectible, see here » for more info on the full flow.","arguments":[{"name":"collectible","type":"InputCollectible","comment":"Collectible to fetch info about."}],"throws":[{"code":400,"name":"COLLECTIBLE_INVALID","comment":"The specified collectible is invalid."},{"code":400,"name":"COLLECTIBLE_NOT_FOUND","comment":"The specified collectible could not be found."}],"available":"user"},{"kind":"method","name":"mtcute.customMethod","id":2440218877,"type":"bytes","arguments":[{"name":"bytes","type":"bytes"}],"comment":"temporary solution to allow users to call arbitrary methods not present in the schema, without having to override client's schema readers/writers map. will become redundant after esm tl rewrite"}],"u":{"Error":"An object containing a query error.","InputFileLocation":"Defines the location of a file for download.","InputPeer":"Peer","InputUser":"Defines a user for subsequent interaction.","InputContact":"Object defines a contact from the user's phone book.","InputFile":"Defines a file uploaded by the client.","InputMedia":"Defines media content of a message.","InputChatPhoto":"Defines a new group profile photo.","InputGeoPoint":"Defines a GeoPoint.","InputPhoto":"Defines a photo for further interaction.","Peer":"Identifier of a private chat, basic group, group or channel (see here » for more info).","storage.FileType":"Object describes the file type.","User":"Object defines a user.","UserProfilePhoto":"Object contains info on the user's profile photo.","UserStatus":"User online status","Chat":"Object defines a group.","ChatFull":"Full info about a channel, supergroup, gigagroup or basic group.","ChatParticipant":"Details of a group member.","ChatParticipants":"Object contains info on group members.","ChatPhoto":"Object defines a group profile photo.","Message":"Object describing a message.","MessageMedia":"Media","MessageAction":"Object describing actions connected to a service message.","Dialog":"Chat info.","Photo":"Object describes a photo.","PhotoSize":"Location of a certain size of a picture","GeoPoint":"Object defines a GeoPoint.","auth.SentCode":"Contains info on a confirmation code message sent via SMS, phone call or Telegram.","auth.Authorization":"Object contains info on user authorization.","auth.ExportedAuthorization":"Exported authorization","InputNotifyPeer":"Object defines the set of users and/or groups that generate notifications.","InputPeerNotifySettings":"Notifications settings.","PeerNotifySettings":"Notification settings.","PeerSettings":"List of actions that are possible when interacting with this user, to be shown as suggested actions in the chat bar","WallPaper":"Object contains info on a wallpaper.","ReportReason":"Report reason","UserFull":"Object contains extended user info.","Contact":"A contact of the current user.","ImportedContact":"Object contains info on a successfully imported contact.","ContactStatus":"Contact status: online / offline.","contacts.Contacts":"Info on the current user's contact list.","contacts.ImportedContacts":"Object contains info on successfully imported contacts.","contacts.Blocked":"Info on users from the current user's black list.","messages.Dialogs":"Object contains a list of chats with messages and auxiliary data.","messages.Messages":"Object contains information on list of messages with auxiliary data.","messages.Chats":"Object contains list of chats with auxiliary data.","messages.ChatFull":"Full info about a channel, supergroup, gigagroup or basic group.","messages.AffectedHistory":"Object contains info on affected part of communication history with the user or in a chat.","MessagesFilter":"Object describes message filter.","Update":"Object contains info on events occurred.","updates.State":"Object contains info on state for further updates.","updates.Difference":"Occurred changes.","Updates":"Object which is perceived by the client without a call on its part when an event occurs.","photos.Photos":"Object contains list of photos with auxiliary data.","photos.Photo":"Photo with auxiliary data.","upload.File":"Contains info on file.","DcOption":"Information for connection to data center.","Config":"Object contains info on API configuring parameters.","NearestDc":"Object contains info on nearest data center.","help.AppUpdate":"Contains info on app update availability.","help.InviteText":"Object contains info on the text of a message with an invitation.","EncryptedChat":"Object contains info on an encrypted chat.","InputEncryptedChat":"Object sets an encrypted chat ID.","EncryptedFile":"Seta an encrypted file.","InputEncryptedFile":"Object sets encrypted file for attachment","EncryptedMessage":"Object contains encrypted message.","messages.DhConfig":"Contains Diffie-Hellman key generation protocol parameters.","messages.SentEncryptedMessage":"Contains info on message sent to an encrypted chat.","InputDocument":"Defines a document for subsequent interaction.","Document":"A document.","help.Support":"Info about the support user, relevant to the current user.","NotifyPeer":"Object defines the set of users and/or groups that generate notifications.","SendMessageAction":"User actions. Use this to provide users with detailed info about their chat partner's actions: typing or sending attachments of all kinds.","contacts.Found":"Object contains info on users found by name substring and auxiliary data.","InputPrivacyKey":"Privacy keys together with privacy rules » indicate what can or can't someone do and are specified by a PrivacyKey constructor, and its input counterpart InputPrivacyKey.\n\nSee the privacy documentation » for more info.","PrivacyKey":"Privacy keys together with privacy rules » indicate what can or can't someone do and are specified by a PrivacyKey constructor, and its input counterpart InputPrivacyKey.\n\nSee the privacy documentation » for more info.","InputPrivacyRule":"Privacy rules indicate who can or can't do something and are specified by a PrivacyRule, and its input counterpart InputPrivacyRule.\n\nSee the privacy documentation » for more info.","PrivacyRule":"Privacy rules together with privacy keys indicate what can or can't someone do and are specified by a PrivacyRule constructor, and its input counterpart InputPrivacyRule.\n\nSee the privacy documentation » for more info.","account.PrivacyRules":"Privacy rules","AccountDaysTTL":"Time-to-live of current account","DocumentAttribute":"Various possible attributes of a document (used to define if it's a sticker, a GIF, a video, a mask sticker, an image, an audio, and so on)","messages.Stickers":"Stickers","StickerPack":"Stickerpack","messages.AllStickers":"All stickers","messages.AffectedMessages":"Messages affected by changes","WebPage":"Instant View webpage preview","Authorization":"Represents a logged-in session","account.Authorizations":"Logged-in sessions","account.Password":"Configuration for two-factor authorization","account.PasswordSettings":"Private info associated to the password info (recovery email, telegram passport info & so on)","account.PasswordInputSettings":"Constructor for setting up a new 2FA SRP password","auth.PasswordRecovery":"Recovery info of a 2FA password, only for accounts with a recovery email configured.","ReceivedNotifyMessage":"Confirmation of message receipt","ExportedChatInvite":"Exported chat invite","ChatInvite":"Chat invite","InputStickerSet":"Represents a stickerset","StickerSet":"Represents a stickerset (stickerpack)","messages.StickerSet":"Stickerset","BotCommand":"Describes a bot command that can be used in a chat","BotInfo":"Info about bots (available bot commands, etc)","KeyboardButton":"Bot or inline keyboard buttons","KeyboardButtonRow":"Bot or inline keyboard rows","ReplyMarkup":"Reply markup for bot and inline keyboards","MessageEntity":"Message entities, representing styled text in a message","InputChannel":"Represents a channel","contacts.ResolvedPeer":"Peer returned after resolving a @username","MessageRange":"Indicates a range of chat messages","updates.ChannelDifference":"Contains the difference (new messages) between our local channel state and the remote state","ChannelMessagesFilter":"Filter for fetching only certain types of channel messages","ChannelParticipant":"Channel participant","ChannelParticipantsFilter":"Filter for fetching channel participants","channels.ChannelParticipants":"Channel/supergroup participants","channels.ChannelParticipant":"Channel participant","help.TermsOfService":"Contains info about the latest telegram Terms Of Service.","messages.SavedGifs":"Saved GIFs","InputBotInlineMessage":"Represents a sent inline message from the perspective of a bot","InputBotInlineResult":"Inline bot result","BotInlineMessage":"Inline message","BotInlineResult":"Results of an inline query","messages.BotResults":"Result of a query to an inline bot","ExportedMessageLink":"HTTP link and embed info of channel message","MessageFwdHeader":"Info about a forwarded message","auth.CodeType":"Type of verification code that will be sent next if you call the resendCode method","auth.SentCodeType":"Type of the verification code that was sent","messages.BotCallbackAnswer":"Callback answer of bot","messages.MessageEditData":"Message edit data for media","InputBotInlineMessageID":"Represents a sent inline message from the perspective of a bot","InlineBotSwitchPM":"The bot requested the user to message them in private","messages.PeerDialogs":"List of dialogs","TopPeer":"Top peer","TopPeerCategory":"Top peer category","TopPeerCategoryPeers":"Top peers by top peer category","contacts.TopPeers":"Top peers","DraftMessage":"Represents a message draft.","messages.FeaturedStickers":"Featured stickers","messages.RecentStickers":"Recent stickers","messages.ArchivedStickers":"Archived stickers","messages.StickerSetInstallResult":"Result of stickerset installation process","StickerSetCovered":"Stickerset preview","MaskCoords":"Mask coordinates (if this is a mask sticker, attached to a photo)","InputStickeredMedia":"Represents a media with attached stickers","Game":"Indicates an already sent game","InputGame":"A game to send","HighScore":"Game high score","messages.HighScores":"High scores (in games)","RichText":"Rich text","PageBlock":"Represents an instant view page element","PhoneCallDiscardReason":"Why was the phone call discarded?","DataJSON":"Represent a JSON-encoded object","LabeledPrice":"Labeled pricetag","Invoice":"Invoice","PaymentCharge":"Charged payment","PostAddress":"Shipping address","PaymentRequestedInfo":"Requested payment info","PaymentSavedCredentials":"Saved payment credentials","WebDocument":"Remote document","InputWebDocument":"Specifies a document that will have to be downloaded from the URL by the telegram servers","InputWebFileLocation":"Location of remote file","upload.WebFile":"Remote file","payments.PaymentForm":"Payment form","payments.ValidatedRequestedInfo":"Validated requested info","payments.PaymentResult":"Payment result","payments.PaymentReceipt":"Payment receipt","payments.SavedInfo":"Saved payment info","InputPaymentCredentials":"Payment credentials","account.TmpPassword":"Temporary password","ShippingOption":"Shipping options","InputStickerSetItem":"Sticker","InputPhoneCall":"Phone call","PhoneCall":"Phone call","PhoneConnection":"Phone call connection","PhoneCallProtocol":"Phone call protocol","phone.PhoneCall":"Phone call","upload.CdnFile":"Represents the download status of a CDN file","CdnPublicKey":"Public key to use only during handshakes to CDN DCs.","CdnConfig":"Configuration for CDN file downloads.","LangPackString":"Language pack string","LangPackDifference":"Language pack changes","LangPackLanguage":"Language pack language","ChannelAdminLogEventAction":"Channel admin log event","ChannelAdminLogEvent":"An event in a channel admin log","channels.AdminLogResults":"Admin log events","ChannelAdminLogEventsFilter":"Filter for fetching events in the channel admin log","PopularContact":"Popular contact","messages.FavedStickers":"Favorited stickers","RecentMeUrl":"Recent t.me urls","help.RecentMeUrls":"Recent t.me URLs","InputSingleMedia":"A single media in an album or grouped media sent with {@link messages.RawSendMultiMediaRequest}.","WebAuthorization":"Web authorization","account.WebAuthorizations":"Web authorizations","InputMessage":"A message","InputDialogPeer":"Peer, or all peers in a certain folder","DialogPeer":"Peer, or all peers in a folder","messages.FoundStickerSets":"Found stickersets","FileHash":"Hash of an uploaded file, to be checked for validity after download","InputClientProxy":"Info about an MTProxy used to connect.","help.TermsOfServiceUpdate":"Update of Telegram's terms of service","InputSecureFile":"Secure passport file, for more info see the passport docs »","SecureFile":"Secure passport file, for more info see the passport docs »","SecureData":"Secure passport data, for more info see the passport docs »","SecurePlainData":"Plaintext verified passport data.","SecureValueType":"Secure value type","SecureValue":"Secure Telegram Passport value","InputSecureValue":"Secure value, for more info see the passport docs »","SecureValueHash":"Secure value hash","SecureValueError":"Secure value error","SecureCredentialsEncrypted":"Encrypted secure credentials","account.AuthorizationForm":"Authorization form","account.SentEmailCode":"The email code that was sent","help.DeepLinkInfo":"Contains information about an unsupported deep link »","SavedContact":"Saved contact","account.Takeout":"Takeout info","PasswordKdfAlgo":"Key derivation function to use when generating the password hash for SRP two-factor authorization","SecurePasswordKdfAlgo":"KDF algorithm to use for computing telegram passport hash","SecureSecretSettings":"Telegram passport settings","InputCheckPasswordSRP":"Constructors for checking the validity of a 2FA SRP password.\n\nSee here » for more info on the 2FA authentication flow for methods that require it, before and after login.","SecureRequiredType":"Required secure file type","help.PassportConfig":"Telegram passport configuration","InputAppEvent":"Object contains info about an event that occurred in the application.","JSONObjectValue":"JSON key: value pair","JSONValue":"JSON value","PageTableCell":"Represents a table in an instant view table","PageTableRow":"Table row","PageCaption":"Page caption","PageListItem":"Item in block list","PageListOrderedItem":"Represents an instant view ordered list","PageRelatedArticle":"Related articles","Page":"Instant view page","help.SupportName":"Get localized name for support user","help.UserInfo":"User info","PollAnswer":"Indicates a possible answer to a poll.","Poll":"Indicates a poll message","PollAnswerVoters":"How users voted on a certain poll answer","PollResults":"Results of poll","ChatOnlines":"Number of online users in a chat","StatsURL":"URL with chat statistics","ChatAdminRights":"Represents the rights of an admin in a channel/supergroup.","ChatBannedRights":"Represents the rights of a normal user in a supergroup/channel/chat.","InputWallPaper":"Wallpaper","account.WallPapers":"Wallpapers","CodeSettings":"Settings for the code type to send","WallPaperSettings":"Wallpaper rendering information.","AutoDownloadSettings":"Media autodownload settings","account.AutoDownloadSettings":"Media autodownload settings","EmojiKeyword":"Emoji keyword","EmojiKeywordsDifference":"New emoji keywords","EmojiURL":"Emoji URL","EmojiLanguage":"Emoji language","Folder":"A folder","InputFolderPeer":"Peer in a folder","FolderPeer":"Peer associated to folder","messages.SearchCounter":"Number of results that would be returned by a search","UrlAuthResult":"URL authorization result","ChannelLocation":"Geographical location of supergroup (geogroups)","PeerLocated":"Geolocated peer","RestrictionReason":"Restriction reason","InputTheme":"Cloud theme","Theme":"Cloud theme","account.Themes":"Installed themes","auth.LoginToken":"Login token (for QR code login)","account.ContentSettings":"Sensitive content settings","messages.InactiveChats":"Inactive chat list","BaseTheme":"Basic theme settings","InputThemeSettings":"Theme settings","ThemeSettings":"Theme settings","WebPageAttribute":"Webpage attributes","messages.VotesList":"How users voted in a poll","BankCardOpenUrl":"Credit card info URL provided by the bank","payments.BankCardData":"Credit card info, provided by the card's bank(s)","DialogFilter":"Dialog filter (folder »)","DialogFilterSuggested":"Suggested dialog filters (folder »)","StatsDateRangeDays":"Channel statistics date range","StatsAbsValueAndPrev":"Channel statistics value pair","StatsPercentValue":"Channel statistics percentage","StatsGraph":"Channel statistics graph","stats.BroadcastStats":"Channel statistics","help.PromoData":"Info about pinned MTProxy or Public Service Announcement peers.","VideoSize":"Represents an animated video thumbnail","StatsGroupTopPoster":"Most active user in a supergroup","StatsGroupTopAdmin":"Most active admin in a supergroup","StatsGroupTopInviter":"Most active inviter in a supergroup","stats.MegagroupStats":"Supergroup statistics","GlobalPrivacySettings":"Global privacy settings","help.CountryCode":"Country code and phone number pattern of a specific country","help.Country":"Name, ISO code, localized name and phone codes/patterns of a specific country","help.CountriesList":"Name, ISO code, localized name and phone codes/patterns of all available countries","MessageViews":"View, forward counter + info about replies of a specific message","messages.MessageViews":"View, forward counter + info about replies","messages.DiscussionMessage":"Info about a message thread","MessageReplyHeader":"Reply information","MessageReplies":"Info about post comments (for channels) or message replies (for groups)","PeerBlocked":"Info about a blocked user","stats.MessageStats":"Message statistics","GroupCall":"A group call","InputGroupCall":"Indicates a group call","GroupCallParticipant":"Info about a group call participant","phone.GroupCall":"Contains info about a group call, and partial info about its participants.","phone.GroupParticipants":"Info about the participants of a group call or livestream","InlineQueryPeerType":"Inline query peer type.","messages.HistoryImport":"Identifier of a history import session, click here for more info ».","messages.HistoryImportParsed":"Contains information about a chat export file, generated by a foreign chat app.","messages.AffectedFoundMessages":"Messages found and affected by changes","ChatInviteImporter":"When and which user joined the chat using a chat invite","messages.ExportedChatInvites":"Info about chat invites exported by a certain admin.","messages.ExportedChatInvite":"Contains info about a chat invite, and eventually a pointer to the newest chat invite.","messages.ChatInviteImporters":"List of users that imported a chat invitation link.","ChatAdminWithInvites":"Info about chat invites generated by admins.","messages.ChatAdminsWithInvites":"Info about chat invites generated by admins.","messages.CheckedHistoryImportPeer":"Contains a confirmation text to be shown to the user, upon importing chat history, click here for more info ».","phone.JoinAsPeers":"A list of peers that can be used to join a group call, presenting yourself as a specific user/channel.","phone.ExportedGroupCallInvite":"An exported group call invitation.","GroupCallParticipantVideoSourceGroup":"Describes a group of video synchronization source identifiers","GroupCallParticipantVideo":"Info about a video stream","stickers.SuggestedShortName":"A suggested short name for the specified stickerpack","BotCommandScope":"Represents a scope where the bot commands, specified using {@link bots.RawSetBotCommandsRequest} will be valid.","account.ResetPasswordResult":"Result of an {@link account.RawResetPasswordRequest} request.","SponsoredMessage":"A sponsored message","messages.SponsoredMessages":"A set of sponsored messages associated with a channel","SearchResultsCalendarPeriod":"Information about found messages sent on a specific day, used to split the messages in {@link messages.RawSearchResultsCalendar} constructors by days.","messages.SearchResultsCalendar":"Information about found messages sent on a specific day","SearchResultsPosition":"Information about a message in a specific position","messages.SearchResultsPositions":"Information about sparse positions of messages","channels.SendAsPeers":"A list of peers that can be used to send messages in a specific group","users.UserFull":"Full user information, with attached context peers for reactions","messages.PeerSettings":"Peer settings","auth.LoggedOut":"Future auth token » to be used on subsequent authorizations","ReactionCount":"Number of users that reacted with a certain emoji","MessageReactions":"Message reactions »","messages.MessageReactionsList":"List of peers that reacted to a specific message","AvailableReaction":"Animations associated with a message reaction","messages.AvailableReactions":"Animations and metadata associated with message reactions »","MessagePeerReaction":"How a certain peer reacted to the message","GroupCallStreamChannel":"Info about an RTMP stream in a group call or livestream","phone.GroupCallStreamChannels":"Info about RTMP streams in a group call or livestream","phone.GroupCallStreamRtmpUrl":"RTMP URL and stream key to be used in streaming software","AttachMenuBotIconColor":"Represents an attachment menu icon color for bot mini apps »","AttachMenuBotIcon":"Represents an attachment menu icon for bot mini apps »","AttachMenuBot":"Represents a bot mini app that can be launched from the attachment menu »","AttachMenuBots":"Represents a list of bot mini apps that can be launched from the attachment menu »","AttachMenuBotsBot":"Represents a bot mini app that can be launched from the attachment menu »","WebViewResult":"Contains the webview URL with appropriate theme and user info parameters added","WebViewMessageSent":"Contains information about an inline message sent by a Web App on behalf of a user.","BotMenuButton":"Indicates the action to execute when pressing the in-UI menu button for bots","account.SavedRingtones":"Contains a list of saved notification sounds","NotificationSound":"Represents a notification sound","account.SavedRingtone":"Contains information about a saved notification sound","AttachMenuPeerType":"Indicates a supported peer type for a bot mini app attachment menu","InputInvoice":"An invoice","payments.ExportedInvoice":"Exported invoice","messages.TranscribedAudio":"Transcribed text from a voice message","help.PremiumPromo":"Telegram Premium promotion information","InputStorePaymentPurpose":"Info about a Telegram Premium purchase","PremiumGiftOption":"Telegram Premium gift option","PaymentFormMethod":"Represents a payment method","EmojiStatus":"Emoji status","account.EmojiStatuses":"A list of emoji statuses","Reaction":"Message reaction","ChatReactions":"Available chat reactions","messages.Reactions":"A set of message reactions","EmailVerifyPurpose":"Email verification purpose","EmailVerification":"Email verification code or token","account.EmailVerified":"Email verification status","PremiumSubscriptionOption":"Telegram Premium subscription option","SendAsPeer":"Indicates a peer that can be used to send messages","MessageExtendedMedia":"Paid media, see here » for more info.","StickerKeyword":"Keywords for a certain sticker","Username":"Contains information about a username","ForumTopic":"Contains information about a forum topic","messages.ForumTopics":"Contains information about multiple forum topics","DefaultHistoryTTL":"Contains info about the default value of the Time-To-Live setting, applied to all new chats.","ExportedContactToken":"Describes a temporary profile link.","RequestPeerType":"Filtering criteria to use for the peer selection list shown to the user.","EmojiList":"Represents a list of custom emojis.","EmojiGroup":"Represents an emoji category.","messages.EmojiGroups":"Represents a list of emoji categories.","TextWithEntities":"Styled text with message entities","messages.TranslatedText":"Translated text with entities.","AutoSaveSettings":"Media autosave settings","AutoSaveException":"Peer-specific autosave settings","account.AutoSaveSettings":"Contains media autosave settings","help.AppConfig":"Contains various client configuration parameters","InputBotApp":"Used to fetch information about a direct link Mini App","BotApp":"Contains information about a direct link Mini App.","messages.BotApp":"Contains information about a direct link Mini App","InlineBotWebView":"Specifies an inline mode mini app button, shown on top of the inline query results list.","ReadParticipantDate":"Contains info about when a certain participant has read a message","InputChatlist":"Represents a folder","ExportedChatlistInvite":"An exported chat folder deep link ».","chatlists.ExportedChatlistInvite":"Exported chat folder deep link ».","chatlists.ExportedInvites":"A list of exported chat folder deep links ».","chatlists.ChatlistInvite":"Info about a chat folder deep link ».","chatlists.ChatlistUpdates":"Updated info about a chat folder deep link ».","bots.BotInfo":"Localized name, about text and description of a bot.","MessagePeerVote":"How a user voted in a poll","StoryViews":"Aggregated view and reaction information of a story","StoryItem":"Represents a Telegram Story","stories.AllStories":"Full list of active (or active and hidden) stories.","stories.Stories":"List of stories","StoryView":"Story view date and reaction information","stories.StoryViewsList":"Reaction and view counters for a story","stories.StoryViews":"Reaction and view counters for a list of stories","InputReplyTo":"Contains info about a message or story to reply to.","ExportedStoryLink":"Represents a story deep link","StoriesStealthMode":"Story stealth mode status","MediaAreaCoordinates":"Coordinates and size of a clicable rectangular area on top of a story.","MediaArea":"Represents a story media area »","PeerStories":"Stories associated to a peer","stories.PeerStories":"Active story list of a specific peer.","messages.WebPage":"Contains an instant view webpage.","PremiumGiftCodeOption":"Giveaway option.","payments.CheckedGiftCode":"Info about a Telegram Premium Giftcode.","payments.GiveawayInfo":"Info about a Telegram Premium Giveaway.","PrepaidGiveaway":"Contains info about a prepaid giveaway ».","Boost":"Info about one or more boosts applied by a specific user.","premium.BoostsList":"List of boosts that were applied to a peer by multiple users.","MyBoost":"Contains information about a single boost slot ».","premium.MyBoosts":"A list of peers we are currently boosting, and how many boost slots we have left.","premium.BoostsStatus":"Contains info about the current boost status of a peer.","StoryFwdHeader":"Contains info about the original poster of a reposted story.","PostInteractionCounters":"Interaction counters","stats.StoryStats":"Contains statistics about a story.","PublicForward":"Contains info about the forwards of a story as a message to public chats and reposts by public channels.","stats.PublicForwards":"Contains info about the forwards of a story as a message to public chats and reposts by public channels.","PeerColor":"Represents a color palette ».","help.PeerColorSet":"Contains info about a color palette ».","help.PeerColorOption":"Contains info about a color palette ».","help.PeerColors":"Contains info about multiple color palettes ».","StoryReaction":"How a certain peer reacted to or interacted with a story","stories.StoryReactionsList":"List of peers that reacted to a specific story","SavedDialog":"Represents a saved message dialog ».","messages.SavedDialogs":"Represents some saved message dialogs ».","SavedReactionTag":"Info about a saved message reaction tag ».","messages.SavedReactionTags":"List of reaction tag » names assigned by the user.","OutboxReadDate":"Exact read date of a private message we sent to another user.","smsjobs.EligibilityToJoin":"SMS jobs eligibility","smsjobs.Status":"Status","SmsJob":"Info about an SMS job.","BusinessWeeklyOpen":"A time interval, indicating the opening hours of a Telegram Business.","BusinessWorkHours":"Specifies a set of Telegram Business opening hours.","BusinessLocation":"Represents the location of a Telegram Business ».","InputBusinessRecipients":"Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.","BusinessRecipients":"Specifies the chats that can receive Telegram Business away » and greeting » messages.","BusinessAwayMessageSchedule":"Specifies when should the Telegram Business away messages be sent.","InputBusinessGreetingMessage":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","BusinessGreetingMessage":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","InputBusinessAwayMessage":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","BusinessAwayMessage":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","Timezone":"Timezone information.","help.TimezonesList":"Timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».","QuickReply":"A quick reply shortcut.","InputQuickReplyShortcut":"Represents a quick reply shortcut ».","messages.QuickReplies":"Info about quick reply shortcuts ».","ConnectedBot":"Contains info about a connected business bot ».","account.ConnectedBots":"Info about currently connected business bots.","messages.DialogFilters":"Folder information","Birthday":"Birthday information for a user.","BotBusinessConnection":"Contains info about a bot business connection.","InputBusinessIntro":"Telegram Business introduction ».","BusinessIntro":"Telegram Business introduction ».","messages.MyStickers":"The list of stickersets owned by the current account ».","InputCollectible":"Represents a Fragment collectible ».","fragment.CollectibleInfo":"Info about a fragment collectible.","InputBusinessBotRecipients":"Specifies the private chats that a connected business bot » may interact with.","BusinessBotRecipients":"Specifies the private chats that a connected business bot » may receive messages and interact with.","ContactBirthday":"Birthday information of a contact.","contacts.ContactBirthdays":"Birthday information of our contacts.","MissingInvitee":"Info about why a specific user could not be invited ».","messages.InvitedUsers":"Contains info about successfully or unsuccessfully invited » users.","InputBusinessChatLink":"Contains info about a business chat deep link » to be created by the current account.","BusinessChatLink":"Contains info about a business chat deep link » created by the current account.","account.BusinessChatLinks":"Contains info about business chat deep links » created by the current account.","account.ResolvedBusinessChatLinks":"Contains info about a single resolved business chat deep link ».","RequestedPeer":"Info about a peer, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.","SponsoredMessageReportOption":"A report option for a sponsored message ».","channels.SponsoredMessageReportResult":"Status of the method call used to report a sponsored message ».","stats.BroadcastRevenueStats":"Channel revenue ad statistics, see here » for more info.","stats.BroadcastRevenueWithdrawalUrl":"Contains the URL to use to withdraw channel ad revenue.","BroadcastRevenueTransaction":"A channel ad revenue » transaction.","stats.BroadcastRevenueTransactions":"Channel ad revenue transactions ».","ReactionNotificationsFrom":"Reaction notification settings","ReactionsNotifySettings":"Reaction notification settings, see here » for more info.","BroadcastRevenueBalances":"Channel ad revenue balance » information.","AvailableEffect":"Describes a message effect ».","messages.AvailableEffects":"Full list of usable animated message effects ».","FactCheck":"Represents a fact-check » created by an independent fact-checker.","StarsTransactionPeer":"Source of an incoming Telegram Star transaction, or its recipient for outgoing Telegram Star transactions.","StarsTopupOption":"Telegram Stars topup option.","StarsTransaction":"Represents a Telegram Stars transaction ».","payments.StarsStatus":"Info about the current Telegram Star balance and transaction history ».","FoundStory":"A story found using global story search ».","stories.FoundStories":"Stories found using global story search ».","GeoPointAddress":"Address optionally associated to a {@link RawGeoPoint}.","StarsRevenueStatus":"Describes Telegram Star revenue balances ».","payments.StarsRevenueStats":"Star revenue statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in Stars.","payments.StarsRevenueWithdrawalUrl":"Contains the URL to use to withdraw Telegram Star revenue.","payments.StarsRevenueAdsAccountUrl":"Contains a URL leading to a page where the user will be able to place ads for the channel/bot, paying using Telegram Stars.","InputStarsTransaction":"Used to fetch info about a Telegram Star transaction ».","StarsGiftOption":"Telegram Stars gift option.","bots.PopularAppBots":"Popular Main Mini Apps, to be used in the apps tab of global search ».","BotPreviewMedia":"Represents a Main Mini App preview media, see here » for more info.","bots.PreviewInfo":"Contains info about Main Mini App previews, see here » for more info."}} \ No newline at end of file +{"l":194,"e":[{"kind":"class","name":"error","type":"Error","id":3300522427,"comment":"Error.","arguments":[{"name":"code","type":"int","comment":"Error code"},{"name":"text","type":"string","comment":"Message"}]},{"kind":"class","name":"ipPort","id":3560156531,"type":"IpPort","arguments":[{"name":"ipv4","type":"int"},{"name":"port","type":"int"}]},{"kind":"class","name":"ipPortSecret","id":932718150,"type":"IpPort","arguments":[{"name":"ipv4","type":"int"},{"name":"port","type":"int"},{"name":"secret","type":"bytes"}]},{"kind":"class","name":"accessPointRule","id":1182381663,"type":"AccessPointRule","arguments":[{"name":"phone_prefix_rules","type":"string"},{"name":"dc_id","type":"int"},{"name":"ips","type":"IpPort","typeModifiers":{"isBareVector":true}}]},{"kind":"class","name":"help.configSimple","id":1515793004,"type":"help.ConfigSimple","arguments":[{"name":"date","type":"int"},{"name":"expires","type":"int"},{"name":"rules","type":"AccessPointRule","typeModifiers":{"isBareVector":true}}]},{"kind":"class","name":"inputPeerPhotoFileLocationLegacy","id":668375447,"type":"InputFileLocation","arguments":[{"name":"flags","type":"#"},{"name":"big","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"peer","type":"InputPeer"},{"name":"volume_id","type":"long"},{"name":"local_id","type":"int"}]},{"kind":"class","name":"inputStickerSetThumbLegacy","id":230353641,"type":"InputFileLocation","arguments":[{"name":"stickerset","type":"InputStickerSet"},{"name":"volume_id","type":"long"},{"name":"local_id","type":"int"}]},{"kind":"class","name":"inputPeerEmpty","type":"InputPeer","id":2134579434,"comment":"An empty constructor, no user or chat is defined.","arguments":[]},{"kind":"class","name":"inputPeerSelf","type":"InputPeer","id":2107670217,"comment":"Defines the current user.","arguments":[]},{"kind":"class","name":"inputPeerChat","type":"InputPeer","id":900291769,"comment":"Defines a chat for further interaction.","arguments":[{"name":"chat_id","type":"int53","comment":"Chat identifier"}]},{"kind":"class","name":"inputPeerUser","type":"InputPeer","id":3723011404,"comment":"Defines a user for further interaction.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"access_hash","type":"long","comment":"access_hash value from the {@link RawUser} constructor"}]},{"kind":"class","name":"inputPeerChannel","type":"InputPeer","id":666680316,"comment":"Defines a channel for further interaction.","arguments":[{"name":"channel_id","type":"int53","comment":"Channel identifier"},{"name":"access_hash","type":"long","comment":"access_hash value from the {@link RawChannel} constructor"}]},{"kind":"class","name":"inputPeerUserFromMessage","type":"InputPeer","id":2826635804,"comment":"Defines a min user that was seen in a certain message of a certain chat.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where the user was seen"},{"name":"msg_id","type":"int","comment":"The message ID"},{"name":"user_id","type":"int53","comment":"The identifier of the user that was seen"}]},{"kind":"class","name":"inputPeerChannelFromMessage","type":"InputPeer","id":3173648448,"comment":"Defines a min channel that was seen in a certain message of a certain chat.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where the channel's message was seen"},{"name":"msg_id","type":"int","comment":"The message ID"},{"name":"channel_id","type":"int53","comment":"The identifier of the channel that was seen"}]},{"kind":"class","name":"inputUserEmpty","type":"InputUser","id":3112732367,"comment":"Empty constructor, does not define a user.","arguments":[]},{"kind":"class","name":"inputUserSelf","type":"InputUser","id":4156666175,"comment":"Defines the current user.","arguments":[]},{"kind":"class","name":"inputUser","type":"InputUser","id":4061223110,"comment":"Defines a user for further interaction.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"access_hash","type":"long","comment":"access_hash value from the {@link RawUser} constructor"}]},{"kind":"class","name":"inputUserFromMessage","type":"InputUser","id":497305826,"comment":"Defines a min user that was seen in a certain message of a certain chat.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where the user was seen"},{"name":"msg_id","type":"int","comment":"The message ID"},{"name":"user_id","type":"int53","comment":"The identifier of the user that was seen"}]},{"kind":"class","name":"inputPhoneContact","type":"InputContact","id":4086478836,"comment":"Phone contact.","arguments":[{"name":"client_id","type":"long","comment":"An arbitrary 64-bit integer: it should be set, for example, to an incremental number when using {@link contacts.RawImportContactsRequest}, in order to retry importing only the contacts that weren't imported successfully, according to the client_ids returned in {@link contacts.RawImportedContacts}.retry_contacts."},{"name":"phone","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"Contact's first name"},{"name":"last_name","type":"string","comment":"Contact's last name"}]},{"kind":"class","name":"inputFile","type":"InputFile","id":4113560191,"comment":"Defines a file saved in parts using the method {@link upload.RawSaveFilePartRequest}.","arguments":[{"name":"id","type":"long","comment":"Random file identifier created by the client"},{"name":"parts","type":"int","comment":"Number of parts saved"},{"name":"name","type":"string","comment":"Full name of the file"},{"name":"md5_checksum","type":"string","comment":"In case the file's md5-hash was passed, contents of the file will be checked prior to use"}]},{"kind":"class","name":"inputFileBig","type":"InputFile","id":4199484341,"comment":"Assigns a big file (over 10 MB in size), saved in part using the method {@link upload.RawSaveBigFilePartRequest}.","arguments":[{"name":"id","type":"long","comment":"Random file id, created by the client"},{"name":"parts","type":"int","comment":"Number of parts saved"},{"name":"name","type":"string","comment":"Full file name"}]},{"kind":"class","name":"inputFileStoryDocument","type":"InputFile","id":1658620744,"comment":"Used to edit the thumbnail/static preview of a story, see here » for more info on the full flow.","arguments":[{"name":"id","type":"InputDocument","comment":"The old story video."}]},{"kind":"class","name":"inputMediaEmpty","type":"InputMedia","id":2523198847,"comment":"Empty media content of a message.","arguments":[]},{"kind":"class","name":"inputMediaUploadedPhoto","type":"InputMedia","id":505969924,"comment":"Photo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"file","type":"InputFile","comment":"The uploaded file"},{"name":"stickers","type":"InputDocument","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Attached mask stickers"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Time to live in seconds of self-destructing photo"}]},{"kind":"class","name":"inputMediaPhoto","type":"InputMedia","id":3015312949,"comment":"Forwarded photo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"id","type":"InputPhoto","comment":"Photo to be forwarded"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Time to live in seconds of self-destructing photo"}]},{"kind":"class","name":"inputMediaGeoPoint","type":"InputMedia","id":4190388548,"comment":"Map.","arguments":[{"name":"geo_point","type":"InputGeoPoint","comment":"GeoPoint"}]},{"kind":"class","name":"inputMediaContact","type":"InputMedia","id":4171988475,"comment":"Phone book contact","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"Contact's first name"},{"name":"last_name","type":"string","comment":"Contact's last name"},{"name":"vcard","type":"string","comment":"Contact vcard"}]},{"kind":"class","name":"inputMediaUploadedDocument","type":"InputMedia","id":1530447553,"comment":"New document","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"nosound_video","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the specified document is a video file with no audio tracks (a GIF animation (even as MPEG4), for example)"},{"name":"force_file","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Force the media file to be uploaded as document"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"file","type":"InputFile","comment":"The uploaded file"},{"name":"thumb","type":"InputFile","typeModifiers":{"predicate":"flags.2"},"comment":"Thumbnail of the document, uploaded as for the file"},{"name":"mime_type","type":"string","comment":"MIME type of document"},{"name":"attributes","type":"DocumentAttribute","typeModifiers":{"isVector":true},"comment":"Attributes that specify the type of the document (video, audio, voice, sticker, etc.)"},{"name":"stickers","type":"InputDocument","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Attached stickers"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Time to live in seconds of self-destructing document"}]},{"kind":"class","name":"inputMediaDocument","type":"InputMedia","id":860303448,"comment":"Forwarded document","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"id","type":"InputDocument","comment":"The document to be forwarded."},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Time to live of self-destructing document"},{"name":"query","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Text query or emoji that was used by the user to find this sticker or GIF: used to improve search result relevance."}]},{"kind":"class","name":"inputMediaVenue","type":"InputMedia","id":3242007569,"comment":"Can be used to send a venue geolocation.","arguments":[{"name":"geo_point","type":"InputGeoPoint","comment":"Geolocation"},{"name":"title","type":"string","comment":"Venue name"},{"name":"address","type":"string","comment":"Physical address of the venue"},{"name":"provider","type":"string","comment":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported"},{"name":"venue_id","type":"string","comment":"Venue ID in the provider's database"},{"name":"venue_type","type":"string","comment":"Venue type in the provider's database"}]},{"kind":"class","name":"inputMediaPhotoExternal","type":"InputMedia","id":3854302746,"comment":"New photo that will be uploaded by the server using the specified URL","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"url","type":"string","comment":"URL of the photo"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Self-destruct time to live of photo"}]},{"kind":"class","name":"inputMediaDocumentExternal","type":"InputMedia","id":4216511641,"comment":"Document that will be downloaded by the telegram servers","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"url","type":"string","comment":"URL of the document"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Self-destruct time to live of document"}]},{"kind":"class","name":"inputMediaGame","type":"InputMedia","id":3544138739,"comment":"A game","arguments":[{"name":"id","type":"InputGame","comment":"The game to forward"}]},{"kind":"class","name":"inputMediaInvoice","type":"InputMedia","id":1080028941,"comment":"Generated invoice of a bot payment","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Product name, 1-32 characters"},{"name":"description","type":"string","comment":"Product description, 1-255 characters"},{"name":"photo","type":"InputWebDocument","typeModifiers":{"predicate":"flags.0"},"comment":"URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for."},{"name":"invoice","type":"Invoice","comment":"The actual invoice"},{"name":"payload","type":"bytes","comment":"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes."},{"name":"provider","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Payments provider token, obtained via Botfather"},{"name":"provider_data","type":"DataJSON","comment":"JSON-encoded data about the invoice, which will be shared with the payment provider. A detailed description of required fields should be provided by the payment provider."},{"name":"start_param","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Unique bot deep links start parameter. If present, forwarded copies of the sent message will have a URL button with a deep link to the bot (instead of a Pay button), with the value used as the start parameter. If absent, forwarded copies of the sent message will have a Pay button, allowing multiple users to pay directly from the forwarded message, using the same invoice."},{"name":"extended_media","type":"InputMedia","typeModifiers":{"predicate":"flags.2"},"comment":"Deprecated"}]},{"kind":"class","name":"inputMediaGeoLive","type":"InputMedia","id":2535434307,"comment":"Live geolocation","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"stopped","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether sending of the geolocation was stopped"},{"name":"geo_point","type":"InputGeoPoint","comment":"Current geolocation"},{"name":"heading","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"For live locations, a direction in which the location moves, in degrees; 1-360."},{"name":"period","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Validity period of the current location"},{"name":"proximity_notification_radius","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)"}]},{"kind":"class","name":"inputMediaPoll","type":"InputMedia","id":261416433,"comment":"A poll","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"poll","type":"Poll","comment":"The poll to send"},{"name":"correct_answers","type":"bytes","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Correct answer IDs (for quiz polls)"},{"name":"solution","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Explanation of quiz solution"},{"name":"solution_entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"}]},{"kind":"class","name":"inputMediaDice","type":"InputMedia","id":3866083195,"comment":"Send a dice-based animated sticker","arguments":[{"name":"emoticon","type":"string","comment":"The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported"}]},{"kind":"class","name":"inputMediaStory","type":"InputMedia","id":2315114360,"comment":"Forwarded story","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the story was posted"},{"name":"id","type":"int","comment":"Story ID"}]},{"kind":"class","name":"inputMediaWebPage","type":"InputMedia","id":3256584265,"comment":"Specifies options that will be used to generate the link preview for the caption, or even a standalone link preview without an attached message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force_large_media","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, specifies that a large media preview should be used."},{"name":"force_small_media","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, specifies that a small media preview should be used."},{"name":"optional","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If not set, a WEBPAGE_NOT_FOUND RPC error will be emitted if a webpage preview cannot be generated for the specified url; otherwise, no error will be emitted (unless the provided message is also empty, in which case a MESSAGE_EMPTY will be emitted, instead)."},{"name":"url","type":"string","comment":"The URL to use for the link preview."}]},{"kind":"class","name":"inputMediaPaidMedia","id":3289396102,"type":"InputMedia","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"stars_amount","type":"long","comment":"The price of the media in Telegram Stars."},{"name":"extended_media","type":"InputMedia","typeModifiers":{"isVector":true},"comment":"Photos or videos."},{"name":"payload","type":"string","typeModifiers":{"predicate":"flags.0"}}],"comment":"Paid media, see here » for more info."},{"kind":"class","name":"inputChatPhotoEmpty","type":"InputChatPhoto","id":480546647,"comment":"Empty constructor, remove group photo.","arguments":[]},{"kind":"class","name":"inputChatUploadedPhoto","type":"InputChatPhoto","id":3184373440,"comment":"New photo to be set as group profile photo.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"file","type":"InputFile","typeModifiers":{"predicate":"flags.0"},"comment":"File saved in parts using the method {@link upload.RawSaveFilePartRequest}"},{"name":"video","type":"InputFile","typeModifiers":{"predicate":"flags.1"},"comment":"Square video for animated profile picture"},{"name":"video_start_ts","type":"double","typeModifiers":{"predicate":"flags.2"},"comment":"Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set."},{"name":"video_emoji_markup","type":"VideoSize","typeModifiers":{"predicate":"flags.3"},"comment":"Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor."}]},{"kind":"class","name":"inputChatPhoto","type":"InputChatPhoto","id":2303962423,"comment":"Existing photo to be set as a chat profile photo.","arguments":[{"name":"id","type":"InputPhoto","comment":"Existing photo"}]},{"kind":"class","name":"inputGeoPointEmpty","type":"InputGeoPoint","id":3837862870,"comment":"Empty GeoPoint constructor.","arguments":[]},{"kind":"class","name":"inputGeoPoint","type":"InputGeoPoint","id":1210199983,"comment":"Defines a GeoPoint by its coordinates.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"lat","type":"double","comment":"Latitude"},{"name":"long","type":"double","comment":"Longitude"},{"name":"accuracy_radius","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"The estimated horizontal accuracy of the location, in meters; as defined by the sender."}]},{"kind":"class","name":"inputPhotoEmpty","type":"InputPhoto","id":483901197,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"inputPhoto","type":"InputPhoto","id":1001634122,"comment":"Defines a photo for further interaction.","arguments":[{"name":"id","type":"long","comment":"Photo identifier"},{"name":"access_hash","type":"long","comment":"access_hash value from the {@link RawPhoto} constructor"},{"name":"file_reference","type":"bytes","comment":"File reference"}]},{"kind":"class","name":"inputFileLocation","type":"InputFileLocation","id":3755650017,"comment":"DEPRECATED location of a photo","arguments":[{"name":"volume_id","type":"long","comment":"Server volume"},{"name":"local_id","type":"int","comment":"File identifier"},{"name":"secret","type":"long","comment":"Check sum to access the file"},{"name":"file_reference","type":"bytes","comment":"File reference"}]},{"kind":"class","name":"inputEncryptedFileLocation","type":"InputFileLocation","id":4112735573,"comment":"Location of encrypted secret chat file.","arguments":[{"name":"id","type":"long","comment":"File ID, id parameter value from {@link RawEncryptedFile}"},{"name":"access_hash","type":"long","comment":"Checksum, access_hash parameter value from {@link RawEncryptedFile}"}]},{"kind":"class","name":"inputDocumentFileLocation","type":"InputFileLocation","id":3134223748,"comment":"Document location (video, voice, audio, basically every type except photo)","arguments":[{"name":"id","type":"long","comment":"Document ID"},{"name":"access_hash","type":"long","comment":"access_hash parameter from the {@link RawDocument} constructor"},{"name":"file_reference","type":"bytes","comment":"File reference"},{"name":"thumb_size","type":"string","comment":"Thumbnail size to download the thumbnail"}]},{"kind":"class","name":"inputSecureFileLocation","type":"InputFileLocation","id":3418877480,"comment":"Location of encrypted telegram passport file.","arguments":[{"name":"id","type":"long","comment":"File ID, id parameter value from {@link RawSecureFile}"},{"name":"access_hash","type":"long","comment":"Checksum, access_hash parameter value from {@link RawSecureFile}"}]},{"kind":"class","name":"inputTakeoutFileLocation","type":"InputFileLocation","id":700340377,"comment":"Used to download a JSON file that will contain all personal data related to features that do not have a specialized takeout method yet, see here » for more info on the takeout API.","arguments":[]},{"kind":"class","name":"inputPhotoFileLocation","type":"InputFileLocation","id":1075322878,"comment":"Use this object to download a photo with {@link upload.RawGetFileRequest} method","arguments":[{"name":"id","type":"long","comment":"Photo ID, obtained from the {@link RawPhoto} object"},{"name":"access_hash","type":"long","comment":"Photo's access hash, obtained from the {@link RawPhoto} object"},{"name":"file_reference","type":"bytes","comment":"File reference"},{"name":"thumb_size","type":"string","comment":"The PhotoSize to download: must be set to the type field of the desired PhotoSize object of the {@link RawPhoto}"}]},{"kind":"class","name":"inputPhotoLegacyFileLocation","type":"InputFileLocation","id":3627312883,"comment":"DEPRECATED legacy photo file location","arguments":[{"name":"id","type":"long","comment":"Photo ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"file_reference","type":"bytes","comment":"File reference"},{"name":"volume_id","type":"long","comment":"Volume ID"},{"name":"local_id","type":"int","comment":"Local ID"},{"name":"secret","type":"long","comment":"Secret"}]},{"kind":"class","name":"inputPeerPhotoFileLocation","type":"InputFileLocation","id":925204121,"comment":"Location of profile photo of channel/group/supergroup/user","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"big","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to download the high-quality version of the picture"},{"name":"peer","type":"InputPeer","comment":"The peer whose profile picture should be downloaded"},{"name":"photo_id","type":"long","comment":"Photo ID"}]},{"kind":"class","name":"inputStickerSetThumb","type":"InputFileLocation","id":2642736091,"comment":"Location of stickerset thumbnail (see files)","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Sticker set"},{"name":"thumb_version","type":"int","comment":"Thumbnail version"}]},{"kind":"class","name":"inputGroupCallStream","type":"InputFileLocation","id":93890858,"comment":"Chunk of a livestream","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"call","type":"InputGroupCall","comment":"Livestream info"},{"name":"time_ms","type":"long","comment":"Timestamp in milliseconds"},{"name":"scale","type":"int","comment":"Specifies the duration of the video segment to fetch in milliseconds, by bitshifting 1000 to the right scale times: duration_ms := 1000 >> scale"},{"name":"video_channel","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Selected video channel"},{"name":"video_quality","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Selected video quality (0 = lowest, 1 = medium, 2 = best)"}]},{"kind":"class","name":"peerUser","type":"Peer","id":1498486562,"comment":"Chat partner","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"}]},{"kind":"class","name":"peerChat","type":"Peer","id":918946202,"comment":"Group.","arguments":[{"name":"chat_id","type":"int53","comment":"Group identifier"}]},{"kind":"class","name":"peerChannel","type":"Peer","id":2728736542,"comment":"Channel/supergroup","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"}]},{"kind":"class","name":"storage.fileUnknown","type":"storage.FileType","id":2861972229,"comment":"Unknown type.","arguments":[]},{"kind":"class","name":"storage.filePartial","type":"storage.FileType","id":1086091090,"comment":"Part of a bigger file.","arguments":[]},{"kind":"class","name":"storage.fileJpeg","type":"storage.FileType","id":8322574,"comment":"JPEG image. MIME type: image/jpeg.","arguments":[]},{"kind":"class","name":"storage.fileGif","type":"storage.FileType","id":3403786975,"comment":"GIF image. MIME type: image/gif.","arguments":[]},{"kind":"class","name":"storage.filePng","type":"storage.FileType","id":172975040,"comment":"PNG image. MIME type: image/png.","arguments":[]},{"kind":"class","name":"storage.filePdf","type":"storage.FileType","id":2921222285,"comment":"PDF document image. MIME type: application/pdf.","arguments":[]},{"kind":"class","name":"storage.fileMp3","type":"storage.FileType","id":1384777335,"comment":"Mp3 audio. MIME type: audio/mpeg.","arguments":[]},{"kind":"class","name":"storage.fileMov","type":"storage.FileType","id":1258941372,"comment":"Quicktime video. MIME type: video/quicktime.","arguments":[]},{"kind":"class","name":"storage.fileMp4","type":"storage.FileType","id":3016663268,"comment":"MPEG-4 video. MIME type: video/mp4.","arguments":[]},{"kind":"class","name":"storage.fileWebp","type":"storage.FileType","id":276907596,"comment":"WEBP image. MIME type: image/webp.","arguments":[]},{"kind":"class","name":"userEmpty","type":"User","id":3552332666,"comment":"Empty constructor, non-existent user.","arguments":[{"name":"id","type":"int53","comment":"User identifier or 0"}]},{"kind":"class","name":"user","type":"User","id":2201046986,"comment":"Indicates info about a certain user.\n\nUnless specified otherwise, when updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nSee here » for an implementation of the logic to use when updating the local user peer database.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"self","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Whether this user indicates the currently logged in user"},{"name":"contact","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether this user is a contact
When updating the local peer database, do not apply changes to this field if the min flag is set."},{"name":"mutual_contact","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether this user is a mutual contact.
When updating the local peer database, do not apply changes to this field if the min flag is set."},{"name":"deleted","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether the account of this user was deleted.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info."},{"name":"bot","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Is this user a bot?
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info."},{"name":"bot_chat_history","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Can the bot see all messages in groups?"},{"name":"bot_nochats","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"Can the bot be added to groups?"},{"name":"verified","type":"true","typeModifiers":{"predicate":"flags.17"},"comment":"Whether this user is verified"},{"name":"restricted","type":"true","typeModifiers":{"predicate":"flags.18"},"comment":"Access to this user must be restricted for the reason specified in restriction_reason"},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.20"},"comment":"See min"},{"name":"bot_inline_geo","type":"true","typeModifiers":{"predicate":"flags.21"},"comment":"Whether the bot can request our geolocation in inline mode"},{"name":"support","type":"true","typeModifiers":{"predicate":"flags.23"},"comment":"Whether this is an official support user"},{"name":"scam","type":"true","typeModifiers":{"predicate":"flags.24"},"comment":"This may be a scam user"},{"name":"apply_min_photo","type":"true","typeModifiers":{"predicate":"flags.25"},"comment":"If set and min is set, the value of photo can be used to update the local database, see the documentation of that flag for more info."},{"name":"fake","type":"true","typeModifiers":{"predicate":"flags.26"},"comment":"If set, this user was reported by many users as a fake or scam user: be careful when interacting with them."},{"name":"bot_attach_menu","type":"true","typeModifiers":{"predicate":"flags.27"},"comment":"Whether this bot offers an attachment menu web app"},{"name":"premium","type":"true","typeModifiers":{"predicate":"flags.28"},"comment":"Whether this user is a Telegram Premium user
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info.
Changes to this flag if the self flag is set should also trigger the following calls, to refresh the respective caches:
- The {@link help.RawGetConfigRequest} cache
- The {@link messages.RawGetTopReactionsRequest} cache if the bot flag is not set"},{"name":"attach_menu_enabled","type":"true","typeModifiers":{"predicate":"flags.29"},"comment":"Whether we installed the attachment menu web app offered by this bot.
When updating the local peer database, do not apply changes to this field if the min flag is set."},{"name":"flags2","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bot_can_edit","type":"true","typeModifiers":{"predicate":"flags2.1"},"comment":"Whether we can edit the profile picture, name, about text and description of this bot because we own it.
When updating the local peer database, do not apply changes to this field if the min flag is set.
Changes to this flag (if min is not set) should invalidate the local {@link RawUserFull} cache for this user ID."},{"name":"close_friend","type":"true","typeModifiers":{"predicate":"flags2.2"},"comment":"Whether we marked this user as a close friend, see here » for more info.
When updating the local peer database, do not apply changes to this field if the min flag is set."},{"name":"stories_hidden","type":"true","typeModifiers":{"predicate":"flags2.3"},"comment":"Whether we have hidden » all active stories of this user.
When updating the local peer database, do not apply changes to this field if the min flag is set."},{"name":"stories_unavailable","type":"true","typeModifiers":{"predicate":"flags2.4"},"comment":"No stories from this user are visible."},{"name":"contact_require_premium","type":"true","typeModifiers":{"predicate":"flags2.10"},"comment":"If set, we can only write to this user if they have already sent some messages to us, if we are subscribed to Telegram Premium, or if they're a mutual contact ({@link RawUser}.mutual_contact).
All the secondary conditions listed above must be checked separately to verify whether we can still write to the user, even if this flag is set (i.e. a mutual contact will have this flag set even if we can still write to them, and so on...); to avoid doing these extra checks if we haven't yet cached all the required information (for example while displaying the chat list in the sharing UI) the {@link users.RawGetIsPremiumRequiredToContactRequest} method may be invoked instead, passing the list of users currently visible in the UI, returning a list of booleans that directly specify whether we can or cannot write to each user; alternatively, the {@link RawUserFull}.contact_require_premium flag contains the same (fully checked, i.e. it's not just a copy of this flag) info returned by {@link users.RawGetIsPremiumRequiredToContactRequest}.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.new_noncontact_peers_require_premium flag."},{"name":"bot_business","type":"true","typeModifiers":{"predicate":"flags2.11"},"comment":"Whether this bot can be connected to a user as specified here »."},{"name":"bot_has_main_app","type":"true","typeModifiers":{"predicate":"flags2.13"},"comment":"If set, this bot has configured a Main Mini App »."},{"name":"id","type":"int53","comment":"ID of the user, see here » for more info."},{"name":"access_hash","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"Access hash of the user, see here » for more info.
If this flag is set, when updating the local peer database, generate a virtual flag called min_access_hash, which is:
- Set to true if min is set AND
-- The phone flag is not set OR
-- The phone flag is set and the associated phone number string is non-empty
- Set to false otherwise.

Then, apply both access_hash and min_access_hash to the local database if:
- min_access_hash is false OR
- min_access_hash is true AND
-- There is no locally cached object for this user OR
-- There is no access_hash in the local cache OR
-- The cached object's min_access_hash is also true

If the final merged object stored to the database has the min_access_hash field set to true, the related access_hash is only suitable to use in {@link RawInputPeerPhotoFileLocation}, to directly download the profile pictures of users, everywhere else a inputPeer*FromMessage constructor will have to be generated as specified here ».
Bots can also use min access hashes in some conditions, by passing 0 instead of the min access hash."},{"name":"first_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"First name.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set."},{"name":"last_name","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Last name.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set."},{"name":"username","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Main active username.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID if the above conditions are respected and the bot_can_edit flag is also set."},{"name":"phone","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Phone number.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set."},{"name":"photo","type":"UserProfilePhoto","typeModifiers":{"predicate":"flags.5"},"comment":"Profile picture of user.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The apply_min_photo flag is set OR
-- The min flag of the locally cached user entry is set."},{"name":"status","type":"UserStatus","typeModifiers":{"predicate":"flags.6"},"comment":"Online status of user.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set OR
-- The locally cached user entry is equal to {@link RawUserStatusEmpty}."},{"name":"bot_info_version","type":"int","typeModifiers":{"predicate":"flags.14"},"comment":"Version of the {@link RawUserFull}, incremented every time it changes.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info."},{"name":"restriction_reason","type":"RestrictionReason","typeModifiers":{"predicate":"flags.18","isVector":true},"comment":"Contains the reason why access to this user must be restricted."},{"name":"bot_inline_placeholder","type":"string","typeModifiers":{"predicate":"flags.19"},"comment":"Inline placeholder for this inline bot"},{"name":"lang_code","type":"string","typeModifiers":{"predicate":"flags.22"},"comment":"Language code of the user"},{"name":"emoji_status","type":"EmojiStatus","typeModifiers":{"predicate":"flags.30"},"comment":"Emoji status"},{"name":"usernames","type":"Username","typeModifiers":{"predicate":"flags2.0","isVector":true},"comment":"Additional usernames.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set.
Changes to this flag (if the above conditions are respected) should invalidate the local {@link RawUserFull} cache for this user ID."},{"name":"stories_max_id","type":"int","typeModifiers":{"predicate":"flags2.5"},"comment":"ID of the maximum read story.
When updating the local peer database, do not apply changes to this field if the min flag of the incoming constructor is set."},{"name":"color","type":"PeerColor","typeModifiers":{"predicate":"flags2.8"},"comment":"The user's accent color."},{"name":"profile_color","type":"PeerColor","typeModifiers":{"predicate":"flags2.9"},"comment":"The user's profile color."},{"name":"bot_active_users","type":"int","typeModifiers":{"predicate":"flags2.12"},"comment":"Monthly Active Users (MAU) of this bot (may be absent for small bots)."}]},{"kind":"class","name":"userProfilePhotoEmpty","type":"UserProfilePhoto","id":1326562017,"comment":"Profile photo has not been set, or was hidden.","arguments":[]},{"kind":"class","name":"userProfilePhoto","type":"UserProfilePhoto","id":2194798342,"comment":"User profile photo.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_video","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether an animated profile picture is available for this user"},{"name":"personal","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this profile photo is only visible to us (i.e. it was set using {@link photos.RawUploadContactProfilePhotoRequest})."},{"name":"photo_id","type":"long","comment":"Identifier of the respective photo"},{"name":"stripped_thumb","type":"bytes","typeModifiers":{"predicate":"flags.1"},"comment":"Stripped thumbnail"},{"name":"dc_id","type":"int","comment":"DC ID where the photo is stored"}]},{"kind":"class","name":"userStatusEmpty","type":"UserStatus","id":164646985,"comment":"User status has not been set yet.","arguments":[]},{"kind":"class","name":"userStatusOnline","type":"UserStatus","id":3988339017,"comment":"Online status of the user.","arguments":[{"name":"expires","type":"int","comment":"Time to expiration of the current online status"}]},{"kind":"class","name":"userStatusOffline","type":"UserStatus","id":9203775,"comment":"The user's offline status.","arguments":[{"name":"was_online","type":"int","comment":"Time the user was last seen online"}]},{"kind":"class","name":"userStatusRecently","type":"UserStatus","id":2065268168,"comment":"Online status: last seen recently","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"by_me","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info."}]},{"kind":"class","name":"userStatusLastWeek","type":"UserStatus","id":1410997530,"comment":"Online status: last seen last week","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"by_me","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info."}]},{"kind":"class","name":"userStatusLastMonth","type":"UserStatus","id":1703516023,"comment":"Online status: last seen last month","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"by_me","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info."}]},{"kind":"class","name":"chatEmpty","type":"Chat","id":693512293,"comment":"Empty constructor, group doesn't exist","arguments":[{"name":"id","type":"int53","comment":"Group identifier"}]},{"kind":"class","name":"chat","type":"Chat","id":1103884886,"comment":"Info about a group.\n\nWhen updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nSee here » for an implementation of the logic to use when updating the local user peer database.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the current user is the creator of the group"},{"name":"left","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the current user has left the group"},{"name":"deactivated","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the group was migrated"},{"name":"call_active","type":"true","typeModifiers":{"predicate":"flags.23"},"comment":"Whether a group call is currently active"},{"name":"call_not_empty","type":"true","typeModifiers":{"predicate":"flags.24"},"comment":"Whether there's anyone in the group call"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.25"},"comment":"Whether this group is protected, thus does not allow forwarding messages from it"},{"name":"id","type":"int53","comment":"ID of the group, see here » for more info"},{"name":"title","type":"string","comment":"Title"},{"name":"photo","type":"ChatPhoto","comment":"Chat photo"},{"name":"participants_count","type":"int","comment":"Participant count"},{"name":"date","type":"int","comment":"Date of creation of the group"},{"name":"version","type":"int","comment":"Used in basic groups to reorder updates and make sure that all of them were received."},{"name":"migrated_to","type":"InputChannel","typeModifiers":{"predicate":"flags.6"},"comment":"Means this chat was upgraded to a supergroup"},{"name":"admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.14"},"comment":"Admin rights of the user in the group"},{"name":"default_banned_rights","type":"ChatBannedRights","typeModifiers":{"predicate":"flags.18"},"comment":"Default banned rights of all users in the group"}]},{"kind":"class","name":"chatForbidden","type":"Chat","id":1704108455,"comment":"A group to which the user has no access. E.g., because the user was kicked from the group.","arguments":[{"name":"id","type":"int53","comment":"User identifier"},{"name":"title","type":"string","comment":"Group name"}]},{"kind":"class","name":"channel","id":4265900221,"type":"Chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the current user is the creator of this channel"},{"name":"left","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the current user has left or is not a member of this channel"},{"name":"broadcast","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Is this a channel?"},{"name":"verified","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Is this channel verified by telegram?"},{"name":"megagroup","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Is this a supergroup?
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"restricted","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether viewing/writing in this channel for a reason (see restriction_reason)"},{"name":"signatures","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether signatures are enabled (channels)"},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"See min"},{"name":"scam","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"This channel/supergroup is probably a scam
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"has_link","type":"true","typeModifiers":{"predicate":"flags.20"},"comment":"Whether this channel has a linked discussion group » (or this supergroup is a channel's discussion group). The actual ID of the linked channel/supergroup is contained in {@link RawChannelFull}.linked_chat_id.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"has_geo","type":"true","typeModifiers":{"predicate":"flags.21"},"comment":"Whether this channel has a geo position"},{"name":"slowmode_enabled","type":"true","typeModifiers":{"predicate":"flags.22"},"comment":"Whether slow mode is enabled for groups to prevent flood in chat.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"call_active","type":"true","typeModifiers":{"predicate":"flags.23"},"comment":"Whether a group call or livestream is currently active"},{"name":"call_not_empty","type":"true","typeModifiers":{"predicate":"flags.24"},"comment":"Whether there's anyone in the group call or livestream"},{"name":"fake","type":"true","typeModifiers":{"predicate":"flags.25"},"comment":"If set, this supergroup/channel was reported by many users as a fake or scam: be careful when interacting with it.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"gigagroup","type":"true","typeModifiers":{"predicate":"flags.26"},"comment":"Whether this supergroup is a gigagroup
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.27"},"comment":"Whether this channel or group is protected, thus does not allow forwarding messages from it"},{"name":"join_to_send","type":"true","typeModifiers":{"predicate":"flags.28"},"comment":"Whether a user needs to join the supergroup before they can send messages: can be false only for discussion groups », toggle using {@link channels.RawToggleJoinToSendRequest}
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"join_request","type":"true","typeModifiers":{"predicate":"flags.29"},"comment":"Whether a user's join request will have to be approved by administrators, toggle using {@link channels.RawToggleJoinRequestRequest}
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"forum","type":"true","typeModifiers":{"predicate":"flags.30"},"comment":"Whether this supergroup is a forum.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"flags2","type":"#","comment":"Flags, see TL conditional fields"},{"name":"stories_hidden","type":"true","typeModifiers":{"predicate":"flags2.1"},"comment":"Whether we have hidden all stories posted by this channel »."},{"name":"stories_hidden_min","type":"true","typeModifiers":{"predicate":"flags2.2"},"comment":"If set, indicates that the stories_hidden flag was not populated, and its value must cannot be relied on; use the previously cached value, or re-fetch the constructor using {@link channels.RawGetChannelsRequest} to obtain the latest value of the stories_hidden flag."},{"name":"stories_unavailable","type":"true","typeModifiers":{"predicate":"flags2.3"},"comment":"No stories from the channel are visible."},{"name":"signature_profiles","type":"true","typeModifiers":{"predicate":"flags2.12"},"comment":"If set, messages sent by admins to this channel will link to the admin's profile (just like with groups)."},{"name":"id","type":"int53","comment":"ID of the channel, see here » for more info"},{"name":"access_hash","type":"long","typeModifiers":{"predicate":"flags.13"},"comment":"Access hash, see here » for more info"},{"name":"title","type":"string","comment":"Title"},{"name":"username","type":"string","typeModifiers":{"predicate":"flags.6"},"comment":"Main active username."},{"name":"photo","type":"ChatPhoto","comment":"Profile photo"},{"name":"date","type":"int","comment":"Date when the user joined the supergroup/channel, or if the user isn't a member, its creation date"},{"name":"restriction_reason","type":"RestrictionReason","typeModifiers":{"predicate":"flags.9","isVector":true},"comment":"Contains the reason why access to this channel must be restricted.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.14"},"comment":"Admin rights of the user in this channel (see rights)"},{"name":"banned_rights","type":"ChatBannedRights","typeModifiers":{"predicate":"flags.15"},"comment":"Banned rights of the user in this channel (see rights)"},{"name":"default_banned_rights","type":"ChatBannedRights","typeModifiers":{"predicate":"flags.18"},"comment":"Default chat rights (see rights)"},{"name":"participants_count","type":"int","typeModifiers":{"predicate":"flags.17"},"comment":"Participant count"},{"name":"usernames","type":"Username","typeModifiers":{"predicate":"flags2.0","isVector":true},"comment":"Additional usernames"},{"name":"stories_max_id","type":"int","typeModifiers":{"predicate":"flags2.4"},"comment":"ID of the maximum read story."},{"name":"color","type":"PeerColor","typeModifiers":{"predicate":"flags2.7"},"comment":"The channel's accent color."},{"name":"profile_color","type":"PeerColor","typeModifiers":{"predicate":"flags2.8"},"comment":"The channel's profile color."},{"name":"emoji_status","type":"EmojiStatus","typeModifiers":{"predicate":"flags2.9"},"comment":"Emoji status"},{"name":"level","type":"int","typeModifiers":{"predicate":"flags2.10"},"comment":"Boost level.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info."},{"name":"subscription_until_date","type":"int","typeModifiers":{"predicate":"flags2.11"},"comment":"Expiration date of the Telegram Star subscription » the current user has bought to gain access to this channel."}],"comment":"Channel/supergroup info\n\nWhen updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nThe only exception to the above rule is when the min flag is set, in which case only the following fields must be applied over any locally stored version:\n\nSee here » for an implementation of the logic to use when updating the local user peer database."},{"kind":"class","name":"channelForbidden","type":"Chat","id":399807445,"comment":"Indicates a channel/supergroup we can't access because we were banned, or for some other reason.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"broadcast","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Is this a channel"},{"name":"megagroup","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Is this a supergroup"},{"name":"id","type":"int53","comment":"Channel ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"title","type":"string","comment":"Title"},{"name":"until_date","type":"int","typeModifiers":{"predicate":"flags.16"},"comment":"The ban is valid until the specified date"}]},{"kind":"class","name":"chatFull","type":"ChatFull","id":640893467,"comment":"Full info about a basic group.\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_set_username","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Can we change the username of this chat"},{"name":"has_scheduled","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Whether scheduled messages are available"},{"name":"translations_disabled","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"Whether the real-time chat translation popup should be hidden."},{"name":"id","type":"int53","comment":"ID of the chat"},{"name":"about","type":"string","comment":"About string for this chat"},{"name":"participants","type":"ChatParticipants","comment":"Participant list"},{"name":"chat_photo","type":"Photo","typeModifiers":{"predicate":"flags.2"},"comment":"Chat photo"},{"name":"notify_settings","type":"PeerNotifySettings","comment":"Notification settings"},{"name":"exported_invite","type":"ExportedChatInvite","typeModifiers":{"predicate":"flags.13"},"comment":"Chat invite"},{"name":"bot_info","type":"BotInfo","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Info about bots that are in this chat"},{"name":"pinned_msg_id","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Message ID of the last pinned message"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.11"},"comment":"Peer folder ID, for more info click here"},{"name":"call","type":"InputGroupCall","typeModifiers":{"predicate":"flags.12"},"comment":"Group call information"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.14"},"comment":"Time-To-Live of messages sent by the current user to this chat"},{"name":"groupcall_default_join_as","type":"Peer","typeModifiers":{"predicate":"flags.15"},"comment":"When using {@link phone.RawGetGroupCallJoinAsRequest} to get a list of peers that can be used to join a group call, this field indicates the peer that should be selected by default."},{"name":"theme_emoticon","type":"string","typeModifiers":{"predicate":"flags.16"},"comment":"Emoji representing a specific chat theme"},{"name":"requests_pending","type":"int","typeModifiers":{"predicate":"flags.17"},"comment":"Pending join requests »"},{"name":"recent_requesters","type":"long","typeModifiers":{"predicate":"flags.17","isVector":true},"comment":"IDs of users who requested to join recently"},{"name":"available_reactions","type":"ChatReactions","typeModifiers":{"predicate":"flags.18"},"comment":"Allowed message reactions »"},{"name":"reactions_limit","type":"int","typeModifiers":{"predicate":"flags.20"},"comment":"This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max)."}]},{"kind":"class","name":"channelFull","type":"ChatFull","id":3148559501,"comment":"Full info about a channel, supergroup or gigagroup.\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_view_participants","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Can we view the participant list?"},{"name":"can_set_username","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Can we set the channel's username?"},{"name":"can_set_stickers","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Can we {@link channels.RawSetStickersRequest} a stickerpack to the supergroup?"},{"name":"hidden_prehistory","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Is the history before we joined hidden to us?"},{"name":"can_set_location","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"Can we set the geolocation of this group (for geogroups)"},{"name":"has_scheduled","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"Whether scheduled messages are available"},{"name":"can_view_stats","type":"true","typeModifiers":{"predicate":"flags.20"},"comment":"Can the user view channel/supergroup statistics"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.22"},"comment":"Whether any anonymous admin of this supergroup was blocked: if set, you won't receive messages from anonymous group admins in discussion replies via @replies"},{"name":"flags2","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_delete_channel","type":"true","typeModifiers":{"predicate":"flags2.0"},"comment":"Can we delete this channel?"},{"name":"antispam","type":"true","typeModifiers":{"predicate":"flags2.1"},"comment":"Whether native antispam functionality is enabled in this supergroup."},{"name":"participants_hidden","type":"true","typeModifiers":{"predicate":"flags2.2"},"comment":"Whether the participant list is hidden."},{"name":"translations_disabled","type":"true","typeModifiers":{"predicate":"flags2.3"},"comment":"Whether the real-time chat translation popup should be hidden."},{"name":"stories_pinned_available","type":"true","typeModifiers":{"predicate":"flags2.5"},"comment":"Whether this user has some pinned stories."},{"name":"view_forum_as_messages","type":"true","typeModifiers":{"predicate":"flags2.6"},"comment":"Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
This setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of this flag."},{"name":"restricted_sponsored","type":"true","typeModifiers":{"predicate":"flags2.11"},"comment":"Whether ads on this channel were disabled as specified here » (this flag is only visible to the owner of the channel)."},{"name":"can_view_revenue","type":"true","typeModifiers":{"predicate":"flags2.12"},"comment":"If set, this user can view ad revenue statistics » for this channel."},{"name":"paid_media_allowed","type":"true","typeModifiers":{"predicate":"flags2.14"},"comment":"Whether the current user can send or forward paid media » to this channel."},{"name":"can_view_stars_revenue","type":"true","typeModifiers":{"predicate":"flags2.15"},"comment":"If set, this user can view Telegram Star revenue statistics » for this channel."},{"name":"paid_reactions_available","type":"true","typeModifiers":{"predicate":"flags2.16"},"comment":"If set, users may send paid Telegram Star reactions » to messages of this channel."},{"name":"id","type":"int53","comment":"ID of the channel"},{"name":"about","type":"string","comment":"Info about the channel"},{"name":"participants_count","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Number of participants of the channel"},{"name":"admins_count","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Number of channel admins"},{"name":"kicked_count","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Number of users kicked from the channel"},{"name":"banned_count","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Number of users banned from the channel"},{"name":"online_count","type":"int","typeModifiers":{"predicate":"flags.13"},"comment":"Number of users currently online"},{"name":"read_inbox_max_id","type":"int","comment":"Position up to which all incoming messages are read."},{"name":"read_outbox_max_id","type":"int","comment":"Position up to which all outgoing messages are read."},{"name":"unread_count","type":"int","comment":"Count of unread messages"},{"name":"chat_photo","type":"Photo","comment":"Channel picture"},{"name":"notify_settings","type":"PeerNotifySettings","comment":"Notification settings"},{"name":"exported_invite","type":"ExportedChatInvite","typeModifiers":{"predicate":"flags.23"},"comment":"Invite link"},{"name":"bot_info","type":"BotInfo","typeModifiers":{"isVector":true},"comment":"Info about bots in the channel/supergroup"},{"name":"migrated_from_chat_id","type":"long","typeModifiers":{"predicate":"flags.4"},"comment":"The chat ID from which this group was migrated"},{"name":"migrated_from_max_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"The message ID in the original chat at which this group was migrated"},{"name":"pinned_msg_id","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Message ID of the last pinned message"},{"name":"stickerset","type":"StickerSet","typeModifiers":{"predicate":"flags.8"},"comment":"Associated stickerset"},{"name":"available_min_id","type":"int","typeModifiers":{"predicate":"flags.9"},"comment":"Identifier of a maximum unavailable message in a channel due to hidden history."},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.11"},"comment":"Peer folder ID, for more info click here"},{"name":"linked_chat_id","type":"int53","typeModifiers":{"predicate":"flags.14"},"comment":"ID of the linked discussion chat for channels (and vice versa, the ID of the linked channel for discussion chats)."},{"name":"location","type":"ChannelLocation","typeModifiers":{"predicate":"flags.15"},"comment":"Location of the geo group"},{"name":"slowmode_seconds","type":"int","typeModifiers":{"predicate":"flags.17"},"comment":"If specified, users in supergroups will only be able to send one message every slowmode_seconds seconds"},{"name":"slowmode_next_send_date","type":"int","typeModifiers":{"predicate":"flags.18"},"comment":"Indicates when the user will be allowed to send another message in the supergroup (unixtime)"},{"name":"stats_dc","type":"int","typeModifiers":{"predicate":"flags.12"},"comment":"If set, specifies the DC to use for fetching channel statistics"},{"name":"pts","type":"int","comment":"Latest PTS for this channel"},{"name":"call","type":"InputGroupCall","typeModifiers":{"predicate":"flags.21"},"comment":"Livestream or group call information"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.24"},"comment":"Time-To-Live of messages in this channel or supergroup"},{"name":"pending_suggestions","type":"string","typeModifiers":{"predicate":"flags.25","isVector":true},"comment":"A list of suggested actions for the supergroup admin, see here for more info »."},{"name":"groupcall_default_join_as","type":"Peer","typeModifiers":{"predicate":"flags.26"},"comment":"When using {@link phone.RawGetGroupCallJoinAsRequest} to get a list of peers that can be used to join a group call, this field indicates the peer that should be selected by default."},{"name":"theme_emoticon","type":"string","typeModifiers":{"predicate":"flags.27"},"comment":"Emoji representing a specific chat theme"},{"name":"requests_pending","type":"int","typeModifiers":{"predicate":"flags.28"},"comment":"Pending join requests »"},{"name":"recent_requesters","type":"long","typeModifiers":{"predicate":"flags.28","isVector":true},"comment":"IDs of users who requested to join recently"},{"name":"default_send_as","type":"Peer","typeModifiers":{"predicate":"flags.29"},"comment":"Default peer used for sending messages to this channel"},{"name":"available_reactions","type":"ChatReactions","typeModifiers":{"predicate":"flags.30"},"comment":"Allowed message reactions »"},{"name":"reactions_limit","type":"int","typeModifiers":{"predicate":"flags2.13"},"comment":"This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max)."},{"name":"stories","type":"PeerStories","typeModifiers":{"predicate":"flags2.4"},"comment":"Channel stories"},{"name":"wallpaper","type":"WallPaper","typeModifiers":{"predicate":"flags2.7"},"comment":"Wallpaper"},{"name":"boosts_applied","type":"int","typeModifiers":{"predicate":"flags2.8"},"comment":"The number of boosts the current user has applied to the current supergroup."},{"name":"boosts_unrestrict","type":"int","typeModifiers":{"predicate":"flags2.9"},"comment":"The number of boosts this supergroup requires to bypass slowmode and other restrictions, see here » for more info."},{"name":"emojiset","type":"StickerSet","typeModifiers":{"predicate":"flags2.10"},"comment":"Custom emoji stickerset associated to the current supergroup, set using {@link channels.RawSetEmojiStickersRequest} after reaching the appropriate boost level, see here » for more info."}]},{"kind":"class","name":"chatParticipant","type":"ChatParticipant","id":3224190983,"comment":"Group member.","arguments":[{"name":"user_id","type":"int53","comment":"Member user ID"},{"name":"inviter_id","type":"int53","comment":"ID of the user that added the member to the group"},{"name":"date","type":"int","comment":"Date added to the group"}]},{"kind":"class","name":"chatParticipantCreator","type":"ChatParticipant","id":3832270564,"comment":"Represents the creator of the group","arguments":[{"name":"user_id","type":"int53","comment":"ID of the user that created the group"}]},{"kind":"class","name":"chatParticipantAdmin","type":"ChatParticipant","id":2694004571,"comment":"Chat admin","arguments":[{"name":"user_id","type":"int53","comment":"ID of a group member that is admin"},{"name":"inviter_id","type":"int53","comment":"ID of the user that added the member to the group"},{"name":"date","type":"int","comment":"Date when the user was added"}]},{"kind":"class","name":"chatParticipantsForbidden","type":"ChatParticipants","id":2271466465,"comment":"Info on members is unavailable","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chat_id","type":"int53","comment":"Group ID"},{"name":"self_participant","type":"ChatParticipant","typeModifiers":{"predicate":"flags.0"},"comment":"Info about the group membership of the current user"}]},{"kind":"class","name":"chatParticipants","type":"ChatParticipants","id":1018991608,"comment":"Group members.","arguments":[{"name":"chat_id","type":"int53","comment":"Group identifier"},{"name":"participants","type":"ChatParticipant","typeModifiers":{"isVector":true},"comment":"List of group members"},{"name":"version","type":"int","comment":"Group version number"}]},{"kind":"class","name":"chatPhotoEmpty","type":"ChatPhoto","id":935395612,"comment":"Group photo is not set.","arguments":[]},{"kind":"class","name":"chatPhoto","type":"ChatPhoto","id":476978193,"comment":"Group profile photo.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_video","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user has an animated profile picture"},{"name":"photo_id","type":"long","comment":"Photo ID"},{"name":"stripped_thumb","type":"bytes","typeModifiers":{"predicate":"flags.1"},"comment":"Stripped thumbnail"},{"name":"dc_id","type":"int","comment":"DC where this photo is stored"}]},{"kind":"class","name":"messageEmpty","type":"Message","id":2426849924,"comment":"Empty constructor, non-existent message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"int","comment":"Message identifier"},{"name":"peer_id","type":"Peer","typeModifiers":{"predicate":"flags.0"},"comment":"Peer ID, the chat where this message was sent"}]},{"kind":"class","name":"message","type":"Message","id":2486456898,"comment":"A message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Is this an outgoing message"},{"name":"mentioned","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether we were mentioned in this message"},{"name":"media_unread","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether there are unread media attachments in this message"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether this is a silent message (no notification triggered)"},{"name":"post","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Whether this is a channel post"},{"name":"from_scheduled","type":"true","typeModifiers":{"predicate":"flags.18"},"comment":"Whether this is a scheduled message"},{"name":"legacy","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"This is a legacy message: it has to be refetched with the new layer"},{"name":"edit_hide","type":"true","typeModifiers":{"predicate":"flags.21"},"comment":"Whether the message should be shown as not modified to the user, even if an edit date is present"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.24"},"comment":"Whether this message is pinned"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.26"},"comment":"Whether this message is protected and thus cannot be forwarded; clients should also prevent users from saving attached media (i.e. videos should only be streamed, photos should be kept in RAM, et cetera)."},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.27"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"flags2","type":"#","comment":"Flags, see TL conditional fields"},{"name":"offline","type":"true","typeModifiers":{"predicate":"flags2.1"},"comment":"If set, the message was sent because of a scheduled action by the message sender, for example, as away, or a greeting service message."},{"name":"video_processing_pending","type":"true","typeModifiers":{"predicate":"flags2.4"}},{"name":"id","type":"int","comment":"ID of the message"},{"name":"from_id","type":"Peer","typeModifiers":{"predicate":"flags.8"},"comment":"ID of the sender of the message"},{"name":"from_boosts_applied","type":"int","typeModifiers":{"predicate":"flags.29"},"comment":"Supergroups only, contains the number of boosts this user has given the current supergroup, and should be shown in the UI in the header of the message.
Only present for incoming messages from non-anonymous supergroup members that have boosted the supergroup.
Note that this counter should be locally overridden for non-anonymous outgoing messages, according to the current value of {@link RawChannelFull}.boosts_applied, to ensure the value is correct even for messages sent by the current user before a supergroup was boosted (or after a boost has expired or the number of boosts has changed); do not update this value for incoming messages from other users, even if their boosts have changed."},{"name":"peer_id","type":"Peer","comment":"Peer ID, the chat where this message was sent"},{"name":"saved_peer_id","type":"Peer","typeModifiers":{"predicate":"flags.28"},"comment":"Messages fetched from a saved messages dialog » will have peer={@link RawInputPeerSelf} and the saved_peer_id flag set to the ID of the saved dialog.
"},{"name":"fwd_from","type":"MessageFwdHeader","typeModifiers":{"predicate":"flags.2"},"comment":"Info about forwarded messages"},{"name":"via_bot_id","type":"int53","typeModifiers":{"predicate":"flags.11"},"comment":"ID of the inline bot that generated the message"},{"name":"via_business_bot_id","type":"int53","typeModifiers":{"predicate":"flags2.0"},"comment":"Whether the message was sent by the business bot specified in via_bot_id on behalf of the user."},{"name":"reply_to","type":"MessageReplyHeader","typeModifiers":{"predicate":"flags.3"},"comment":"Reply information"},{"name":"date","type":"int","comment":"Date of the message"},{"name":"message","type":"string","comment":"The message"},{"name":"media","type":"MessageMedia","typeModifiers":{"predicate":"flags.9"},"comment":"Media attachment"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.6"},"comment":"Reply markup (bot/inline keyboards)"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.7","isVector":true},"comment":"Message entities for styled text"},{"name":"views","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"View count for channel posts"},{"name":"forwards","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Forward counter"},{"name":"replies","type":"MessageReplies","typeModifiers":{"predicate":"flags.23"},"comment":"Info about post comments (for channels) or message replies (for groups)"},{"name":"edit_date","type":"int","typeModifiers":{"predicate":"flags.15"},"comment":"Last edit date of this message"},{"name":"post_author","type":"string","typeModifiers":{"predicate":"flags.16"},"comment":"Name of the author of this message for channel posts (with signatures enabled)"},{"name":"grouped_id","type":"long","typeModifiers":{"predicate":"flags.17"},"comment":"Multiple media messages sent using {@link messages.RawSendMultiMediaRequest} with the same grouped ID indicate an album or media group"},{"name":"reactions","type":"MessageReactions","typeModifiers":{"predicate":"flags.20"},"comment":"Reactions to this message"},{"name":"restriction_reason","type":"RestrictionReason","typeModifiers":{"predicate":"flags.22","isVector":true},"comment":"Contains the reason why access to this message must be restricted."},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.25"},"comment":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."},{"name":"quick_reply_shortcut_id","type":"int","typeModifiers":{"predicate":"flags.30"},"comment":"If set, this message is a quick reply shortcut message » (note that quick reply shortcut messages sent to a private chat will not have this field set)."},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags2.2"},"comment":"A message effect that should be played as specified here »."},{"name":"factcheck","type":"FactCheck","typeModifiers":{"predicate":"flags2.3"},"comment":"Represents a fact-check »."}]},{"kind":"class","name":"messageService","type":"Message","id":721967202,"comment":"Indicates a service message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the message is outgoing"},{"name":"mentioned","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether we were mentioned in the message"},{"name":"media_unread","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the message contains unread media"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether the message is silent"},{"name":"post","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Whether it's a channel post"},{"name":"legacy","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"This is a legacy message: it has to be refetched with the new layer"},{"name":"id","type":"int","comment":"Message ID"},{"name":"from_id","type":"Peer","typeModifiers":{"predicate":"flags.8"},"comment":"ID of the sender of this message"},{"name":"peer_id","type":"Peer","comment":"Sender of service message"},{"name":"reply_to","type":"MessageReplyHeader","typeModifiers":{"predicate":"flags.3"},"comment":"Reply (thread) information"},{"name":"date","type":"int","comment":"Message date"},{"name":"action","type":"MessageAction","comment":"Event connected with the service message"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.25"},"comment":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}]},{"kind":"class","name":"messageMediaEmpty","type":"MessageMedia","id":1038967584,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"messageMediaPhoto","type":"MessageMedia","id":1766936791,"comment":"Attached photo.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.0"},"comment":"Photo"},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Time to live in seconds of self-destructing photo"}]},{"kind":"class","name":"messageMediaGeo","type":"MessageMedia","id":1457575028,"comment":"Attached map.","arguments":[{"name":"geo","type":"GeoPoint","comment":"GeoPoint"}]},{"kind":"class","name":"messageMediaContact","type":"MessageMedia","id":1882335561,"comment":"Attached contact.","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"Contact's first name"},{"name":"last_name","type":"string","comment":"Contact's last name"},{"name":"vcard","type":"string","comment":"VCARD of contact"},{"name":"user_id","type":"int53","comment":"User identifier or 0, if the user with the given phone number is not registered"}]},{"kind":"class","name":"messageMediaUnsupported","type":"MessageMedia","id":2676290718,"comment":"Current version of the client does not support this media type.","arguments":[]},{"kind":"class","name":"messageMediaDocument","id":3713469397,"type":"MessageMedia","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"nopremium","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is a normal sticker, if not set this is a premium sticker and a premium sticker animation must be played."},{"name":"spoiler","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether this media should be hidden behind a spoiler warning"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether this is a video."},{"name":"round","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether this is a round video."},{"name":"voice","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Whether this is a voice message."},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.0"},"comment":"Attached document"},{"name":"alt_documents","type":"Document","typeModifiers":{"predicate":"flags.5","isVector":true}},{"name":"ttl_seconds","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Time to live of self-destructing document"}],"comment":"Document (video, audio, voice, sticker, any media type except photo)"},{"kind":"class","name":"messageMediaWebPage","type":"MessageMedia","id":3723562043,"comment":"Preview of webpage","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force_large_media","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, specifies that a large media preview should be used."},{"name":"force_small_media","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, specifies that a small media preview should be used."},{"name":"manual","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, indicates that the URL used for the webpage preview was specified manually using {@link RawInputMediaWebPage}, and may not be related to any of the URLs specified in the message."},{"name":"safe","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, the webpage can be opened directly without user confirmation; otherwise, user confirmation is required, showing the exact URL that will be opened."},{"name":"webpage","type":"WebPage","comment":"Webpage preview"}]},{"kind":"class","name":"messageMediaVenue","type":"MessageMedia","id":784356159,"comment":"Venue","arguments":[{"name":"geo","type":"GeoPoint","comment":"Geolocation of venue"},{"name":"title","type":"string","comment":"Venue name"},{"name":"address","type":"string","comment":"Address"},{"name":"provider","type":"string","comment":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported"},{"name":"venue_id","type":"string","comment":"Venue ID in the provider's database"},{"name":"venue_type","type":"string","comment":"Venue type in the provider's database"}]},{"kind":"class","name":"messageMediaGame","type":"MessageMedia","id":4256272392,"comment":"Telegram game","arguments":[{"name":"game","type":"Game","comment":"Game"}]},{"kind":"class","name":"messageMediaInvoice","type":"MessageMedia","id":4138027219,"comment":"Invoice","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"shipping_address_requested","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the shipping address was requested"},{"name":"test","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is an example invoice"},{"name":"title","type":"string","comment":"Product name, 1-32 characters"},{"name":"description","type":"string","comment":"Product description, 1-255 characters"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.0"},"comment":"URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for."},{"name":"receipt_msg_id","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Message ID of receipt: if set, clients should change the text of the first {@link RawKeyboardButtonBuy} button always attached to the {@link RawMessage} to a localized version of the word Receipt"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"start_param","type":"string","comment":"Unique bot deep-linking parameter that can be used to generate this invoice"},{"name":"extended_media","type":"MessageExtendedMedia","typeModifiers":{"predicate":"flags.4"},"comment":"Deprecated"}]},{"kind":"class","name":"messageMediaGeoLive","type":"MessageMedia","id":3108030054,"comment":"Indicates a live geolocation","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo","type":"GeoPoint","comment":"Geolocation"},{"name":"heading","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"For live locations, a direction in which the location moves, in degrees; 1-360"},{"name":"period","type":"int","comment":"Validity period of provided geolocation"},{"name":"proximity_notification_radius","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)."}]},{"kind":"class","name":"messageMediaPoll","type":"MessageMedia","id":1272375192,"comment":"Poll","arguments":[{"name":"poll","type":"Poll","comment":"The poll"},{"name":"results","type":"PollResults","comment":"The results of the poll"}]},{"kind":"class","name":"messageMediaDice","type":"MessageMedia","id":1065280907,"comment":"Dice-based animated sticker","arguments":[{"name":"value","type":"int","comment":"Dice value"},{"name":"emoticon","type":"string","comment":"The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported"}]},{"kind":"class","name":"messageMediaStory","type":"MessageMedia","id":1758159491,"comment":"Represents a forwarded story or a story mention.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_mention","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, indicates that this someone has mentioned us in this story (i.e. by tagging us in the description) or vice versa, we have mentioned the other peer (if the message is outgoing)."},{"name":"peer","type":"Peer","comment":"Peer that posted the story."},{"name":"id","type":"int","comment":"Story ID"},{"name":"story","type":"StoryItem","typeModifiers":{"predicate":"flags.0"},"comment":"The story itself, if absent fetch it using {@link stories.RawGetStoriesByIDRequest} and the peer/id parameters specified above."}]},{"kind":"class","name":"messageMediaGiveaway","id":2852600811,"type":"MessageMedia","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"only_new_subscribers","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, only new subscribers starting from the giveaway creation date will be able to participate to the giveaway."},{"name":"winners_are_visible","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, giveaway winners are public and will be listed in a {@link RawMessageMediaGiveawayResults} message that will be automatically sent to the channel once the giveaway ends."},{"name":"channels","type":"int53","typeModifiers":{"isVector":true},"comment":"The channels that the user must join to participate in the giveaway."},{"name":"countries_iso2","type":"string","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"If set, only users residing in these countries can participate in the giveaway, (specified as a list of two-letter ISO 3166-1 alpha-2 country codes); otherwise there are no country-based limitations."},{"name":"prize_description","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Can contain a textual description of additional giveaway prizes."},{"name":"quantity","type":"int","comment":"Number of Telegram Premium subscriptions given away."},{"name":"months","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Duration in months of each Telegram Premium subscription in the giveaway."},{"name":"stars","type":"long","typeModifiers":{"predicate":"flags.5"},"comment":"For Telegram Star giveaways, the total number of Telegram Stars being given away."},{"name":"until_date","type":"int","comment":"The end date of the giveaway."}],"comment":"Contains info about a giveaway, see here » for more info."},{"kind":"class","name":"messageMediaGiveawayResults","id":3467263649,"type":"MessageMedia","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"only_new_subscribers","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, only new subscribers starting from the giveaway creation date participated in the giveaway."},{"name":"refunded","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the giveaway was canceled and was fully refunded."},{"name":"channel_id","type":"long","comment":"ID of the channel/supergroup that was automatically boosted by the winners of the giveaway for duration of the Premium subscription."},{"name":"additional_peers_count","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Number of other channels that participated in the giveaway."},{"name":"launch_msg_id","type":"int","comment":"Identifier of the message with the giveaway in channel_id."},{"name":"winners_count","type":"int","comment":"Total number of winners in the giveaway."},{"name":"unclaimed_count","type":"int","comment":"Number of not-yet-claimed prizes."},{"name":"winners","type":"long","typeModifiers":{"isVector":true},"comment":"Up to 100 user identifiers of the winners of the giveaway."},{"name":"months","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Duration in months of each Telegram Premium subscription in the giveaway."},{"name":"stars","type":"long","typeModifiers":{"predicate":"flags.5"},"comment":"For Telegram Star giveaways, the total number of Telegram Stars being given away."},{"name":"prize_description","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Can contain a textual description of additional giveaway prizes."},{"name":"until_date","type":"int","comment":"Point in time (UNIX timestamp in seconds) when the winners were selected. May be bigger than winners selection date specified in initial parameters of the giveaway."}],"comment":"A giveaway with public winners has finished, this constructor contains info about the winners."},{"kind":"class","name":"messageMediaPaidMedia","type":"MessageMedia","id":2827297937,"comment":"Paid media, see here » for more info.","arguments":[{"name":"stars_amount","type":"long","comment":"The price of the media in Telegram Stars."},{"name":"extended_media","type":"MessageExtendedMedia","typeModifiers":{"isVector":true},"comment":"Either the paid-for media, or super low resolution media previews if the media wasn't purchased yet, see here » for more info."}]},{"kind":"class","name":"messageActionEmpty","type":"MessageAction","id":3064919984,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"messageActionChatCreate","type":"MessageAction","id":3175599021,"comment":"Group created","arguments":[{"name":"title","type":"string","comment":"Group name"},{"name":"users","type":"int53","typeModifiers":{"isVector":true},"comment":"List of group members"}]},{"kind":"class","name":"messageActionChatEditTitle","type":"MessageAction","id":3047280218,"comment":"Group name changed.","arguments":[{"name":"title","type":"string","comment":"New group name"}]},{"kind":"class","name":"messageActionChatEditPhoto","type":"MessageAction","id":2144015272,"comment":"Group profile changed","arguments":[{"name":"photo","type":"Photo","comment":"New group profile photo"}]},{"kind":"class","name":"messageActionChatDeletePhoto","type":"MessageAction","id":2514746351,"comment":"Group profile photo removed.","arguments":[]},{"kind":"class","name":"messageActionChatAddUser","type":"MessageAction","id":365886720,"comment":"New member in the group","arguments":[{"name":"users","type":"int53","typeModifiers":{"isVector":true},"comment":"Users that were invited to the chat"}]},{"kind":"class","name":"messageActionChatDeleteUser","type":"MessageAction","id":2755604684,"comment":"User left the group.","arguments":[{"name":"user_id","type":"int53","comment":"Leaving user ID"}]},{"kind":"class","name":"messageActionChatJoinedByLink","type":"MessageAction","id":51520707,"comment":"A user joined the chat via an invite link","arguments":[{"name":"inviter_id","type":"int53","comment":"ID of the user that created the invite link"}]},{"kind":"class","name":"messageActionChannelCreate","type":"MessageAction","id":2513611922,"comment":"The channel was created","arguments":[{"name":"title","type":"string","comment":"Original channel/supergroup title"}]},{"kind":"class","name":"messageActionChatMigrateTo","type":"MessageAction","id":3775102866,"comment":"Indicates the chat was migrated to the specified supergroup","arguments":[{"name":"channel_id","type":"int53","comment":"The supergroup it was migrated to"}]},{"kind":"class","name":"messageActionChannelMigrateFrom","type":"MessageAction","id":3929622761,"comment":"Indicates the channel was migrated from the specified chat","arguments":[{"name":"title","type":"string","comment":"The old chat title"},{"name":"chat_id","type":"int53","comment":"The old chat ID"}]},{"kind":"class","name":"messageActionPinMessage","type":"MessageAction","id":2495428845,"comment":"A message was pinned","arguments":[]},{"kind":"class","name":"messageActionHistoryClear","type":"MessageAction","id":2679813636,"comment":"Chat history was cleared","arguments":[]},{"kind":"class","name":"messageActionGameScore","type":"MessageAction","id":2460428406,"comment":"Someone scored in a game","arguments":[{"name":"game_id","type":"long","comment":"Game ID"},{"name":"score","type":"int","comment":"Score"}]},{"kind":"class","name":"messageActionPaymentSentMe","id":4288679116,"type":"MessageAction","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"recurring_init","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this is the first payment of a recurring payment we just subscribed to"},{"name":"recurring_used","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this payment is part of a recurring payment"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"payload","type":"bytes","comment":"Bot specified invoice payload"},{"name":"info","type":"PaymentRequestedInfo","typeModifiers":{"predicate":"flags.0"},"comment":"Order info provided by the user"},{"name":"shipping_option_id","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of the shipping option chosen by the user"},{"name":"charge","type":"PaymentCharge","comment":"Provider payment identifier"},{"name":"subscription_until_date","type":"int","typeModifiers":{"predicate":"flags.4"}}],"comment":"A user just sent a payment to me (a bot)"},{"kind":"class","name":"messageActionPaymentSent","id":3324293486,"type":"MessageAction","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"recurring_init","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this is the first payment of a recurring payment we just subscribed to"},{"name":"recurring_used","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this payment is part of a recurring payment"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"invoice_slug","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"An invoice slug taken from an invoice deep link or from the premium_invoice_slug app config parameter »"},{"name":"subscription_until_date","type":"int","typeModifiers":{"predicate":"flags.4"}}],"comment":"A payment was sent"},{"kind":"class","name":"messageActionPhoneCall","type":"MessageAction","id":2162236031,"comment":"A phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is this a video call?"},{"name":"call_id","type":"long","comment":"Call ID"},{"name":"reason","type":"PhoneCallDiscardReason","typeModifiers":{"predicate":"flags.0"},"comment":"If the call has ended, the reason why it ended"},{"name":"duration","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Duration of the call in seconds"}]},{"kind":"class","name":"messageActionScreenshotTaken","type":"MessageAction","id":1200788123,"comment":"A screenshot of the chat was taken","arguments":[]},{"kind":"class","name":"messageActionCustomAction","type":"MessageAction","id":4209418070,"comment":"Custom action (most likely not supported by the current layer, an upgrade might be needed)","arguments":[{"name":"message","type":"string","comment":"Action message"}]},{"kind":"class","name":"messageActionBotAllowed","type":"MessageAction","id":3306608249,"comment":"We have given the bot permission to send us direct messages.\n\nThe optional fields specify how did we authorize the bot to send us messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"attach_menu","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"We have authorized the bot to send us messages by installing the bot's attachment menu."},{"name":"from_request","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"We have allowed the bot to send us messages using {@link bots.RawAllowSendMessageRequest}."},{"name":"domain","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"We have authorized the bot to send us messages by logging into a website via Telegram Login »; this field contains the domain name of the website on which the user has logged in."},{"name":"app","type":"BotApp","typeModifiers":{"predicate":"flags.2"},"comment":"We have authorized the bot to send us messages by opening the specified bot mini app."}]},{"kind":"class","name":"messageActionSecureValuesSentMe","type":"MessageAction","id":455635795,"comment":"Secure telegram passport values were received","arguments":[{"name":"values","type":"SecureValue","typeModifiers":{"isVector":true},"comment":"Vector with information about documents and other Telegram Passport elements that were shared with the bot"},{"name":"credentials","type":"SecureCredentialsEncrypted","comment":"Encrypted credentials required to decrypt the data"}]},{"kind":"class","name":"messageActionSecureValuesSent","type":"MessageAction","id":3646710100,"comment":"Request for secure telegram passport values was sent","arguments":[{"name":"types","type":"SecureValueType","typeModifiers":{"isVector":true},"comment":"Secure value types"}]},{"kind":"class","name":"messageActionContactSignUp","type":"MessageAction","id":4092747638,"comment":"A contact just signed up to telegram","arguments":[]},{"kind":"class","name":"messageActionGeoProximityReached","type":"MessageAction","id":2564871831,"comment":"A user of the chat is now in proximity of another user","arguments":[{"name":"from_id","type":"Peer","comment":"The user or chat that is now in proximity of to_id"},{"name":"to_id","type":"Peer","comment":"The user or chat that subscribed to live geolocation proximity alerts"},{"name":"distance","type":"int","comment":"Distance, in meters (0-100000)"}]},{"kind":"class","name":"messageActionGroupCall","type":"MessageAction","id":2047704898,"comment":"The group call has ended","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"duration","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Group call duration"}]},{"kind":"class","name":"messageActionInviteToGroupCall","type":"MessageAction","id":1345295095,"comment":"A set of users was invited to the group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"users","type":"int53","typeModifiers":{"isVector":true},"comment":"The invited users"}]},{"kind":"class","name":"messageActionSetMessagesTTL","type":"MessageAction","id":1007897979,"comment":"The Time-To-Live of messages in this chat was changed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"period","type":"int","comment":"New Time-To-Live of all messages sent in this chat; if 0, autodeletion was disabled."},{"name":"auto_setting_from","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the chat TTL setting was set not due to a manual change by one of participants, but automatically because one of the participants has the {@link messages.RawSetDefaultHistoryTTLRequest}. For example, when a user writes to us for the first time and we have set a default messages TTL of 1 week, this service message (with auto_setting_from=our_userid) will be emitted before our first message."}]},{"kind":"class","name":"messageActionGroupCallScheduled","type":"MessageAction","id":3013637729,"comment":"A group call was scheduled","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"schedule_date","type":"int","comment":"When is this group call scheduled to start"}]},{"kind":"class","name":"messageActionSetChatTheme","type":"MessageAction","id":2860016453,"comment":"The chat theme was changed","arguments":[{"name":"emoticon","type":"string","comment":"The emoji that identifies a chat theme"}]},{"kind":"class","name":"messageActionChatJoinedByRequest","type":"MessageAction","id":3955008459,"comment":"A user was accepted into the group by an admin","arguments":[]},{"kind":"class","name":"messageActionWebViewDataSentMe","type":"MessageAction","id":1205698681,"comment":"Data from an opened reply keyboard bot mini app was relayed to the bot that owns it (bot side service message).","arguments":[{"name":"text","type":"string","comment":"Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app."},{"name":"data","type":"string","comment":"Relayed data."}]},{"kind":"class","name":"messageActionWebViewDataSent","type":"MessageAction","id":3032714421,"comment":"Data from an opened reply keyboard bot mini app was relayed to the bot that owns it (user side service message).\n\nClients should display a service message with the text Data from the «$text» button was transferred to the bot.","arguments":[{"name":"text","type":"string","comment":"Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app."}]},{"kind":"class","name":"messageActionGiftPremium","id":1818391802,"type":"MessageAction","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the gift in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"months","type":"int","comment":"Duration of the gifted Telegram Premium subscription"},{"name":"crypto_currency","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If the gift was bought using a cryptocurrency, the cryptocurrency name."},{"name":"crypto_amount","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"If the gift was bought using a cryptocurrency, price of the gift in the smallest units of a cryptocurrency."},{"name":"message","type":"TextWithEntities","typeModifiers":{"predicate":"flags.1"}}],"comment":"Info about a gifted Telegram Premium subscription"},{"kind":"class","name":"messageActionTopicCreate","type":"MessageAction","id":228168278,"comment":"A forum topic was created.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Topic name."},{"name":"icon_color","type":"int","comment":"If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F."},{"name":"icon_emoji_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the custom emoji used as topic icon."}]},{"kind":"class","name":"messageActionTopicEdit","type":"MessageAction","id":3230943264,"comment":"Forum topic information was edited.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"New topic title."},{"name":"icon_emoji_id","type":"long","typeModifiers":{"predicate":"flags.1"},"comment":"ID of the new custom emoji used as topic icon, or if it was removed."},{"name":"closed","type":"Bool","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the topic was opened or closed."},{"name":"hidden","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the topic was hidden or unhidden (only valid for the \"General\" topic, id=1)."}]},{"kind":"class","name":"messageActionSuggestProfilePhoto","type":"MessageAction","id":1474192222,"comment":"A new profile picture was suggested using {@link photos.RawUploadContactProfilePhotoRequest}.","arguments":[{"name":"photo","type":"Photo","comment":"The photo that the user suggested we set as profile picture."}]},{"kind":"class","name":"messageActionRequestedPeer","type":"MessageAction","id":827428507,"comment":"Contains info about one or more peers that the we (the user) shared with the bot after clicking on a {@link RawKeyboardButtonRequestPeer} button (service message sent by the user).","arguments":[{"name":"button_id","type":"int","comment":"button_id contained in the {@link RawKeyboardButtonRequestPeer}"},{"name":"peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"The shared peers"}]},{"kind":"class","name":"messageActionSetChatWallPaper","type":"MessageAction","id":1348510708,"comment":"The wallpaper » of the current chat was changed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"same","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates the user applied a wallpaper » previously sent by the other user in a {@link RawMessageActionSetChatWallPaper} message."},{"name":"for_both","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, indicates the wallpaper was forcefully applied for both sides, without explicit confirmation from the other side.
If the message is incoming, and we did not like the new wallpaper the other user has chosen for us, we can re-set our previous wallpaper just on our side, by invoking {@link messages.RawSetChatWallPaperRequest}, providing only the revert flag (and obviously the peer parameter)."},{"name":"wallpaper","type":"WallPaper","comment":"New wallpaper"}]},{"kind":"class","name":"messageActionGiftCode","id":1456486804,"type":"MessageAction","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_giveaway","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, this gift code was received from a giveaway » started by a channel/supergroup we're subscribed to."},{"name":"unclaimed","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the link was not redeemed yet."},{"name":"boost_peer","type":"Peer","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of the channel/supergroup that created the gift code either directly or through a giveaway: if we import this giftcode link, we will also automatically boost this channel/supergroup."},{"name":"months","type":"int","comment":"Duration in months of the gifted Telegram Premium subscription."},{"name":"slug","type":"string","comment":"Slug of the Telegram Premium giftcode link"},{"name":"currency","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"crypto_currency","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"If set, the gift was made using the specified cryptocurrency."},{"name":"crypto_amount","type":"long","typeModifiers":{"predicate":"flags.3"},"comment":"If crypto_currency is set, contains the paid amount, in the smallest units of the cryptocurrency."},{"name":"message","type":"TextWithEntities","typeModifiers":{"predicate":"flags.4"}}],"comment":"Contains a Telegram Premium giftcode link."},{"kind":"class","name":"messageActionGiveawayLaunch","id":2819576292,"type":"MessageAction","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"stars","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"For Telegram Star giveaways, the total number of Telegram Stars being given away."}],"comment":"A giveaway was started."},{"kind":"class","name":"messageActionGiveawayResults","id":2279797077,"type":"MessageAction","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"stars","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, this is a Telegram Star giveaway"},{"name":"winners_count","type":"int","comment":"Number of winners in the giveaway"},{"name":"unclaimed_count","type":"int","comment":"Number of undistributed prizes"}],"comment":"A giveaway has ended."},{"kind":"class","name":"messageActionBoostApply","type":"MessageAction","id":3422726765,"comment":"Some boosts » were applied to the channel or supergroup.","arguments":[{"name":"boosts","type":"int","comment":"Number of applied boosts."}]},{"kind":"class","name":"messageActionRequestedPeerSentMe","type":"MessageAction","id":2477987912,"comment":"Contains info about one or more peers that the a user shared with the me (the bot) after clicking on a {@link RawKeyboardButtonRequestPeer} button (service message received by the bot).","arguments":[{"name":"button_id","type":"int","comment":"button_id contained in the {@link RawKeyboardButtonRequestPeer}"},{"name":"peers","type":"RequestedPeer","typeModifiers":{"isVector":true},"comment":"Info about the shared peers."}]},{"kind":"class","name":"messageActionPaymentRefunded","type":"MessageAction","id":1102307842,"comment":"Describes a payment refund (service message received by both users and bots).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"Identifier of the peer that returned the funds."},{"name":"currency","type":"string","comment":"Currency, XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"payload","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Bot specified invoice payload (only received by bots)."},{"name":"charge","type":"PaymentCharge","comment":"Provider payment identifier"}]},{"kind":"class","name":"messageActionGiftStars","type":"MessageAction","id":1171632161,"comment":"You gifted or were gifted some Telegram Stars.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the gift in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"stars","type":"long","comment":"Amount of gifted stars"},{"name":"crypto_currency","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If the gift was bought using a cryptocurrency, the cryptocurrency name."},{"name":"crypto_amount","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"If the gift was bought using a cryptocurrency, price of the gift in the smallest units of a cryptocurrency."},{"name":"transaction_id","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of the transaction, only visible to the receiver of the gift."}]},{"kind":"class","name":"messageActionPrizeStars","type":"MessageAction","id":2953594786,"comment":"You won some Telegram Stars in a Telegram Star giveaway ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"unclaimed","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"stars","type":"long","comment":"The number of Telegram Stars you won"},{"name":"transaction_id","type":"string"},{"name":"boost_peer","type":"Peer"},{"name":"giveaway_msg_id","type":"int","comment":"ID of the message containing the {@link RawMessageMediaGiveaway}"}]},{"kind":"class","name":"messageActionStarGift","id":139818551,"type":"MessageAction","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"name_hidden","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the name of the sender of the gift will be hidden if the destination user decides to display the gift on their profile"},{"name":"saved","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this gift was added to the destination user's profile (may be toggled using {@link payments.RawSaveStarGiftRequest} and fetched using {@link payments.RawGetUserStarGiftsRequest})"},{"name":"converted","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this gift was converted to Telegram Stars and cannot be displayed on the profile anymore."},{"name":"gift","type":"StarGift","comment":"Info about the gift"},{"name":"message","type":"TextWithEntities","typeModifiers":{"predicate":"flags.1"},"comment":"Additional message from the sender of the gift"},{"name":"convert_stars","type":"long","typeModifiers":{"predicate":"flags.4"},"comment":"The receiver of this gift may convert it to this many Telegram Stars, instead of displaying it on their profile page.
convert_stars will be equal to stars only if the gift was bought using recently bought Telegram Stars, otherwise it will be less than stars."}],"comment":"You received a gift, see here » for more info."},{"kind":"class","name":"dialog","type":"Dialog","id":3582593222,"comment":"Chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is the dialog pinned"},{"name":"unread_mark","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the chat was manually marked as unread"},{"name":"view_forum_as_messages","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
This setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of this flag."},{"name":"peer","type":"Peer","comment":"The chat"},{"name":"top_message","type":"int","comment":"The latest message ID"},{"name":"read_inbox_max_id","type":"int","comment":"Position up to which all incoming messages are read."},{"name":"read_outbox_max_id","type":"int","comment":"Position up to which all outgoing messages are read."},{"name":"unread_count","type":"int","comment":"Number of unread messages"},{"name":"unread_mentions_count","type":"int","comment":"Number of unread mentions"},{"name":"unread_reactions_count","type":"int","comment":"Number of unread reactions to messages you sent"},{"name":"notify_settings","type":"PeerNotifySettings","comment":"Notification settings"},{"name":"pts","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"PTS"},{"name":"draft","type":"DraftMessage","typeModifiers":{"predicate":"flags.1"},"comment":"Message draft"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Peer folder ID, for more info click here"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Time-to-live of all messages sent in this dialog"}]},{"kind":"class","name":"dialogFolder","type":"Dialog","id":1908216652,"comment":"Dialog in folder","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is this folder pinned"},{"name":"folder","type":"Folder","comment":"The folder"},{"name":"peer","type":"Peer","comment":"Peer in folder"},{"name":"top_message","type":"int","comment":"Latest message ID of dialog"},{"name":"unread_muted_peers_count","type":"int","comment":"Number of unread muted peers in folder"},{"name":"unread_unmuted_peers_count","type":"int","comment":"Number of unread unmuted peers in folder"},{"name":"unread_muted_messages_count","type":"int","comment":"Number of unread messages from muted peers in folder"},{"name":"unread_unmuted_messages_count","type":"int","comment":"Number of unread messages from unmuted peers in folder"}]},{"kind":"class","name":"photoEmpty","type":"Photo","id":590459437,"comment":"Empty constructor, non-existent photo","arguments":[{"name":"id","type":"long","comment":"Photo identifier"}]},{"kind":"class","name":"photo","type":"Photo","id":4212750949,"comment":"Photo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_stickers","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the photo has mask stickers attached to it"},{"name":"id","type":"long","comment":"ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"file_reference","type":"bytes","comment":"file reference"},{"name":"date","type":"int","comment":"Date of upload"},{"name":"sizes","type":"PhotoSize","typeModifiers":{"isVector":true},"comment":"Available sizes for download"},{"name":"video_sizes","type":"VideoSize","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"For animated profiles, the MPEG4 videos"},{"name":"dc_id","type":"int","comment":"DC ID to use for download"}]},{"kind":"class","name":"photoSizeEmpty","type":"PhotoSize","id":236446268,"comment":"Empty constructor. Image with this thumbnail is unavailable.","arguments":[{"name":"type","type":"string","comment":"Thumbnail type »"}]},{"kind":"class","name":"photoSize","type":"PhotoSize","id":1976012384,"comment":"Image description.","arguments":[{"name":"type","type":"string","comment":"Thumbnail type »"},{"name":"w","type":"int","comment":"Image width"},{"name":"h","type":"int","comment":"Image height"},{"name":"size","type":"int","comment":"File size"}]},{"kind":"class","name":"photoCachedSize","type":"PhotoSize","id":35527382,"comment":"Description of an image and its content.","arguments":[{"name":"type","type":"string","comment":"Thumbnail type"},{"name":"w","type":"int","comment":"Image width"},{"name":"h","type":"int","comment":"Image height"},{"name":"bytes","type":"bytes","comment":"Binary data, file content"}]},{"kind":"class","name":"photoStrippedSize","type":"PhotoSize","id":3769678894,"comment":"A low-resolution compressed JPG payload","arguments":[{"name":"type","type":"string","comment":"Thumbnail type"},{"name":"bytes","type":"bytes","comment":"Thumbnail data, see here for more info on decompression »"}]},{"kind":"class","name":"photoSizeProgressive","type":"PhotoSize","id":4198431637,"comment":"Progressively encoded photosize","arguments":[{"name":"type","type":"string","comment":"Photosize type »"},{"name":"w","type":"int","comment":"Photo width"},{"name":"h","type":"int","comment":"Photo height"},{"name":"sizes","type":"int","typeModifiers":{"isVector":true},"comment":"Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image."}]},{"kind":"class","name":"photoPathSize","type":"PhotoSize","id":3626061121,"comment":"Messages with animated stickers can have a compressed svg (< 300 bytes) to show the outline of the sticker before fetching the actual lottie animation.","arguments":[{"name":"type","type":"string","comment":"Always j"},{"name":"bytes","type":"bytes","comment":"Compressed SVG path payload, see here for decompression instructions"}]},{"kind":"class","name":"geoPointEmpty","type":"GeoPoint","id":286776671,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"geoPoint","type":"GeoPoint","id":2997024355,"comment":"GeoPoint.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"long","type":"double","comment":"Longitude"},{"name":"lat","type":"double","comment":"Latitude"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"accuracy_radius","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"The estimated horizontal accuracy of the location, in meters; as defined by the sender."}]},{"kind":"class","name":"auth.sentCode","type":"auth.SentCode","id":1577067778,"comment":"Contains info about a sent verification code.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"type","type":"auth.SentCodeType","comment":"Phone code type"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash, to be stored and later re-used with {@link auth.RawSignInRequest}"},{"name":"next_type","type":"auth.CodeType","typeModifiers":{"predicate":"flags.1"},"comment":"Phone code type that will be sent next, if the phone code is not received within timeout seconds: to send it use {@link auth.RawResendCodeRequest}"},{"name":"timeout","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Timeout for reception of the phone code"}]},{"kind":"class","name":"auth.sentCodeSuccess","type":"auth.SentCode","id":596704836,"comment":"The user successfully authorized using future auth tokens","arguments":[{"name":"authorization","type":"auth.Authorization","comment":"Authorization info"}]},{"kind":"class","name":"auth.authorization","type":"auth.Authorization","id":782418132,"comment":"Contains user authorization info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"setup_password_required","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Suggests the user to set up a 2-step verification password to be able to log in again"},{"name":"otherwise_relogin_days","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Iff setup_password_required is set and the user declines to set a 2-step verification password, they will be able to log into their account via SMS again only after this many days pass."},{"name":"tmp_sessions","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Temporary passport sessions"},{"name":"future_auth_token","type":"bytes","typeModifiers":{"predicate":"flags.2"},"comment":"A future auth token"},{"name":"user","type":"User","comment":"Info on authorized user"}]},{"kind":"class","name":"auth.authorizationSignUpRequired","type":"auth.Authorization","id":1148485274,"comment":"An account with this phone number doesn't exist on telegram: the user has to enter basic information and sign up","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"terms_of_service","type":"help.TermsOfService","typeModifiers":{"predicate":"flags.0"},"comment":"Telegram's terms of service: the user must read and accept the terms of service before signing up to telegram"}]},{"kind":"class","name":"auth.exportedAuthorization","type":"auth.ExportedAuthorization","id":3023364792,"comment":"Data for copying of authorization between data centers.","arguments":[{"name":"id","type":"long","comment":"current user identifier"},{"name":"bytes","type":"bytes","comment":"authorizes key"}]},{"kind":"class","name":"inputNotifyPeer","type":"InputNotifyPeer","id":3099351820,"comment":"Notifications generated by a certain user or group.","arguments":[{"name":"peer","type":"InputPeer","comment":"User or group"}]},{"kind":"class","name":"inputNotifyUsers","type":"InputNotifyPeer","id":423314455,"comment":"Notifications generated by all users.","arguments":[]},{"kind":"class","name":"inputNotifyChats","type":"InputNotifyPeer","id":1251338318,"comment":"Notifications generated by all groups.","arguments":[]},{"kind":"class","name":"inputNotifyBroadcasts","type":"InputNotifyPeer","id":2983951486,"comment":"All channels","arguments":[]},{"kind":"class","name":"inputNotifyForumTopic","type":"InputNotifyPeer","id":1548122514,"comment":"Notifications generated by a topic in a forum.","arguments":[{"name":"peer","type":"InputPeer","comment":"Forum ID"},{"name":"top_msg_id","type":"int","comment":"Topic ID"}]},{"kind":"class","name":"inputPeerNotifySettings","type":"InputPeerNotifySettings","id":3402328802,"comment":"Notification settings.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"show_previews","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"If the text of the message shall be displayed in notification"},{"name":"silent","type":"Bool","typeModifiers":{"predicate":"flags.1"},"comment":"Peer was muted?"},{"name":"mute_until","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Date until which all notifications shall be switched off"},{"name":"sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.3"},"comment":"Identifier of an audio file to play for notifications."},{"name":"stories_muted","type":"Bool","typeModifiers":{"predicate":"flags.6"},"comment":"Whether story notifications should be disabled."},{"name":"stories_hide_sender","type":"Bool","typeModifiers":{"predicate":"flags.7"},"comment":"Whether the sender name should be displayed in story notifications."},{"name":"stories_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.8"},"comment":"Identifier of an audio file to play for story notifications."}]},{"kind":"class","name":"peerNotifySettings","type":"PeerNotifySettings","id":2573347852,"comment":"Notification settings.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"show_previews","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"(Ternary value) If set, indicates whether or not to display previews of messages in notifications; otherwise the default behavior should be used."},{"name":"silent","type":"Bool","typeModifiers":{"predicate":"flags.1"},"comment":"(Ternary value) If set, indicates whether to mute or unmute the peer; otherwise the default behavior should be used."},{"name":"mute_until","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Mute all notifications until this date"},{"name":"ios_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.3"},"comment":"Notification sound for the official iOS application"},{"name":"android_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.4"},"comment":"Notification sound for the official android application"},{"name":"other_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.5"},"comment":"Notification sound for other applications"},{"name":"stories_muted","type":"Bool","typeModifiers":{"predicate":"flags.6"},"comment":"Whether story notifications should be disabled."},{"name":"stories_hide_sender","type":"Bool","typeModifiers":{"predicate":"flags.7"},"comment":"Whether the sender name should be displayed in story notifications."},{"name":"stories_ios_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.8"},"comment":"Sound for story notifications on the official iOS application"},{"name":"stories_android_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.9"},"comment":"Sound for story notifications on the official Android application"},{"name":"stories_other_sound","type":"NotificationSound","typeModifiers":{"predicate":"flags.10"},"comment":"Sound for story notifications on other applications"}]},{"kind":"class","name":"peerSettings","type":"PeerSettings","id":2899733598,"comment":"List of actions that are possible when interacting with this user, to be shown as suggested actions in the chat action bar », see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"report_spam","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we can still report the user for spam"},{"name":"add_contact","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether we can add the user as contact"},{"name":"block_contact","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether we can block the user"},{"name":"share_contact","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether we can share the user's contact"},{"name":"need_contacts_exception","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether a special exception for contacts is needed"},{"name":"report_geo","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether we can report a geo group as irrelevant for this location"},{"name":"autoarchived","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether this peer was automatically archived according to {@link RawGlobalPrivacySettings} and can be unarchived"},{"name":"invite_members","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"If set, this is a recently created group chat to which new members can be invited"},{"name":"request_chat_broadcast","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"This flag is set if request_chat_title and request_chat_date fields are set and the join request » is related to a channel (otherwise if only the request fields are set, the join request » is related to a chat)."},{"name":"business_bot_paused","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"This flag is set if both business_bot_id and business_bot_manage_url are set and all connected business bots » were paused in this chat using {@link account.RawToggleConnectedBotPausedRequest}."},{"name":"business_bot_can_reply","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"This flag is set if both business_bot_id and business_bot_manage_url are set and connected business bots » can reply to messages in this chat, as specified by the settings during initial configuration."},{"name":"geo_distance","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Distance in meters between us and this peer"},{"name":"request_chat_title","type":"string","typeModifiers":{"predicate":"flags.9"},"comment":"If set, this is a private chat with an administrator of a chat or channel to which the user sent a join request, and this field contains the chat/channel's title."},{"name":"request_chat_date","type":"int","typeModifiers":{"predicate":"flags.9"},"comment":"If set, this is a private chat with an administrator of a chat or channel to which the user sent a join request, and this field contains the timestamp when the join request » was sent."},{"name":"business_bot_id","type":"int53","typeModifiers":{"predicate":"flags.13"},"comment":"Contains the ID of the business bot » managing this chat, used to display info about the bot in the action bar."},{"name":"business_bot_manage_url","type":"string","typeModifiers":{"predicate":"flags.13"},"comment":"Contains a deep link », used to open a management menu in the business bot. This flag is set if and only if business_bot_id is set."}]},{"kind":"class","name":"wallPaper","type":"WallPaper","id":2755118061,"comment":"Represents a wallpaper based on an image.","arguments":[{"name":"id","type":"long","comment":"Identifier"},{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we created this wallpaper"},{"name":"default","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is the default wallpaper"},{"name":"pattern","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is a pattern wallpaper »"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether this wallpaper should be used in dark mode."},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"slug","type":"string","comment":"Unique wallpaper ID, used when generating wallpaper links or importing wallpaper links."},{"name":"document","type":"Document","comment":"The actual wallpaper"},{"name":"settings","type":"WallPaperSettings","typeModifiers":{"predicate":"flags.2"},"comment":"Info on how to generate the wallpaper, according to these instructions »."}]},{"kind":"class","name":"wallPaperNoFile","type":"WallPaper","id":3766501654,"comment":"Represents a wallpaper only based on colors/gradients.","arguments":[{"name":"id","type":"long","comment":"Wallpaper ID"},{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"default","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is the default wallpaper"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether this wallpaper should be used in dark mode."},{"name":"settings","type":"WallPaperSettings","typeModifiers":{"predicate":"flags.2"},"comment":"Info on how to generate the wallpaper."}]},{"kind":"class","name":"inputReportReasonSpam","type":"ReportReason","id":1490799288,"comment":"Report for spam","arguments":[]},{"kind":"class","name":"inputReportReasonViolence","type":"ReportReason","id":505595789,"comment":"Report for violence","arguments":[]},{"kind":"class","name":"inputReportReasonPornography","type":"ReportReason","id":777640226,"comment":"Report for pornography","arguments":[]},{"kind":"class","name":"inputReportReasonChildAbuse","type":"ReportReason","id":2918469347,"comment":"Report for child abuse","arguments":[]},{"kind":"class","name":"inputReportReasonOther","type":"ReportReason","id":3252986545,"comment":"Other","arguments":[]},{"kind":"class","name":"inputReportReasonCopyright","type":"ReportReason","id":2609510714,"comment":"Report for copyrighted content","arguments":[]},{"kind":"class","name":"inputReportReasonGeoIrrelevant","type":"ReportReason","id":3688169197,"comment":"Report an irrelevant geo group","arguments":[]},{"kind":"class","name":"inputReportReasonFake","type":"ReportReason","id":4124956391,"comment":"Report for impersonation","arguments":[]},{"kind":"class","name":"inputReportReasonIllegalDrugs","type":"ReportReason","id":177124030,"comment":"Report for illegal drugs","arguments":[]},{"kind":"class","name":"inputReportReasonPersonalDetails","type":"ReportReason","id":2663876157,"comment":"Report for divulgation of personal details","arguments":[]},{"kind":"class","name":"userFull","id":525919081,"type":"UserFull","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether you have blocked this user"},{"name":"phone_calls_available","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether this user can make VoIP calls"},{"name":"phone_calls_private","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this user's privacy settings allow you to call them"},{"name":"can_pin_message","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether you can pin messages in the chat with this user, you can do this only for a chat with yourself"},{"name":"has_scheduled","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether scheduled messages are available"},{"name":"video_calls_available","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether the user can receive video calls"},{"name":"voice_messages_forbidden","type":"true","typeModifiers":{"predicate":"flags.20"},"comment":"Whether this user doesn't allow sending voice messages in a private chat with them"},{"name":"translations_disabled","type":"true","typeModifiers":{"predicate":"flags.23"},"comment":"Whether the real-time chat translation popup should be hidden."},{"name":"stories_pinned_available","type":"true","typeModifiers":{"predicate":"flags.26"},"comment":"Whether this user has some pinned stories."},{"name":"blocked_my_stories_from","type":"true","typeModifiers":{"predicate":"flags.27"},"comment":"Whether we've blocked this user, preventing them from seeing our stories »."},{"name":"wallpaper_overridden","type":"true","typeModifiers":{"predicate":"flags.28"},"comment":"Whether the other user has chosen a custom wallpaper for us using {@link messages.RawSetChatWallPaperRequest} and the for_both flag, see here » for more info."},{"name":"contact_require_premium","type":"true","typeModifiers":{"predicate":"flags.29"},"comment":"If set, we cannot write to this user: subscribe to Telegram Premium to get permission to write to this user.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.new_noncontact_peers_require_premium flag, see here » for more info."},{"name":"read_dates_private","type":"true","typeModifiers":{"predicate":"flags.30"},"comment":"If set, we cannot fetch the exact read date of messages we send to this user using {@link messages.RawGetOutboxReadDateRequest}.
The exact read date of messages might still be unavailable for other reasons, see {@link messages.RawGetOutboxReadDateRequest} for more info.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.hide_read_marks flag."},{"name":"flags2","type":"#","comment":"Flags, see TL conditional fields"},{"name":"sponsored_enabled","type":"true","typeModifiers":{"predicate":"flags2.7"},"comment":"Whether ads were re-enabled for the current account (only accessible to the currently logged-in user), see here » for more info."},{"name":"can_view_revenue","type":"true","typeModifiers":{"predicate":"flags2.9"},"comment":"If set, this user can view ad revenue statistics » for this bot."},{"name":"bot_can_manage_emoji_status","type":"true","typeModifiers":{"predicate":"flags2.10"}},{"name":"id","type":"int53","comment":"User ID"},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Bio of the user"},{"name":"settings","type":"PeerSettings","comment":"Peer settings"},{"name":"personal_photo","type":"Photo","typeModifiers":{"predicate":"flags.21"},"comment":"Personal profile photo, to be shown instead of profile_photo."},{"name":"profile_photo","type":"Photo","typeModifiers":{"predicate":"flags.2"},"comment":"Profile photo"},{"name":"fallback_photo","type":"Photo","typeModifiers":{"predicate":"flags.22"},"comment":"Fallback profile photo, displayed if no photo is present in profile_photo or personal_photo, due to privacy settings."},{"name":"notify_settings","type":"PeerNotifySettings","comment":"Notification settings"},{"name":"bot_info","type":"BotInfo","typeModifiers":{"predicate":"flags.3"},"comment":"For bots, info about the bot (bot commands, etc)"},{"name":"pinned_msg_id","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Message ID of the last pinned message"},{"name":"common_chats_count","type":"int","comment":"Chats in common with this user"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.11"},"comment":"Peer folder ID, for more info click here"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.14"},"comment":"Time To Live of all messages in this chat; once a message is this many seconds old, it must be deleted."},{"name":"theme_emoticon","type":"string","typeModifiers":{"predicate":"flags.15"},"comment":"Emoji associated with chat theme"},{"name":"private_forward_name","type":"string","typeModifiers":{"predicate":"flags.16"},"comment":"Anonymized text to be shown instead of the user's name on forwarded messages"},{"name":"bot_group_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.17"},"comment":"A suggested set of administrator rights for the bot, to be shown when adding the bot as admin to a group, see here for more info on how to handle them »."},{"name":"bot_broadcast_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.18"},"comment":"A suggested set of administrator rights for the bot, to be shown when adding the bot as admin to a channel, see here for more info on how to handle them »."},{"name":"premium_gifts","type":"PremiumGiftOption","typeModifiers":{"predicate":"flags.19","isVector":true},"comment":"Telegram Premium subscriptions gift options"},{"name":"wallpaper","type":"WallPaper","typeModifiers":{"predicate":"flags.24"},"comment":"Wallpaper to use in the private chat with the user."},{"name":"stories","type":"PeerStories","typeModifiers":{"predicate":"flags.25"},"comment":"Active stories »"},{"name":"business_work_hours","type":"BusinessWorkHours","typeModifiers":{"predicate":"flags2.0"},"comment":"Telegram Business working hours »."},{"name":"business_location","type":"BusinessLocation","typeModifiers":{"predicate":"flags2.1"},"comment":"Telegram Business location »."},{"name":"business_greeting_message","type":"BusinessGreetingMessage","typeModifiers":{"predicate":"flags2.2"},"comment":"Telegram Business greeting message »."},{"name":"business_away_message","type":"BusinessAwayMessage","typeModifiers":{"predicate":"flags2.3"},"comment":"Telegram Business away message »."},{"name":"business_intro","type":"BusinessIntro","typeModifiers":{"predicate":"flags2.4"},"comment":"Specifies a custom Telegram Business profile introduction »."},{"name":"birthday","type":"Birthday","typeModifiers":{"predicate":"flags2.5"},"comment":"Contains info about the user's birthday »."},{"name":"personal_channel_id","type":"int53","typeModifiers":{"predicate":"flags2.6"},"comment":"ID of the associated personal channel », that should be shown in the profile page."},{"name":"personal_channel_message","type":"int","typeModifiers":{"predicate":"flags2.6"},"comment":"ID of the latest message of the associated personal channel », that should be previewed in the profile page."},{"name":"stargifts_count","type":"int","typeModifiers":{"predicate":"flags2.8"},"comment":"Number of gifts the user has chosen to display on their profile"}],"comment":"Extended user info\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor)."},{"kind":"class","name":"contact","type":"Contact","id":341499403,"comment":"A contact of the current user that is registered in the system.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"mutual","type":"Bool","comment":"Current user is in the user's contact list"}]},{"kind":"class","name":"importedContact","type":"ImportedContact","id":3242081360,"comment":"Successfully imported contact.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"client_id","type":"long","comment":"The contact's client identifier (passed to one of the InputContact constructors)"}]},{"kind":"class","name":"contactStatus","type":"ContactStatus","id":383348795,"comment":"Contact status: online / offline.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"status","type":"UserStatus","comment":"Online status"}]},{"kind":"class","name":"contacts.contactsNotModified","type":"contacts.Contacts","id":3075189202,"comment":"Contact list on the server is the same as the list on the client.","arguments":[]},{"kind":"class","name":"contacts.contacts","type":"contacts.Contacts","id":3941105218,"comment":"The current user's contact list and info on users.","arguments":[{"name":"contacts","type":"Contact","typeModifiers":{"isVector":true},"comment":"Contact list"},{"name":"saved_count","type":"int","comment":"Number of contacts that were saved successfully"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"User list"}]},{"kind":"class","name":"contacts.importedContacts","type":"contacts.ImportedContacts","id":2010127419,"comment":"Info on successfully imported contacts.","arguments":[{"name":"imported","type":"ImportedContact","typeModifiers":{"isVector":true},"comment":"List of successfully imported contacts"},{"name":"popular_invites","type":"PopularContact","typeModifiers":{"isVector":true},"comment":"Popular contacts"},{"name":"retry_contacts","type":"long","typeModifiers":{"isVector":true},"comment":"List of contact ids that could not be imported due to system limitation and will need to be imported at a later date."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users"}]},{"kind":"class","name":"contacts.blocked","type":"contacts.Blocked","id":182326673,"comment":"Full list of blocked users.","arguments":[{"name":"blocked","type":"PeerBlocked","typeModifiers":{"isVector":true},"comment":"List of blocked users"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Blocked chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users"}]},{"kind":"class","name":"contacts.blockedSlice","type":"contacts.Blocked","id":3781575060,"comment":"Incomplete list of blocked users.","arguments":[{"name":"count","type":"int","comment":"Total number of elements in the list"},{"name":"blocked","type":"PeerBlocked","typeModifiers":{"isVector":true},"comment":"List of blocked users"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Blocked chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users"}]},{"kind":"class","name":"messages.dialogs","type":"messages.Dialogs","id":364538944,"comment":"Full list of chats with messages and auxiliary data.","arguments":[{"name":"dialogs","type":"Dialog","typeModifiers":{"isVector":true},"comment":"List of chats"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of last messages from each chat"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of groups mentioned in the chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in messages and groups"}]},{"kind":"class","name":"messages.dialogsSlice","type":"messages.Dialogs","id":1910543603,"comment":"Incomplete list of dialogs with messages and auxiliary data.","arguments":[{"name":"count","type":"int","comment":"Total number of dialogs"},{"name":"dialogs","type":"Dialog","typeModifiers":{"isVector":true},"comment":"List of dialogs"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of last messages from dialogs"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in dialogs"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in messages and chats"}]},{"kind":"class","name":"messages.dialogsNotModified","type":"messages.Dialogs","id":4041467286,"comment":"Dialogs haven't changed","arguments":[{"name":"count","type":"int","comment":"Number of dialogs found server-side by the query"}]},{"kind":"class","name":"messages.messages","type":"messages.Messages","id":2356252295,"comment":"Full list of messages with auxiliary data.","arguments":[{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in dialogs"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in messages and chats"}]},{"kind":"class","name":"messages.messagesSlice","type":"messages.Messages","id":978610270,"comment":"Incomplete list of messages and auxiliary data.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inexact","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, indicates that the results may be inexact"},{"name":"count","type":"int","comment":"Total number of messages in the list"},{"name":"next_rate","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Rate to use in the offset_rate parameter in the next call to {@link messages.RawSearchGlobalRequest}"},{"name":"offset_id_offset","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if the result was fetched using offset_id, and we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}."},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in messages"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in messages and chats"}]},{"kind":"class","name":"messages.channelMessages","type":"messages.Messages","id":3346446926,"comment":"Channel messages","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inexact","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, returned results may be inexact"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"count","type":"int","comment":"Total number of results were found server-side (may not be all included here)"},{"name":"offset_id_offset","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if the result was fetched using offset_id, and we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}."},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"Found messages"},{"name":"topics","type":"ForumTopic","typeModifiers":{"isVector":true},"comment":"Forum topic information"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"messages.messagesNotModified","type":"messages.Messages","id":1951620897,"comment":"No new messages matching the query were found","arguments":[{"name":"count","type":"int","comment":"Number of results found server-side by the given query"}]},{"kind":"class","name":"messages.chats","type":"messages.Chats","id":1694474197,"comment":"List of chats with auxiliary data.","arguments":[{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats"}]},{"kind":"class","name":"messages.chatsSlice","type":"messages.Chats","id":2631405892,"comment":"Partial list of chats, more would have to be fetched with pagination","arguments":[{"name":"count","type":"int","comment":"Total number of results that were found server-side (not all are included in chats)"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"}]},{"kind":"class","name":"messages.chatFull","type":"messages.ChatFull","id":3856126364,"comment":"Full info about a channel, supergroup, gigagroup or basic group.","arguments":[{"name":"full_chat","type":"ChatFull","comment":"Full info"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.affectedHistory","type":"messages.AffectedHistory","id":3025955281,"comment":"Affected part of communication history with the user or in a chat.","arguments":[{"name":"pts","type":"int","comment":"Number of events occurred in a text box"},{"name":"pts_count","type":"int","comment":"Number of affected events"},{"name":"offset","type":"int","comment":"If a parameter contains positive value, it is necessary to repeat the method call using the given value; during the proceeding of all the history the value itself shall gradually decrease"}]},{"kind":"class","name":"inputMessagesFilterEmpty","type":"MessagesFilter","id":1474492012,"comment":"Filter is absent.","arguments":[]},{"kind":"class","name":"inputMessagesFilterPhotos","type":"MessagesFilter","id":2517214492,"comment":"Filter for messages containing photos.","arguments":[]},{"kind":"class","name":"inputMessagesFilterVideo","type":"MessagesFilter","id":2680163941,"comment":"Filter for messages containing videos.","arguments":[]},{"kind":"class","name":"inputMessagesFilterPhotoVideo","type":"MessagesFilter","id":1458172132,"comment":"Filter for messages containing photos or videos.","arguments":[]},{"kind":"class","name":"inputMessagesFilterDocument","type":"MessagesFilter","id":2665345416,"comment":"Filter for messages containing documents.","arguments":[]},{"kind":"class","name":"inputMessagesFilterUrl","type":"MessagesFilter","id":2129714567,"comment":"Return only messages containing URLs","arguments":[]},{"kind":"class","name":"inputMessagesFilterGif","type":"MessagesFilter","id":4291323271,"comment":"Return only messages containing gifs","arguments":[]},{"kind":"class","name":"inputMessagesFilterVoice","type":"MessagesFilter","id":1358283666,"comment":"Return only messages containing voice notes","arguments":[]},{"kind":"class","name":"inputMessagesFilterMusic","type":"MessagesFilter","id":928101534,"comment":"Return only messages containing audio files","arguments":[]},{"kind":"class","name":"inputMessagesFilterChatPhotos","type":"MessagesFilter","id":975236280,"comment":"Return only chat photo changes","arguments":[]},{"kind":"class","name":"inputMessagesFilterPhoneCalls","type":"MessagesFilter","id":2160695144,"comment":"Return only phone calls","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"missed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Return only missed phone calls"}]},{"kind":"class","name":"inputMessagesFilterRoundVoice","type":"MessagesFilter","id":2054952868,"comment":"Return only round videos and voice notes","arguments":[]},{"kind":"class","name":"inputMessagesFilterRoundVideo","type":"MessagesFilter","id":3041516115,"comment":"Return only round videos","arguments":[]},{"kind":"class","name":"inputMessagesFilterMyMentions","type":"MessagesFilter","id":3254314650,"comment":"Return only messages where the current user was mentioned.","arguments":[]},{"kind":"class","name":"inputMessagesFilterGeo","type":"MessagesFilter","id":3875695885,"comment":"Return only messages containing geolocations","arguments":[]},{"kind":"class","name":"inputMessagesFilterContacts","type":"MessagesFilter","id":3764575107,"comment":"Return only messages containing contacts","arguments":[]},{"kind":"class","name":"inputMessagesFilterPinned","type":"MessagesFilter","id":464520273,"comment":"Fetch only pinned messages","arguments":[]},{"kind":"class","name":"updateNewMessage","type":"Update","id":522914557,"comment":"New message in a private chat or in a basic group.","arguments":[{"name":"message","type":"Message","comment":"Message"},{"name":"pts","type":"int","comment":"New quantity of actions in a message box"},{"name":"pts_count","type":"int","comment":"Number of generated events"}]},{"kind":"class","name":"updateMessageID","type":"Update","id":1318109142,"comment":"Sent message with random_id client identifier was assigned an identifier.","arguments":[{"name":"id","type":"int","comment":"id identifier of a respective Message"},{"name":"random_id","type":"long","comment":"Previously transferred client random_id identifier"}]},{"kind":"class","name":"updateDeleteMessages","type":"Update","id":2718806245,"comment":"Messages were deleted.","arguments":[{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"List of identifiers of deleted messages"},{"name":"pts","type":"int","comment":"New quality of actions in a message box"},{"name":"pts_count","type":"int","comment":"Number of generated events"}]},{"kind":"class","name":"updateUserTyping","type":"Update","id":3223225727,"comment":"The user is preparing a message; typing, recording, uploading, etc. This update is valid for 6 seconds. If no further updates of this kind are received after 6 seconds, it should be considered that the user stopped doing whatever they were doing","arguments":[{"name":"user_id","type":"int53","comment":"User id"},{"name":"action","type":"SendMessageAction","comment":"Action type"}]},{"kind":"class","name":"updateChatUserTyping","type":"Update","id":2202565360,"comment":"The user is preparing a message in a group; typing, recording, uploading, etc. This update is valid for 6 seconds. If no further updates of this kind are received after 6 seconds, it should be considered that the user stopped doing whatever they were doing","arguments":[{"name":"chat_id","type":"int53","comment":"Group id"},{"name":"from_id","type":"Peer","comment":"Peer that started typing (can be the chat itself, in case of anonymous admins)."},{"name":"action","type":"SendMessageAction","comment":"Type of action"}]},{"kind":"class","name":"updateChatParticipants","type":"Update","id":125178264,"comment":"Composition of chat participants changed.","arguments":[{"name":"participants","type":"ChatParticipants","comment":"Updated chat participants"}]},{"kind":"class","name":"updateUserStatus","type":"Update","id":3854432478,"comment":"Contact status update.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"status","type":"UserStatus","comment":"New status"}]},{"kind":"class","name":"updateUserName","type":"Update","id":2810480932,"comment":"Changes the user's first name, last name and username.","arguments":[{"name":"user_id","type":"int53","comment":"User identifier"},{"name":"first_name","type":"string","comment":"New first name. Corresponds to the new value of real_first_name field of the {@link RawUserFull} constructor."},{"name":"last_name","type":"string","comment":"New last name. Corresponds to the new value of real_last_name field of the {@link RawUserFull} constructor."},{"name":"usernames","type":"Username","typeModifiers":{"isVector":true},"comment":"Usernames."}]},{"kind":"class","name":"updateNewAuthorization","type":"Update","id":2303831023,"comment":"A new session logged into the current user's account through an unknown device.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"unconfirmed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the session is unconfirmed, see here » for more info."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Authorization date"},{"name":"device","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Name of device, for example Android"},{"name":"location","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Location, for example USA, NY (IP=1.2.3.4)"}]},{"kind":"class","name":"updateNewEncryptedMessage","type":"Update","id":314359194,"comment":"New encrypted message.","arguments":[{"name":"message","type":"EncryptedMessage","comment":"Message"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateEncryptedChatTyping","type":"Update","id":386986326,"comment":"Interlocutor is typing a message in an encrypted chat. Update period is 6 second. If upon this time there is no repeated update, it shall be considered that the interlocutor stopped typing.","arguments":[{"name":"chat_id","type":"int","comment":"Chat ID"}]},{"kind":"class","name":"updateEncryption","type":"Update","id":3030575245,"comment":"Change of state in an encrypted chat.","arguments":[{"name":"chat","type":"EncryptedChat","comment":"Encrypted chat"},{"name":"date","type":"int","comment":"Date of change"}]},{"kind":"class","name":"updateEncryptedMessagesRead","type":"Update","id":956179895,"comment":"Communication history in an encrypted chat was marked as read.","arguments":[{"name":"chat_id","type":"int","comment":"Chat ID"},{"name":"max_date","type":"int","comment":"Maximum value of data for read messages"},{"name":"date","type":"int","comment":"Time when messages were read"}]},{"kind":"class","name":"updateChatParticipantAdd","type":"Update","id":1037718609,"comment":"New group member.","arguments":[{"name":"chat_id","type":"int53","comment":"Group ID"},{"name":"user_id","type":"int53","comment":"ID of the new member"},{"name":"inviter_id","type":"int53","comment":"ID of the user, who added member to the group"},{"name":"date","type":"int","comment":"When was the participant added"},{"name":"version","type":"int","comment":"Chat version number"}]},{"kind":"class","name":"updateChatParticipantDelete","type":"Update","id":3811523959,"comment":"A member has left the group.","arguments":[{"name":"chat_id","type":"int53","comment":"Group ID"},{"name":"user_id","type":"int53","comment":"ID of the user"},{"name":"version","type":"int","comment":"Used in basic groups to reorder updates and make sure that all of them was received."}]},{"kind":"class","name":"updateDcOptions","type":"Update","id":2388564083,"comment":"Changes in the data center configuration options.","arguments":[{"name":"dc_options","type":"DcOption","typeModifiers":{"isVector":true},"comment":"New connection options"}]},{"kind":"class","name":"updateNotifySettings","type":"Update","id":3200411887,"comment":"Changes in notification settings.","arguments":[{"name":"peer","type":"NotifyPeer","comment":"Notification source"},{"name":"notify_settings","type":"PeerNotifySettings","comment":"New notification settings"}]},{"kind":"class","name":"updateServiceNotification","type":"Update","id":3957614617,"comment":"A service message for the user.\n\nThe app must show the message to the user upon receiving this update. In case the popup parameter was passed, the text message must be displayed in a popup alert immediately upon receipt. It is recommended to handle the text as you would an ordinary message in terms of highlighting links, etc. The message must also be stored locally as part of the message history with the user id 777000 (Telegram Notifications).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"popup","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the message must be displayed in a popup."},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"inbox_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"When was the notification received
The message must also be stored locally as part of the message history with the user id 777000 (Telegram Notifications)."},{"name":"type","type":"string","comment":"String, identical in format and contents to the type field in API errors. Describes type of service message. It is acceptable to ignore repeated messages of the same type within a short period of time (15 minutes)."},{"name":"message","type":"string","comment":"Message text"},{"name":"media","type":"MessageMedia","comment":"Media content (optional)"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"}]},{"kind":"class","name":"updatePrivacy","type":"Update","id":3996854058,"comment":"Privacy rules were changed","arguments":[{"name":"key","type":"PrivacyKey","comment":"Peers to which the privacy rules apply"},{"name":"rules","type":"PrivacyRule","typeModifiers":{"isVector":true},"comment":"New privacy rules"}]},{"kind":"class","name":"updateUserPhone","type":"Update","id":88680979,"comment":"A user's phone number was changed","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"phone","type":"string","comment":"New phone number"}]},{"kind":"class","name":"updateReadHistoryInbox","type":"Update","id":2627162079,"comment":"Incoming messages were read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Peer folder ID, for more info click here"},{"name":"peer","type":"Peer","comment":"Peer"},{"name":"max_id","type":"int","comment":"Maximum ID of messages read"},{"name":"still_unread_count","type":"int","comment":"Number of messages that are still unread"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateReadHistoryOutbox","type":"Update","id":791617983,"comment":"Outgoing messages were read","arguments":[{"name":"peer","type":"Peer","comment":"Peer"},{"name":"max_id","type":"int","comment":"Maximum ID of read outgoing messages"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateWebPage","type":"Update","id":2139689491,"comment":"An instant view webpage preview was generated","arguments":[{"name":"webpage","type":"WebPage","comment":"Webpage preview"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateReadMessagesContents","type":"Update","id":4163006849,"comment":"Contents of messages in the common message box were read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of read messages"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"},{"name":"date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"When was the last message in messages marked as read."}]},{"kind":"class","name":"updateChannelTooLong","type":"Update","id":277713951,"comment":"There are new updates in the specified channel, the client must fetch them.
\nIf the difference is too long or if the channel isn't currently in the states, start fetching from the specified pts.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"The channel"},{"name":"pts","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"The PTS."}]},{"kind":"class","name":"updateChannel","type":"Update","id":1666927625,"comment":"Channel/supergroup ({@link RawChannel} and/or {@link RawChannelFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawChannel}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawChannelFull}) must be invalidated for channel_id when receiving this update.","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"}]},{"kind":"class","name":"updateNewChannelMessage","type":"Update","id":1656358105,"comment":"A new message was sent in a channel/supergroup","arguments":[{"name":"message","type":"Message","comment":"New message"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateReadChannelInbox","type":"Update","id":2452516368,"comment":"Incoming messages in a channel/supergroup were read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Peer folder ID, for more info click here"},{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID"},{"name":"max_id","type":"int","comment":"Position up to which all incoming messages are read."},{"name":"still_unread_count","type":"int","comment":"Count of messages weren't read yet"},{"name":"pts","type":"int","comment":"Event count after generation"}]},{"kind":"class","name":"updateDeleteChannelMessages","type":"Update","id":3274529554,"comment":"Some messages in a supergroup/channel were deleted","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages that were deleted"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateChannelMessageViews","type":"Update","id":4062620680,"comment":"The view counter of a message in a channel has changed","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"id","type":"int","comment":"ID of the message"},{"name":"views","type":"int","comment":"New view counter"}]},{"kind":"class","name":"updateChatParticipantAdmin","type":"Update","id":3620364706,"comment":"Admin permissions of a user in a basic group were changed","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"user_id","type":"int53","comment":"ID of the (de)admined user"},{"name":"is_admin","type":"Bool","comment":"Whether the user was rendered admin"},{"name":"version","type":"int","comment":"Used in basic groups to reorder updates and make sure that all of them was received."}]},{"kind":"class","name":"updateNewStickerSet","type":"Update","id":1753886890,"comment":"A new stickerset was installed","arguments":[{"name":"stickerset","type":"messages.StickerSet","comment":"The installed stickerset"}]},{"kind":"class","name":"updateStickerSetsOrder","type":"Update","id":196268545,"comment":"The order of stickersets was changed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the updated stickers are mask stickers"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the updated stickers are custom emoji stickers"},{"name":"order","type":"long","typeModifiers":{"isVector":true},"comment":"New sticker order by sticker ID"}]},{"kind":"class","name":"updateStickerSets","type":"Update","id":834816008,"comment":"Installed stickersets have changed, the client should refetch them as described in the docs.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether mask stickersets have changed"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the list of installed custom emoji stickersets has changed"}]},{"kind":"class","name":"updateSavedGifs","type":"Update","id":2473931806,"comment":"The saved gif list has changed, the client should refetch it using {@link messages.RawGetSavedGifsRequest}","arguments":[]},{"kind":"class","name":"updateBotInlineQuery","type":"Update","id":1232025500,"comment":"An incoming inline query","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"user_id","type":"int53","comment":"User that sent the query"},{"name":"query","type":"string","comment":"Text of query"},{"name":"geo","type":"GeoPoint","typeModifiers":{"predicate":"flags.0"},"comment":"Attached geolocation"},{"name":"peer_type","type":"InlineQueryPeerType","typeModifiers":{"predicate":"flags.1"},"comment":"Type of the chat from which the inline query was sent."},{"name":"offset","type":"string","comment":"Offset to navigate through results"}]},{"kind":"class","name":"updateBotInlineSend","type":"Update","id":317794823,"comment":"The result of an inline query that was chosen by a user and sent to their chat partner. Please see our documentation on the feedback collecting for details on how to enable these updates for your bot.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"user_id","type":"int53","comment":"The user that chose the result"},{"name":"query","type":"string","comment":"The query that was used to obtain the result"},{"name":"geo","type":"GeoPoint","typeModifiers":{"predicate":"flags.0"},"comment":"Optional. Sender location, only for bots that require user location"},{"name":"id","type":"string","comment":"The unique identifier for the result that was chosen"},{"name":"msg_id","type":"InputBotInlineMessageID","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of the sent inline message. Available only if there is an inline keyboard attached to the message. Will be also received in callback queries and can be used to edit the message."}]},{"kind":"class","name":"updateEditChannelMessage","type":"Update","id":457133559,"comment":"A message was edited in a channel/supergroup","arguments":[{"name":"message","type":"Message","comment":"The new message"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateBotCallbackQuery","type":"Update","id":3117401229,"comment":"A callback button was pressed, and the button data was sent to the bot that created the button","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"user_id","type":"int53","comment":"ID of the user that pressed the button"},{"name":"peer","type":"Peer","comment":"Chat where the inline keyboard was sent"},{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"chat_instance","type":"long","comment":"Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games."},{"name":"data","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Callback data"},{"name":"game_short_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Short name of a Game to be returned, serves as the unique identifier for the game"}]},{"kind":"class","name":"updateEditMessage","type":"Update","id":3825430691,"comment":"A message was edited","arguments":[{"name":"message","type":"Message","comment":"The new edited message"},{"name":"pts","type":"int","comment":"PTS"},{"name":"pts_count","type":"int","comment":"PTS count"}]},{"kind":"class","name":"updateInlineBotCallbackQuery","type":"Update","id":1763610706,"comment":"This notification is received by bots when a button is pressed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"user_id","type":"int53","comment":"ID of the user that pressed the button"},{"name":"msg_id","type":"InputBotInlineMessageID","comment":"ID of the inline message with the button"},{"name":"chat_instance","type":"long","comment":"Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games."},{"name":"data","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Data associated with the callback button. Be aware that a bad client can send arbitrary data in this field."},{"name":"game_short_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Short name of a Game to be returned, serves as the unique identifier for the game"}]},{"kind":"class","name":"updateReadChannelOutbox","type":"Update","id":3076495785,"comment":"Outgoing messages in a channel/supergroup were read","arguments":[{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID"},{"name":"max_id","type":"int","comment":"Position up to which all outgoing messages are read."}]},{"kind":"class","name":"updateDraftMessage","type":"Update","id":457829485,"comment":"Notifies a change of a message draft.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"The peer to which the draft is associated"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the forum topic to which the draft is associated"},{"name":"draft","type":"DraftMessage","comment":"The draft"}]},{"kind":"class","name":"updateReadFeaturedStickers","type":"Update","id":1461528386,"comment":"Some featured stickers were marked as read","arguments":[]},{"kind":"class","name":"updateRecentStickers","type":"Update","id":2588027936,"comment":"The recent sticker list was updated","arguments":[]},{"kind":"class","name":"updateConfig","type":"Update","id":2720652550,"comment":"The server-side configuration has changed; the client should re-fetch the config using {@link help.RawGetConfigRequest} and {@link help.RawGetAppConfigRequest}.","arguments":[]},{"kind":"class","name":"updatePtsChanged","type":"Update","id":861169551,"comment":"Common message box sequence PTS has changed, state has to be refetched using updates.getState","arguments":[]},{"kind":"class","name":"updateChannelWebPage","type":"Update","id":791390623,"comment":"A webpage preview of a link in a channel/supergroup message was generated","arguments":[{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID"},{"name":"webpage","type":"WebPage","comment":"Generated webpage preview"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateDialogPinned","type":"Update","id":1852826908,"comment":"A dialog was pinned/unpinned","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the dialog was pinned"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Peer folder ID, for more info click here"},{"name":"peer","type":"DialogPeer","comment":"The dialog"}]},{"kind":"class","name":"updatePinnedDialogs","type":"Update","id":4195302562,"comment":"Pinned dialogs were updated","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Peer folder ID, for more info click here"},{"name":"order","type":"DialogPeer","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"New order of pinned dialogs"}]},{"kind":"class","name":"updateBotWebhookJSON","type":"Update","id":2199371971,"comment":"A new incoming event; for bots only","arguments":[{"name":"data","type":"DataJSON","comment":"The event"}]},{"kind":"class","name":"updateBotWebhookJSONQuery","type":"Update","id":2610053286,"comment":"A new incoming query; for bots only","arguments":[{"name":"query_id","type":"long","comment":"Query identifier"},{"name":"data","type":"DataJSON","comment":"Query data"},{"name":"timeout","type":"int","comment":"Query timeout"}]},{"kind":"class","name":"updateBotShippingQuery","type":"Update","id":3048144253,"comment":"This object contains information about an incoming shipping query.","arguments":[{"name":"query_id","type":"long","comment":"Unique query identifier"},{"name":"user_id","type":"int53","comment":"User who sent the query"},{"name":"payload","type":"bytes","comment":"Bot specified invoice payload"},{"name":"shipping_address","type":"PostAddress","comment":"User specified shipping address"}]},{"kind":"class","name":"updateBotPrecheckoutQuery","type":"Update","id":2359990934,"comment":"This object contains information about an incoming pre-checkout query.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Unique query identifier"},{"name":"user_id","type":"int53","comment":"User who sent the query"},{"name":"payload","type":"bytes","comment":"Bot specified invoice payload"},{"name":"info","type":"PaymentRequestedInfo","typeModifiers":{"predicate":"flags.0"},"comment":"Order info provided by the user"},{"name":"shipping_option_id","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of the shipping option chosen by the user"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Total amount in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"updatePhoneCall","type":"Update","id":2869914398,"comment":"An incoming phone call","arguments":[{"name":"phone_call","type":"PhoneCall","comment":"Phone call"}]},{"kind":"class","name":"updateLangPackTooLong","type":"Update","id":1180041828,"comment":"A language pack has changed, the client should manually fetch the changed strings using {@link langpack.RawGetDifferenceRequest}","arguments":[{"name":"lang_code","type":"string","comment":"Language code"}]},{"kind":"class","name":"updateLangPack","type":"Update","id":1442983757,"comment":"Language pack updated","arguments":[{"name":"difference","type":"LangPackDifference","comment":"Changed strings"}]},{"kind":"class","name":"updateFavedStickers","type":"Update","id":3843135853,"comment":"The list of favorited stickers was changed, the client should call {@link messages.RawGetFavedStickersRequest} to refetch the new list","arguments":[]},{"kind":"class","name":"updateChannelReadMessagesContents","type":"Update","id":3928556893,"comment":"The specified channel/supergroup messages were read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Forum topic ID."},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages that were read"}]},{"kind":"class","name":"updateContactsReset","type":"Update","id":1887741886,"comment":"All contacts were deleted","arguments":[]},{"kind":"class","name":"updateChannelAvailableMessages","type":"Update","id":2990524056,"comment":"The history of a channel/supergroup was hidden.","arguments":[{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID"},{"name":"available_min_id","type":"int","comment":"Identifier of a maximum unavailable message in a channel due to hidden history."}]},{"kind":"class","name":"updateDialogUnreadMark","type":"Update","id":3781450179,"comment":"The manual unread mark of a chat was changed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"unread","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Was the chat marked or unmarked as read"},{"name":"peer","type":"DialogPeer","comment":"The dialog"}]},{"kind":"class","name":"updateMessagePoll","type":"Update","id":2896258427,"comment":"The results of a poll have changed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"poll_id","type":"long","comment":"Poll ID"},{"name":"poll","type":"Poll","typeModifiers":{"predicate":"flags.0"},"comment":"If the server knows the client hasn't cached this poll yet, the poll itself"},{"name":"results","type":"PollResults","comment":"New poll results"}]},{"kind":"class","name":"updateChatDefaultBannedRights","type":"Update","id":1421875280,"comment":"Default banned rights in a normal chat were updated","arguments":[{"name":"peer","type":"Peer","comment":"The chat"},{"name":"default_banned_rights","type":"ChatBannedRights","comment":"New default banned rights"},{"name":"version","type":"int","comment":"Version"}]},{"kind":"class","name":"updateFolderPeers","type":"Update","id":422972864,"comment":"The peer list of a peer folder was updated","arguments":[{"name":"folder_peers","type":"FolderPeer","typeModifiers":{"isVector":true},"comment":"New peer list"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updatePeerSettings","type":"Update","id":1786671974,"comment":"Settings of a certain peer have changed","arguments":[{"name":"peer","type":"Peer","comment":"The peer"},{"name":"settings","type":"PeerSettings","comment":"Associated peer settings"}]},{"kind":"class","name":"updatePeerLocated","type":"Update","id":3031420848,"comment":"List of peers near you was updated","arguments":[{"name":"peers","type":"PeerLocated","typeModifiers":{"isVector":true},"comment":"Geolocated peer list update"}]},{"kind":"class","name":"updateNewScheduledMessage","type":"Update","id":967122427,"comment":"A message was added to the schedule queue of a chat","arguments":[{"name":"message","type":"Message","comment":"Message"}]},{"kind":"class","name":"updateDeleteScheduledMessages","id":4071037315,"type":"Update","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"Peer"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"Deleted scheduled messages"},{"name":"sent_messages","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true}}],"comment":"Some scheduled messages were deleted from the schedule queue of a chat"},{"kind":"class","name":"updateTheme","type":"Update","id":2182544291,"comment":"A cloud theme was updated","arguments":[{"name":"theme","type":"Theme","comment":"Theme"}]},{"kind":"class","name":"updateGeoLiveViewed","type":"Update","id":2267003193,"comment":"Live geo position message was viewed","arguments":[{"name":"peer","type":"Peer","comment":"The user that viewed the live geo position"},{"name":"msg_id","type":"int","comment":"Message ID of geo position message"}]},{"kind":"class","name":"updateLoginToken","type":"Update","id":1448076945,"comment":"A login token (for login via QR code) was accepted.","arguments":[]},{"kind":"class","name":"updateMessagePollVote","type":"Update","id":619974263,"comment":"A specific peer has voted in a poll","arguments":[{"name":"poll_id","type":"long","comment":"Poll ID"},{"name":"peer","type":"Peer","comment":"The peer that voted in the poll"},{"name":"options","type":"bytes","typeModifiers":{"isVector":true},"comment":"Chosen option(s)"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateDialogFilter","type":"Update","id":654302845,"comment":"A new folder was added","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"int","comment":"Folder ID"},{"name":"filter","type":"DialogFilter","typeModifiers":{"predicate":"flags.0"},"comment":"Folder info"}]},{"kind":"class","name":"updateDialogFilterOrder","type":"Update","id":2782339333,"comment":"New folder order","arguments":[{"name":"order","type":"int","typeModifiers":{"isVector":true},"comment":"Ordered folder IDs"}]},{"kind":"class","name":"updateDialogFilters","type":"Update","id":889491791,"comment":"Clients should update folder info","arguments":[]},{"kind":"class","name":"updatePhoneCallSignalingData","type":"Update","id":643940105,"comment":"Incoming phone call signaling payload","arguments":[{"name":"phone_call_id","type":"long","comment":"Phone call ID"},{"name":"data","type":"bytes","comment":"Signaling payload"}]},{"kind":"class","name":"updateChannelMessageForwards","type":"Update","id":3533318132,"comment":"The forward counter of a message in a channel has changed","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"id","type":"int","comment":"ID of the message"},{"name":"forwards","type":"int","comment":"New forward counter"}]},{"kind":"class","name":"updateReadChannelDiscussionInbox","type":"Update","id":3601962310,"comment":"Incoming comments in a discussion thread were marked as read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"Discussion group ID"},{"name":"top_msg_id","type":"int","comment":"ID of the group message that started the thread (message in linked discussion group)"},{"name":"read_max_id","type":"int","comment":"Message ID of latest read incoming message for this thread"},{"name":"broadcast_id","type":"int53","typeModifiers":{"predicate":"flags.0"},"comment":"If set, contains the ID of the channel that contains the post that started the comment thread in the discussion group (channel_id)"},{"name":"broadcast_post","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, contains the ID of the channel post that started the comment thread"}]},{"kind":"class","name":"updateReadChannelDiscussionOutbox","type":"Update","id":1767677564,"comment":"Outgoing comments in a discussion thread were marked as read","arguments":[{"name":"channel_id","type":"int53","comment":"Supergroup ID"},{"name":"top_msg_id","type":"int","comment":"ID of the group message that started the thread"},{"name":"read_max_id","type":"int","comment":"Message ID of latest read outgoing message for this thread"}]},{"kind":"class","name":"updatePeerBlocked","type":"Update","id":3957356370,"comment":"We blocked a peer, see here » for more info on blocklists.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the peer was blocked or unblocked"},{"name":"blocked_my_stories_from","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the peer was added/removed to/from the story blocklist; if not set, this update affects the main blocklist, see here » for more info."},{"name":"peer_id","type":"Peer","comment":"The (un)blocked peer"}]},{"kind":"class","name":"updateChannelUserTyping","type":"Update","id":2357774627,"comment":"A user is typing in a supergroup, channel or message thread","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Thread ID"},{"name":"from_id","type":"Peer","comment":"The peer that is typing"},{"name":"action","type":"SendMessageAction","comment":"Whether the user is typing, sending a media or doing something else"}]},{"kind":"class","name":"updatePinnedMessages","type":"Update","id":3984976565,"comment":"Some messages were pinned in a chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the messages were pinned or unpinned"},{"name":"peer","type":"Peer","comment":"Peer"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"Message IDs"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updatePinnedChannelMessages","type":"Update","id":1538885128,"comment":"Messages were pinned/unpinned in a channel/supergroup","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the messages were pinned or unpinned"},{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"Messages"},{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"updateChat","type":"Update","id":4170869326,"comment":"Chat ({@link RawChat} and/or {@link RawChatFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawChat}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawChatFull}) must be invalidated for chat_id when receiving this update.","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"}]},{"kind":"class","name":"updateGroupCallParticipants","type":"Update","id":4075543374,"comment":"The participant list of a certain group call has changed","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"participants","type":"GroupCallParticipant","typeModifiers":{"isVector":true},"comment":"New participant list"},{"name":"version","type":"int","comment":"Version"}]},{"kind":"class","name":"updateGroupCall","type":"Update","id":347227392,"comment":"A new groupcall was started","arguments":[{"name":"chat_id","type":"int53","comment":"The channel/supergroup where this group call or livestream takes place"},{"name":"call","type":"GroupCall","comment":"Info about the group call or livestream"}]},{"kind":"class","name":"updatePeerHistoryTTL","type":"Update","id":3147544997,"comment":"The Time-To-Live for messages sent by the current user in a specific chat has changed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"The chat"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"The new Time-To-Live"}]},{"kind":"class","name":"updateChatParticipant","type":"Update","id":3498534458,"comment":"A user has joined or left a specific chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"date","type":"int","comment":"When did this event occur"},{"name":"actor_id","type":"int53","comment":"User that triggered the change (inviter, admin that kicked the user, or the even the user_id itself)"},{"name":"user_id","type":"int53","comment":"User that was affected by the change"},{"name":"prev_participant","type":"ChatParticipant","typeModifiers":{"predicate":"flags.0"},"comment":"Previous participant info (empty if this participant just joined)"},{"name":"new_participant","type":"ChatParticipant","typeModifiers":{"predicate":"flags.1"},"comment":"New participant info (empty if this participant just left)"},{"name":"invite","type":"ExportedChatInvite","typeModifiers":{"predicate":"flags.2"},"comment":"The invite that was used to join the group"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateChannelParticipant","type":"Update","id":2556246715,"comment":"A participant has left, joined, was banned or admined in a channel or supergroup.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_chatlist","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the participant joined using a chat folder deep link »."},{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"date","type":"int","comment":"Date of the event"},{"name":"actor_id","type":"int53","comment":"User that triggered the change (inviter, admin that kicked the user, or the even the user_id itself)"},{"name":"user_id","type":"int53","comment":"User that was affected by the change"},{"name":"prev_participant","type":"ChannelParticipant","typeModifiers":{"predicate":"flags.0"},"comment":"Previous participant status"},{"name":"new_participant","type":"ChannelParticipant","typeModifiers":{"predicate":"flags.1"},"comment":"New participant status"},{"name":"invite","type":"ExportedChatInvite","typeModifiers":{"predicate":"flags.2"},"comment":"Chat invite used to join the channel/supergroup"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateBotStopped","type":"Update","id":3297184329,"comment":"A bot was stopped or re-started.","arguments":[{"name":"user_id","type":"int53","comment":"The user ID"},{"name":"date","type":"int","comment":"When did this action occur"},{"name":"stopped","type":"Bool","comment":"Whether the bot was stopped or started"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateGroupCallConnection","type":"Update","id":192428418,"comment":"New WebRTC parameters","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"presentation","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Are these parameters related to the screen capture session currently in progress?"},{"name":"params","type":"DataJSON","comment":"WebRTC parameters"}]},{"kind":"class","name":"updateBotCommands","type":"Update","id":1299263278,"comment":"The command set of a certain bot in a certain chat has changed.","arguments":[{"name":"peer","type":"Peer","comment":"The affected chat"},{"name":"bot_id","type":"int53","comment":"ID of the bot that changed its command set"},{"name":"commands","type":"BotCommand","typeModifiers":{"isVector":true},"comment":"New bot commands"}]},{"kind":"class","name":"updatePendingJoinRequests","type":"Update","id":1885586395,"comment":"Someone has requested to join a chat or channel","arguments":[{"name":"peer","type":"Peer","comment":"Chat or channel"},{"name":"requests_pending","type":"int","comment":"Number of pending join requests » for the chat or channel"},{"name":"recent_requesters","type":"int53","typeModifiers":{"isVector":true},"comment":"IDs of users that have recently requested to join"}]},{"kind":"class","name":"updateBotChatInviteRequester","type":"Update","id":299870598,"comment":"Someone has requested to join a chat or channel (bots only, users will receive an {@link RawUpdatePendingJoinRequests}, instead)","arguments":[{"name":"peer","type":"Peer","comment":"The chat or channel in question"},{"name":"date","type":"int","comment":"When was the join request » made"},{"name":"user_id","type":"int53","comment":"The user ID that is asking to join the chat or channel"},{"name":"about","type":"string","comment":"Bio of the user"},{"name":"invite","type":"ExportedChatInvite","comment":"Chat invite link that was used by the user to send the join request »"},{"name":"qts","type":"int","comment":"QTS event sequence identifier"}]},{"kind":"class","name":"updateMessageReactions","type":"Update","id":1578843320,"comment":"New message reactions » are available","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"Peer"},{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Forum topic ID"},{"name":"reactions","type":"MessageReactions","comment":"Reactions"}]},{"kind":"class","name":"updateAttachMenuBots","type":"Update","id":397910539,"comment":"The list of installed attachment menu entries » has changed, use {@link messages.RawGetAttachMenuBotsRequest} to fetch the updated list.","arguments":[]},{"kind":"class","name":"updateWebViewResultSent","type":"Update","id":361936797,"comment":"Indicates to a bot that a webview was closed and an inline message was sent on behalf of the user using {@link messages.RawSendWebViewResultMessageRequest}","arguments":[{"name":"query_id","type":"long","comment":"Web app interaction ID"}]},{"kind":"class","name":"updateBotMenuButton","type":"Update","id":347625491,"comment":"The menu button behavior for the specified bot has changed","arguments":[{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"button","type":"BotMenuButton","comment":"New menu button"}]},{"kind":"class","name":"updateSavedRingtones","type":"Update","id":1960361625,"comment":"The list of saved notification sounds has changed, use {@link account.RawGetSavedRingtonesRequest} to fetch the new list.","arguments":[]},{"kind":"class","name":"updateTranscribedAudio","type":"Update","id":8703322,"comment":"A pending voice message transcription » initiated with {@link messages.RawTranscribeAudioRequest} was updated.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pending","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this transcription is still pending and further {@link RawUpdateTranscribedAudio} about it will be sent in the future."},{"name":"peer","type":"Peer","comment":"Peer of the transcribed message"},{"name":"msg_id","type":"int","comment":"Transcribed message ID"},{"name":"transcription_id","type":"long","comment":"Transcription ID"},{"name":"text","type":"string","comment":"Transcribed text"}]},{"kind":"class","name":"updateReadFeaturedEmojiStickers","type":"Update","id":4216080748,"comment":"Some featured custom emoji stickers were marked as read","arguments":[]},{"kind":"class","name":"updateUserEmojiStatus","type":"Update","id":674706841,"comment":"The emoji status of a certain user has changed","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"emoji_status","type":"EmojiStatus","comment":"New emoji status"}]},{"kind":"class","name":"updateRecentEmojiStatuses","type":"Update","id":821314523,"comment":"The list of recent emoji statuses has changed","arguments":[]},{"kind":"class","name":"updateRecentReactions","type":"Update","id":1870160884,"comment":"The list of recent message reactions has changed","arguments":[]},{"kind":"class","name":"updateMoveStickerSetToTop","type":"Update","id":2264715141,"comment":"A stickerset was just moved to top, see here for more info »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"This update is referring to a mask stickerset"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"This update is referring to a custom emoji stickerset"},{"name":"stickerset","type":"long","comment":"Stickerset ID"}]},{"kind":"class","name":"updateMessageExtendedMedia","type":"Update","id":3584300836,"comment":"You bought a paid media »: this update contains the revealed media.","arguments":[{"name":"peer","type":"Peer","comment":"Peer where the paid media was posted"},{"name":"msg_id","type":"int","comment":"ID of the message containing the paid media"},{"name":"extended_media","type":"MessageExtendedMedia","typeModifiers":{"isVector":true},"comment":"Revealed media, contains only {@link RawMessageExtendedMedia} constructors."}]},{"kind":"class","name":"updateChannelPinnedTopic","type":"Update","id":422509539,"comment":"A forum topic » was pinned or unpinned.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the topic was pinned or unpinned"},{"name":"channel_id","type":"int53","comment":"The forum ID"},{"name":"topic_id","type":"int","comment":"The topic ID"}]},{"kind":"class","name":"updateChannelPinnedTopics","type":"Update","id":4263085570,"comment":"The pinned topics of a forum have changed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"Forum ID."},{"name":"order","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Ordered list containing the IDs of all pinned topics."}]},{"kind":"class","name":"updateUser","type":"Update","id":542282808,"comment":"User ({@link RawUser} and/or {@link RawUserFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawUser}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawUserFull}) must be invalidated for user_id when receiving this update.","arguments":[{"name":"user_id","type":"int53","comment":"User ID"}]},{"kind":"class","name":"updateAutoSaveSettings","type":"Update","id":3959795863,"comment":"Media autosave settings have changed and must be refetched using {@link account.RawGetAutoSaveSettingsRequest}.","arguments":[]},{"kind":"class","name":"updateStory","type":"Update","id":1974712216,"comment":"A new story was posted.","arguments":[{"name":"peer","type":"Peer","comment":"ID of the poster."},{"name":"story","type":"StoryItem","comment":"The story that was posted."}]},{"kind":"class","name":"updateReadStories","type":"Update","id":4149121835,"comment":"Stories of a specific peer were marked as read.","arguments":[{"name":"peer","type":"Peer","comment":"The peer"},{"name":"max_id","type":"int","comment":"ID of the last story that was marked as read"}]},{"kind":"class","name":"updateStoryID","type":"Update","id":468923833,"comment":"A story was successfully uploaded.\n\nOnce a story is successfully uploaded, an {@link RawUpdateStoryID} will be returned, indicating the story ID (id) that was attributed to the story (like for messages, random_id indicates the random_id that was passed to {@link stories.RawSendStoryRequest}: this way, you can tell which story was assigned a specific id by checking which {@link stories.RawSendStoryRequest} call has the returned random_id).","arguments":[{"name":"id","type":"int","comment":"The id that was attributed to the story."},{"name":"random_id","type":"long","comment":"The random_id that was passed to {@link stories.RawSendStoryRequest}."}]},{"kind":"class","name":"updateStoriesStealthMode","type":"Update","id":738741697,"comment":"Indicates that stories stealth mode was activated.","arguments":[{"name":"stealth_mode","type":"StoriesStealthMode","comment":"Information about the current stealth mode session."}]},{"kind":"class","name":"updateSentStoryReaction","type":"Update","id":2103604867,"comment":"Indicates we reacted to a story ».","arguments":[{"name":"peer","type":"Peer","comment":"The peer that sent the story"},{"name":"story_id","type":"int","comment":"ID of the story we reacted to"},{"name":"reaction","type":"Reaction","comment":"The reaction that was sent"}]},{"kind":"class","name":"updateBotChatBoost","type":"Update","id":2421019804,"comment":"A channel/supergroup boost has changed (bots only)","arguments":[{"name":"peer","type":"Peer","comment":"Channel"},{"name":"boost","type":"Boost","comment":"New boost information"},{"name":"qts","type":"int","comment":"QTS event sequence identifier"}]},{"kind":"class","name":"updateChannelViewForumAsMessages","type":"Update","id":129403168,"comment":"Users may also choose to display messages from all topics as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
\nThis setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of the view_forum_as_messages flag of {@link RawChannelFull} or {@link RawDialog} and emit an {@link RawUpdateChannelViewForumAsMessages}.","arguments":[{"name":"channel_id","type":"int53","comment":"The forum ID"},{"name":"enabled","type":"Bool","comment":"The new value of the toggle."}]},{"kind":"class","name":"updatePeerWallpaper","type":"Update","id":2923368477,"comment":"The wallpaper » of a given peer has changed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"wallpaper_overridden","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the other user has chosen a custom wallpaper for us using {@link messages.RawSetChatWallPaperRequest} and the for_both flag, see here » for more info."},{"name":"peer","type":"Peer","comment":"The peer where the wallpaper has changed."},{"name":"wallpaper","type":"WallPaper","typeModifiers":{"predicate":"flags.0"},"comment":"The new wallpaper, if none the wallpaper was removed and the default wallpaper should be used."}]},{"kind":"class","name":"updateBotMessageReaction","type":"Update","id":2887898062,"comment":"Bots only: a user has changed their reactions on a message with public reactions.","arguments":[{"name":"peer","type":"Peer","comment":"Peer of the reacted-to message."},{"name":"msg_id","type":"int","comment":"ID of the reacted-to message."},{"name":"date","type":"int","comment":"Date of the change."},{"name":"actor","type":"Peer","comment":"The user that (un)reacted to the message."},{"name":"old_reactions","type":"Reaction","typeModifiers":{"isVector":true},"comment":"Old reactions"},{"name":"new_reactions","type":"Reaction","typeModifiers":{"isVector":true},"comment":"New reactions"},{"name":"qts","type":"int","comment":"QTS event sequence identifier"}]},{"kind":"class","name":"updateBotMessageReactions","type":"Update","id":164329305,"comment":"Bots only: the number of reactions on a message with anonymous reactions has changed.","arguments":[{"name":"peer","type":"Peer","comment":"Peer of the reacted-to message."},{"name":"msg_id","type":"int","comment":"ID of the reacted-to message."},{"name":"date","type":"int","comment":"Date of the change."},{"name":"reactions","type":"ReactionCount","typeModifiers":{"isVector":true},"comment":"New reaction counters."},{"name":"qts","type":"int","comment":"QTS event sequence identifier"}]},{"kind":"class","name":"updateSavedDialogPinned","type":"Update","id":2930744948,"comment":"A saved message dialog was pinned/unpinned","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the dialog was pinned"},{"name":"peer","type":"DialogPeer","comment":"The dialog"}]},{"kind":"class","name":"updatePinnedSavedDialogs","type":"Update","id":1751942566,"comment":"Pinned saved dialogs » were updated","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"order","type":"DialogPeer","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"New order of pinned saved dialogs"}]},{"kind":"class","name":"updateSavedReactionTags","type":"Update","id":969307186,"comment":"The list of reaction tag » names assigned by the user has changed and should be refetched using {@link messages.RawGetSavedReactionTagsRequest}.","arguments":[]},{"kind":"class","name":"updateSmsJob","type":"Update","id":4049758676,"comment":"A new SMS job was received","arguments":[{"name":"job_id","type":"string","comment":"SMS job ID"}]},{"kind":"class","name":"updateQuickReplies","type":"Update","id":4182182578,"comment":"Info about or the order of quick reply shortcuts » was changed.","arguments":[{"name":"quick_replies","type":"QuickReply","typeModifiers":{"isVector":true},"comment":"New quick reply shortcut order and information."}]},{"kind":"class","name":"updateNewQuickReply","type":"Update","id":4114458391,"comment":"A new quick reply shortcut » was created.","arguments":[{"name":"quick_reply","type":"QuickReply","comment":"Quick reply shortcut."}]},{"kind":"class","name":"updateDeleteQuickReply","type":"Update","id":1407644140,"comment":"A quick reply shortcut » was deleted. This will not emit {@link RawUpdateDeleteQuickReplyMessages} updates, even if all the messages in the shortcut are also deleted by this update.","arguments":[{"name":"shortcut_id","type":"int","comment":"ID of the quick reply shortcut that was deleted."}]},{"kind":"class","name":"updateQuickReplyMessage","type":"Update","id":1040518415,"comment":"A new message was added to a quick reply shortcut ».","arguments":[{"name":"message","type":"Message","comment":"The message that was added (the {@link RawMessage}.quick_reply_shortcut_id field will contain the shortcut ID)."}]},{"kind":"class","name":"updateDeleteQuickReplyMessages","type":"Update","id":1450174413,"comment":"One or more messages in a quick reply shortcut » were deleted.","arguments":[{"name":"shortcut_id","type":"int","comment":"Quick reply shortcut ID."},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of the deleted messages."}]},{"kind":"class","name":"updateBotBusinessConnect","type":"Update","id":2330315130,"comment":"Connecting or disconnecting a business bot or changing the connection settings will emit an {@link RawUpdateBotBusinessConnect} update to the bot, with the new settings and a connection_id that will be used by the bot to handle updates from and send messages as the user.","arguments":[{"name":"connection","type":"BotBusinessConnection","comment":"Business connection settings"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateBotNewBusinessMessage","type":"Update","id":2648388732,"comment":"A message was received via a connected business chat ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"connection_id","type":"string","comment":"Connection ID."},{"name":"message","type":"Message","comment":"New message."},{"name":"reply_to_message","type":"Message","typeModifiers":{"predicate":"flags.0"},"comment":"The message that message is replying to."},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateBotEditBusinessMessage","type":"Update","id":132077692,"comment":"A message was edited in a connected business chat ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"connection_id","type":"string","comment":"Business connection ID"},{"name":"message","type":"Message","comment":"New message."},{"name":"reply_to_message","type":"Message","typeModifiers":{"predicate":"flags.0"},"comment":"The message that message is replying to."},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateBotDeleteBusinessMessage","type":"Update","id":2687146030,"comment":"A message was deleted in a connected business chat ».","arguments":[{"name":"connection_id","type":"string","comment":"Business connection ID."},{"name":"peer","type":"Peer","comment":"Peer where the messages were deleted."},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of the messages that were deleted."},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updateNewStoryReaction","type":"Update","id":405070859,"comment":"Represents a new reaction to a story.","arguments":[{"name":"story_id","type":"int","comment":"Story ID."},{"name":"peer","type":"Peer","comment":"The peer where the story was posted."},{"name":"reaction","type":"Reaction","comment":"The reaction."}]},{"kind":"class","name":"updateBroadcastRevenueTransactions","type":"Update","id":3755565557,"comment":"A new channel ad revenue transaction was made, see here » for more info.","arguments":[{"name":"peer","type":"Peer","comment":"Channel"},{"name":"balances","type":"BroadcastRevenueBalances","comment":"New ad revenue balance."}]},{"kind":"class","name":"updateStarsBalance","type":"Update","id":263737752,"comment":"The current account's Telegram Stars balance » has changed.","arguments":[{"name":"balance","type":"long","comment":"New balance."}]},{"kind":"class","name":"updateBusinessBotCallbackQuery","type":"Update","id":513998247,"comment":"A callback button sent via a business connection was pressed, and the button data was sent to the bot that created the button.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"user_id","type":"int53","comment":"ID of the user that pressed the button"},{"name":"connection_id","type":"string","comment":"Business connection ID"},{"name":"message","type":"Message","comment":"Message that contains the keyboard (also contains info about the chat where the message was sent)."},{"name":"reply_to_message","type":"Message","typeModifiers":{"predicate":"flags.2"},"comment":"The message that message is replying to."},{"name":"chat_instance","type":"long","comment":"Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games."},{"name":"data","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Callback data"}]},{"kind":"class","name":"updateStarsRevenueStatus","type":"Update","id":2776936473,"comment":"The Telegram Star balance of a channel/bot we own has changed ».","arguments":[{"name":"peer","type":"Peer","comment":"Channel/bot"},{"name":"status","type":"StarsRevenueStatus","comment":"New Telegram Star balance."}]},{"kind":"class","name":"updateBotPurchasedPaidMedia","type":"Update","id":675009298,"comment":"Bots only: a user has purchased a paid media.","arguments":[{"name":"user_id","type":"int53","comment":"The user that bought the media"},{"name":"payload","type":"string"},{"name":"qts","type":"int","comment":"New qts value, see updates » for more info."}]},{"kind":"class","name":"updatePaidReactionPrivacy","type":"Update","id":1372224236,"comment":"Contains the current default paid reaction privacy, see here » for more info.\n\nClients should invoke {@link messages.RawGetPaidReactionPrivacyRequest} on startup to fetch the current default reaction privacy because this update is only sent to currently online sessions and cannot be fetched using getDifference on client startup.","arguments":[{"name":"private","type":"Bool","comment":"Whether paid reaction privacy is enabled or disabled."}]},{"kind":"class","name":"updates.state","type":"updates.State","id":2775329342,"comment":"Updates state.","arguments":[{"name":"pts","type":"int","comment":"Number of events occurred in a text box"},{"name":"qts","type":"int","comment":"Position in a sequence of updates in secret chats. For further details refer to article secret chats"},{"name":"date","type":"int","comment":"Date of condition"},{"name":"seq","type":"int","comment":"Number of sent updates"},{"name":"unread_count","type":"int","comment":"Number of unread messages"}]},{"kind":"class","name":"updates.differenceEmpty","type":"updates.Difference","id":1567990072,"comment":"No events.","arguments":[{"name":"date","type":"int","comment":"Current date"},{"name":"seq","type":"int","comment":"Number of sent updates"}]},{"kind":"class","name":"updates.difference","type":"updates.Difference","id":16030880,"comment":"Full list of occurred events.","arguments":[{"name":"new_messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of new messages"},{"name":"new_encrypted_messages","type":"EncryptedMessage","typeModifiers":{"isVector":true},"comment":"List of new encrypted secret chat messages"},{"name":"other_updates","type":"Update","typeModifiers":{"isVector":true},"comment":"List of updates"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in events"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in events"},{"name":"state","type":"updates.State","comment":"Current state"}]},{"kind":"class","name":"updates.differenceSlice","type":"updates.Difference","id":2835028353,"comment":"Incomplete list of occurred events.","arguments":[{"name":"new_messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of new messages"},{"name":"new_encrypted_messages","type":"EncryptedMessage","typeModifiers":{"isVector":true},"comment":"New messages from the encrypted event sequence"},{"name":"other_updates","type":"Update","typeModifiers":{"isVector":true},"comment":"List of updates"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in events"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in events"},{"name":"intermediate_state","type":"updates.State","comment":"Intermediary state"}]},{"kind":"class","name":"updates.differenceTooLong","type":"updates.Difference","id":1258196845,"comment":"The difference is too long, and the specified state must be used to refetch updates.","arguments":[{"name":"pts","type":"int","comment":"The new state to use."}]},{"kind":"class","name":"updatesTooLong","type":"Updates","id":3809980286,"comment":"Too many updates, it is necessary to execute {@link updates.RawGetDifferenceRequest}.","arguments":[]},{"kind":"class","name":"updateShortMessage","type":"Updates","id":826001400,"comment":"Info about a message sent to (received from) another user","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the message is outgoing"},{"name":"mentioned","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether we were mentioned in the message"},{"name":"media_unread","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether there are some unread mentions in this message"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"If true, the message is a silent message, no notifications should be triggered"},{"name":"id","type":"int","comment":"The message ID"},{"name":"user_id","type":"int53","comment":"The ID of the sender (if outgoing will be the ID of the destination) of the message"},{"name":"message","type":"string","comment":"The message"},{"name":"pts","type":"int","comment":"PTS"},{"name":"pts_count","type":"int","comment":"PTS count"},{"name":"date","type":"int","comment":"date"},{"name":"fwd_from","type":"MessageFwdHeader","typeModifiers":{"predicate":"flags.2"},"comment":"Info about a forwarded message"},{"name":"via_bot_id","type":"int53","typeModifiers":{"predicate":"flags.11"},"comment":"Info about the inline bot used to generate this message"},{"name":"reply_to","type":"MessageReplyHeader","typeModifiers":{"predicate":"flags.3"},"comment":"Reply and thread information"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.7","isVector":true},"comment":"Entities for styled text"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.25"},"comment":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}]},{"kind":"class","name":"updateShortChatMessage","type":"Updates","id":1299050149,"comment":"Shortened constructor containing info on one new incoming text message from a chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the message is outgoing"},{"name":"mentioned","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether we were mentioned in this message"},{"name":"media_unread","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the message contains some unread mentions"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"If true, the message is a silent message, no notifications should be triggered"},{"name":"id","type":"int","comment":"ID of the message"},{"name":"from_id","type":"int53","comment":"ID of the sender of the message"},{"name":"chat_id","type":"int53","comment":"ID of the chat where the message was sent"},{"name":"message","type":"string","comment":"Message"},{"name":"pts","type":"int","comment":"PTS"},{"name":"pts_count","type":"int","comment":"PTS count"},{"name":"date","type":"int","comment":"date"},{"name":"fwd_from","type":"MessageFwdHeader","typeModifiers":{"predicate":"flags.2"},"comment":"Info about a forwarded message"},{"name":"via_bot_id","type":"int53","typeModifiers":{"predicate":"flags.11"},"comment":"Info about the inline bot used to generate this message"},{"name":"reply_to","type":"MessageReplyHeader","typeModifiers":{"predicate":"flags.3"},"comment":"Reply (thread) information"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.7","isVector":true},"comment":"Entities for styled text"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.25"},"comment":"Time To Live of the message, once updateShortChatMessage.date+updateShortChatMessage.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}]},{"kind":"class","name":"updateShort","type":"Updates","id":2027216577,"comment":"Shortened constructor containing info on one update not requiring auxiliary data","arguments":[{"name":"update","type":"Update","comment":"Update"},{"name":"date","type":"int","comment":"Date of event"}]},{"kind":"class","name":"updatesCombined","type":"Updates","id":1918567619,"comment":"Constructor for a group of updates.","arguments":[{"name":"updates","type":"Update","typeModifiers":{"isVector":true},"comment":"List of updates"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in updates"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in updates"},{"name":"date","type":"int","comment":"Current date"},{"name":"seq_start","type":"int","comment":"Value seq for the earliest update in a group"},{"name":"seq","type":"int","comment":"Value seq for the latest update in a group"}]},{"kind":"class","name":"updates","type":"Updates","id":1957577280,"comment":"Full constructor of updates","arguments":[{"name":"updates","type":"Update","typeModifiers":{"isVector":true},"comment":"List of updates"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users mentioned in updates"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"List of chats mentioned in updates"},{"name":"date","type":"int","comment":"Current date"},{"name":"seq","type":"int","comment":"Total number of sent updates"}]},{"kind":"class","name":"updateShortSentMessage","type":"Updates","id":2417352961,"comment":"Shortened constructor containing info on one outgoing message to a contact (the destination chat has to be extracted from the method call that returned this object).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the message is outgoing"},{"name":"id","type":"int","comment":"ID of the sent message"},{"name":"pts","type":"int","comment":"PTS"},{"name":"pts_count","type":"int","comment":"PTS count"},{"name":"date","type":"int","comment":"date"},{"name":"media","type":"MessageMedia","typeModifiers":{"predicate":"flags.9"},"comment":"Attached media"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.7","isVector":true},"comment":"Entities for styled text"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.25"},"comment":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}]},{"kind":"class","name":"photos.photos","type":"photos.Photos","id":2378853029,"comment":"Full list of photos with auxiliary data.","arguments":[{"name":"photos","type":"Photo","typeModifiers":{"isVector":true},"comment":"List of photos"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of mentioned users"}]},{"kind":"class","name":"photos.photosSlice","type":"photos.Photos","id":352657236,"comment":"Incomplete list of photos with auxiliary data.","arguments":[{"name":"count","type":"int","comment":"Total number of photos"},{"name":"photos","type":"Photo","typeModifiers":{"isVector":true},"comment":"List of photos"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of mentioned users"}]},{"kind":"class","name":"photos.photo","type":"photos.Photo","id":539045032,"comment":"Photo with auxiliary data.","arguments":[{"name":"photo","type":"Photo","comment":"Photo"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"upload.file","type":"upload.File","id":157948117,"comment":"File content.","arguments":[{"name":"type","type":"storage.FileType","comment":"File type"},{"name":"mtime","type":"int","comment":"Modification time"},{"name":"bytes","type":"bytes","comment":"Binary data, file content"}]},{"kind":"class","name":"upload.fileCdnRedirect","type":"upload.File","id":4052539972,"comment":"The file must be downloaded from a CDN DC.","arguments":[{"name":"dc_id","type":"int","comment":"CDN DC ID"},{"name":"file_token","type":"bytes","comment":"File token (see CDN files)"},{"name":"encryption_key","type":"bytes","comment":"Encryption key (see CDN files)"},{"name":"encryption_iv","type":"bytes","comment":"Encryption IV (see CDN files)"},{"name":"file_hashes","type":"FileHash","typeModifiers":{"isVector":true},"comment":"File hashes (see CDN files)"}]},{"kind":"class","name":"dcOption","type":"DcOption","id":414687501,"comment":"Data center","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"ipv6","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the specified IP is an IPv6 address"},{"name":"media_only","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this DC should only be used to download or upload files"},{"name":"tcpo_only","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this DC only supports connection with transport obfuscation"},{"name":"cdn","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is a CDN DC."},{"name":"static","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, this IP should be used when connecting through a proxy"},{"name":"this_port_only","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, clients must connect using only the specified port, without trying any other port."},{"name":"id","type":"int","comment":"DC ID"},{"name":"ip_address","type":"string","comment":"IP address of DC"},{"name":"port","type":"int","comment":"Port"},{"name":"secret","type":"bytes","typeModifiers":{"predicate":"flags.10"},"comment":"If the tcpo_only flag is set, specifies the secret to use when connecting using transport obfuscation"}]},{"kind":"class","name":"config","type":"Config","id":3424265246,"comment":"Current configuration","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"default_p2p_contacts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the client should use P2P by default for phone calls with contacts"},{"name":"preload_featured_stickers","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether the client should preload featured stickers"},{"name":"revoke_pm_inbox","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether incoming private messages can be deleted for both participants"},{"name":"blocked_mode","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Indicates that telegram is probably censored by governments/ISPs in the current region"},{"name":"force_try_ipv6","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Whether to forcefully connect using IPv6 dcOptions, even if the client knows that IPv4 is available."},{"name":"date","type":"int","comment":"Current date at the server"},{"name":"expires","type":"int","comment":"Expiration date of this config: when it expires it'll have to be refetched using {@link help.RawGetConfigRequest}"},{"name":"test_mode","type":"Bool","comment":"Whether we're connected to the test DCs"},{"name":"this_dc","type":"int","comment":"ID of the DC that returned the reply"},{"name":"dc_options","type":"DcOption","typeModifiers":{"isVector":true},"comment":"DC IP list"},{"name":"dc_txt_domain_name","type":"string","comment":"Domain name for fetching encrypted DC list from DNS TXT record"},{"name":"chat_size_max","type":"int","comment":"Maximum member count for normal groups"},{"name":"megagroup_size_max","type":"int","comment":"Maximum member count for supergroups"},{"name":"forwarded_count_max","type":"int","comment":"Maximum number of messages that can be forwarded at once using {@link messages.RawForwardMessagesRequest}."},{"name":"online_update_period_ms","type":"int","comment":"The client should {@link account.RawUpdateStatusRequest} every N milliseconds"},{"name":"offline_blur_timeout_ms","type":"int","comment":"Delay before offline status needs to be sent to the server"},{"name":"offline_idle_timeout_ms","type":"int","comment":"Time without any user activity after which it should be treated offline"},{"name":"online_cloud_timeout_ms","type":"int","comment":"If we are offline, but were online from some other client in last online_cloud_timeout_ms milliseconds after we had gone offline, then delay offline notification for notify_cloud_delay_ms milliseconds."},{"name":"notify_cloud_delay_ms","type":"int","comment":"If we are offline, but online from some other client then delay sending the offline notification for notify_cloud_delay_ms milliseconds."},{"name":"notify_default_delay_ms","type":"int","comment":"If some other client is online, then delay notification for notification_default_delay_ms milliseconds"},{"name":"push_chat_period_ms","type":"int","comment":"Not for client use"},{"name":"push_chat_limit","type":"int","comment":"Not for client use"},{"name":"edit_time_limit","type":"int","comment":"Only messages with age smaller than the one specified can be edited"},{"name":"revoke_time_limit","type":"int","comment":"Only channel/supergroup messages with age smaller than the specified can be deleted"},{"name":"revoke_pm_time_limit","type":"int","comment":"Only private messages with age smaller than the specified can be deleted"},{"name":"rating_e_decay","type":"int","comment":"Exponential decay rate for computing top peer rating"},{"name":"stickers_recent_limit","type":"int","comment":"Maximum number of recent stickers"},{"name":"channels_read_media_period","type":"int","comment":"Indicates that round videos (video notes) and voice messages sent in channels and older than the specified period must be marked as read"},{"name":"tmp_sessions","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Temporary passport sessions"},{"name":"call_receive_timeout_ms","type":"int","comment":"Maximum allowed outgoing ring time in VoIP calls: if the user we're calling doesn't reply within the specified time (in milliseconds), we should hang up the call"},{"name":"call_ring_timeout_ms","type":"int","comment":"Maximum allowed incoming ring time in VoIP calls: if the current user doesn't reply within the specified time (in milliseconds), the call will be automatically refused"},{"name":"call_connect_timeout_ms","type":"int","comment":"VoIP connection timeout: if the instance of libtgvoip on the other side of the call doesn't connect to our instance of libtgvoip within the specified time (in milliseconds), the call must be aborted"},{"name":"call_packet_timeout_ms","type":"int","comment":"If during a VoIP call a packet isn't received for the specified period of time, the call must be aborted"},{"name":"me_url_prefix","type":"string","comment":"The domain to use to parse deep links »."},{"name":"autoupdate_url_prefix","type":"string","typeModifiers":{"predicate":"flags.7"},"comment":"URL to use to auto-update the current app"},{"name":"gif_search_username","type":"string","typeModifiers":{"predicate":"flags.9"},"comment":"Username of the bot to use to search for GIFs"},{"name":"venue_search_username","type":"string","typeModifiers":{"predicate":"flags.10"},"comment":"Username of the bot to use to search for venues"},{"name":"img_search_username","type":"string","typeModifiers":{"predicate":"flags.11"},"comment":"Username of the bot to use for image search"},{"name":"static_maps_provider","type":"string","typeModifiers":{"predicate":"flags.12"},"comment":"ID of the map provider to use for venues"},{"name":"caption_length_max","type":"int","comment":"Maximum length of caption (length in utf8 codepoints)"},{"name":"message_length_max","type":"int","comment":"Maximum length of messages (length in utf8 codepoints)"},{"name":"webfile_dc_id","type":"int","comment":"DC ID to use to download webfiles"},{"name":"suggested_lang_code","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Suggested language code"},{"name":"lang_pack_version","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Language pack version"},{"name":"base_lang_pack_version","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Basic language pack version"},{"name":"reactions_default","type":"Reaction","typeModifiers":{"predicate":"flags.15"},"comment":"Default message reaction"},{"name":"autologin_token","type":"string","typeModifiers":{"predicate":"flags.16"},"comment":"Autologin token, click here for more info on URL authorization »."}]},{"kind":"class","name":"nearestDc","type":"NearestDc","id":2384074613,"comment":"Nearest data center, according to geo-ip.","arguments":[{"name":"country","type":"string","comment":"Country code determined by geo-ip"},{"name":"this_dc","type":"int","comment":"Number of current data center"},{"name":"nearest_dc","type":"int","comment":"Number of nearest data center"}]},{"kind":"class","name":"help.appUpdate","type":"help.AppUpdate","id":3434860080,"comment":"An update is available for the application.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_not_skip","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Unskippable, the new info must be shown to the user (with a popup or something else)"},{"name":"id","type":"int","comment":"Update ID"},{"name":"version","type":"string","comment":"New version name"},{"name":"text","type":"string","comment":"Text description of the update"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.1"},"comment":"Application binary"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Application download URL"},{"name":"sticker","type":"Document","typeModifiers":{"predicate":"flags.3"},"comment":"Associated sticker"}]},{"kind":"class","name":"help.noAppUpdate","type":"help.AppUpdate","id":3294258486,"comment":"No updates are available for the application.","arguments":[]},{"kind":"class","name":"help.inviteText","type":"help.InviteText","id":415997816,"comment":"Text of a text message with an invitation to install Telegram.","arguments":[{"name":"message","type":"string","comment":"Text of the message"}]},{"kind":"class","name":"encryptedChatEmpty","type":"EncryptedChat","id":2877210784,"comment":"Empty constructor.","arguments":[{"name":"id","type":"int","comment":"Chat ID"}]},{"kind":"class","name":"encryptedChatWaiting","type":"EncryptedChat","id":1722964307,"comment":"Chat waiting for approval of second participant.","arguments":[{"name":"id","type":"int","comment":"Chat ID"},{"name":"access_hash","type":"long","comment":"Checking sum depending on user ID"},{"name":"date","type":"int","comment":"Date of chat creation"},{"name":"admin_id","type":"int53","comment":"Chat creator ID"},{"name":"participant_id","type":"int53","comment":"ID of second chat participant"}]},{"kind":"class","name":"encryptedChatRequested","type":"EncryptedChat","id":1223809356,"comment":"Request to create an encrypted chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Peer folder ID, for more info click here"},{"name":"id","type":"int","comment":"Chat ID"},{"name":"access_hash","type":"long","comment":"Check sum depending on user ID"},{"name":"date","type":"int","comment":"Chat creation date"},{"name":"admin_id","type":"int53","comment":"Chat creator ID"},{"name":"participant_id","type":"int53","comment":"ID of second chat participant"},{"name":"g_a","type":"bytes","comment":"A = g ^ a mod p, see Wikipedia"}]},{"kind":"class","name":"encryptedChat","type":"EncryptedChat","id":1643173063,"comment":"Encrypted chat","arguments":[{"name":"id","type":"int","comment":"Chat ID"},{"name":"access_hash","type":"long","comment":"Check sum dependent on the user ID"},{"name":"date","type":"int","comment":"Date chat was created"},{"name":"admin_id","type":"int53","comment":"Chat creator ID"},{"name":"participant_id","type":"int53","comment":"ID of the second chat participant"},{"name":"g_a_or_b","type":"bytes","comment":"B = g ^ b mod p, if the currently authorized user is the chat's creator,
or A = g ^ a mod p otherwise
See Wikipedia for more info"},{"name":"key_fingerprint","type":"long","comment":"64-bit fingerprint of received key"}]},{"kind":"class","name":"encryptedChatDiscarded","type":"EncryptedChat","id":505183301,"comment":"Discarded or deleted chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"history_deleted","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether both users of this secret chat should also remove all of its messages"},{"name":"id","type":"int","comment":"Chat ID"}]},{"kind":"class","name":"inputEncryptedChat","type":"InputEncryptedChat","id":4047615457,"comment":"Creates an encrypted chat.","arguments":[{"name":"chat_id","type":"int","comment":"Chat ID"},{"name":"access_hash","type":"long","comment":"Checking sum from constructor {@link RawEncryptedChat}, {@link RawEncryptedChatWaiting} or {@link RawEncryptedChatRequested}"}]},{"kind":"class","name":"encryptedFileEmpty","type":"EncryptedFile","id":3256830334,"comment":"Empty constructor, non-existing file.","arguments":[]},{"kind":"class","name":"encryptedFile","type":"EncryptedFile","id":2818608344,"comment":"Encrypted file.","arguments":[{"name":"id","type":"long","comment":"File ID"},{"name":"access_hash","type":"long","comment":"Checking sum depending on user ID"},{"name":"size","type":"int53","comment":"File size in bytes"},{"name":"dc_id","type":"int","comment":"Number of data center"},{"name":"key_fingerprint","type":"int","comment":"32-bit fingerprint of key used for file encryption"}]},{"kind":"class","name":"inputEncryptedFileEmpty","type":"InputEncryptedFile","id":406307684,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"inputEncryptedFileUploaded","type":"InputEncryptedFile","id":1690108678,"comment":"Sets new encrypted file saved by parts using upload.saveFilePart method.","arguments":[{"name":"id","type":"long","comment":"Random file ID created by client"},{"name":"parts","type":"int","comment":"Number of saved parts"},{"name":"md5_checksum","type":"string","comment":"In case md5-HASH of the (already encrypted) file was transmitted, file content will be checked prior to use"},{"name":"key_fingerprint","type":"int","comment":"32-bit fingerprint of the key used to encrypt a file"}]},{"kind":"class","name":"inputEncryptedFile","type":"InputEncryptedFile","id":1511503333,"comment":"Sets forwarded encrypted file for attachment.","arguments":[{"name":"id","type":"long","comment":"File ID, value of id parameter from {@link RawEncryptedFile}"},{"name":"access_hash","type":"long","comment":"Checking sum, value of access_hash parameter from {@link RawEncryptedFile}"}]},{"kind":"class","name":"inputEncryptedFileBigUploaded","type":"InputEncryptedFile","id":767652808,"comment":"Assigns a new big encrypted file (over 10 MB in size), saved in parts using the method {@link upload.RawSaveBigFilePartRequest}.","arguments":[{"name":"id","type":"long","comment":"Random file id, created by the client"},{"name":"parts","type":"int","comment":"Number of saved parts"},{"name":"key_fingerprint","type":"int","comment":"32-bit imprint of the key used to encrypt the file"}]},{"kind":"class","name":"encryptedMessage","type":"EncryptedMessage","id":3977822488,"comment":"Encrypted message.","arguments":[{"name":"random_id","type":"long","comment":"Random message ID, assigned by the author of message"},{"name":"chat_id","type":"int","comment":"ID of encrypted chat"},{"name":"date","type":"int","comment":"Date of sending"},{"name":"bytes","type":"bytes","comment":"TL-serialization of DecryptedMessage type, encrypted with the key created at chat initialization"},{"name":"file","type":"EncryptedFile","comment":"Attached encrypted file"}]},{"kind":"class","name":"encryptedMessageService","type":"EncryptedMessage","id":594758406,"comment":"Encrypted service message","arguments":[{"name":"random_id","type":"long","comment":"Random message ID, assigned by the author of message"},{"name":"chat_id","type":"int","comment":"ID of encrypted chat"},{"name":"date","type":"int","comment":"Date of sending"},{"name":"bytes","type":"bytes","comment":"TL-serialization of the DecryptedMessage type, encrypted with the key created at chat initialization"}]},{"kind":"class","name":"messages.dhConfigNotModified","type":"messages.DhConfig","id":3236054581,"comment":"Configuring parameters did not change.","arguments":[{"name":"random","type":"bytes","comment":"Random sequence of bytes of assigned length"}]},{"kind":"class","name":"messages.dhConfig","type":"messages.DhConfig","id":740433629,"comment":"New set of configuring parameters.","arguments":[{"name":"g","type":"int","comment":"New value prime, see Wikipedia"},{"name":"p","type":"bytes","comment":"New value primitive root, see Wikipedia"},{"name":"version","type":"int","comment":"Version of set of parameters"},{"name":"random","type":"bytes","comment":"Random sequence of bytes of assigned length"}]},{"kind":"class","name":"messages.sentEncryptedMessage","type":"messages.SentEncryptedMessage","id":1443858741,"comment":"Message without file attachments sent to an encrypted file.","arguments":[{"name":"date","type":"int","comment":"Date of sending"}]},{"kind":"class","name":"messages.sentEncryptedFile","type":"messages.SentEncryptedMessage","id":2492727090,"comment":"Message with a file enclosure sent to a protected chat","arguments":[{"name":"date","type":"int","comment":"Sending date"},{"name":"file","type":"EncryptedFile","comment":"Attached file"}]},{"kind":"class","name":"inputDocumentEmpty","type":"InputDocument","id":1928391342,"comment":"Empty constructor.","arguments":[]},{"kind":"class","name":"inputDocument","type":"InputDocument","id":448771445,"comment":"Defines a document for subsequent interaction.","arguments":[{"name":"id","type":"long","comment":"Document ID"},{"name":"access_hash","type":"long","comment":"access_hash parameter from the {@link RawDocument} constructor"},{"name":"file_reference","type":"bytes","comment":"File reference"}]},{"kind":"class","name":"documentEmpty","type":"Document","id":922273905,"comment":"Empty constructor, document doesn't exist.","arguments":[{"name":"id","type":"long","comment":"Document ID or 0"}]},{"kind":"class","name":"document","type":"Document","id":2413085912,"comment":"Document","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"long","comment":"Document ID"},{"name":"access_hash","type":"long","comment":"Check sum, dependent on document ID"},{"name":"file_reference","type":"bytes","comment":"File reference"},{"name":"date","type":"int","comment":"Creation date"},{"name":"mime_type","type":"string","comment":"MIME type"},{"name":"size","type":"int53","comment":"Size"},{"name":"thumbs","type":"PhotoSize","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Thumbnails"},{"name":"video_thumbs","type":"VideoSize","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Video thumbnails"},{"name":"dc_id","type":"int","comment":"DC ID"},{"name":"attributes","type":"DocumentAttribute","typeModifiers":{"isVector":true},"comment":"Attributes"}]},{"kind":"class","name":"help.support","type":"help.Support","id":398898678,"comment":"Info on support user.","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"user","type":"User","comment":"User"}]},{"kind":"class","name":"notifyPeer","type":"NotifyPeer","id":2681474008,"comment":"Notifications generated by a certain user or group.","arguments":[{"name":"peer","type":"Peer","comment":"user or group"}]},{"kind":"class","name":"notifyUsers","type":"NotifyPeer","id":3033021260,"comment":"Notifications generated by all users.","arguments":[]},{"kind":"class","name":"notifyChats","type":"NotifyPeer","id":3221737155,"comment":"Notifications generated by all groups.","arguments":[]},{"kind":"class","name":"notifyBroadcasts","type":"NotifyPeer","id":3591563503,"comment":"Channel notification settings","arguments":[]},{"kind":"class","name":"notifyForumTopic","type":"NotifyPeer","id":577659656,"comment":"Notifications generated by a topic in a forum.","arguments":[{"name":"peer","type":"Peer","comment":"Forum ID"},{"name":"top_msg_id","type":"int","comment":"Topic ID"}]},{"kind":"class","name":"sendMessageTypingAction","type":"SendMessageAction","id":381645902,"comment":"User is typing.","arguments":[]},{"kind":"class","name":"sendMessageCancelAction","type":"SendMessageAction","id":4250847477,"comment":"Invalidate all previous action updates. E.g. when user deletes entered text or aborts a video upload.","arguments":[]},{"kind":"class","name":"sendMessageRecordVideoAction","type":"SendMessageAction","id":2710034031,"comment":"User is recording a video.","arguments":[]},{"kind":"class","name":"sendMessageUploadVideoAction","type":"SendMessageAction","id":3916839660,"comment":"User is uploading a video.","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"sendMessageRecordAudioAction","type":"SendMessageAction","id":3576656887,"comment":"User is recording a voice message.","arguments":[]},{"kind":"class","name":"sendMessageUploadAudioAction","type":"SendMessageAction","id":4082227115,"comment":"User is uploading a voice message.","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"sendMessageUploadPhotoAction","type":"SendMessageAction","id":3520285222,"comment":"User is uploading a photo.","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"sendMessageUploadDocumentAction","type":"SendMessageAction","id":2852968932,"comment":"User is uploading a file.","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"sendMessageGeoLocationAction","type":"SendMessageAction","id":393186209,"comment":"User is selecting a location to share.","arguments":[]},{"kind":"class","name":"sendMessageChooseContactAction","type":"SendMessageAction","id":1653390447,"comment":"User is selecting a contact to share.","arguments":[]},{"kind":"class","name":"sendMessageGamePlayAction","type":"SendMessageAction","id":3714748232,"comment":"User is playing a game","arguments":[]},{"kind":"class","name":"sendMessageRecordRoundAction","type":"SendMessageAction","id":2297593788,"comment":"User is recording a round video to share","arguments":[]},{"kind":"class","name":"sendMessageUploadRoundAction","type":"SendMessageAction","id":608050278,"comment":"User is uploading a round video","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"speakingInGroupCallAction","type":"SendMessageAction","id":3643548293,"comment":"User is currently speaking in the group call","arguments":[]},{"kind":"class","name":"sendMessageHistoryImportAction","type":"SendMessageAction","id":3688534598,"comment":"Chat history is being imported","arguments":[{"name":"progress","type":"int","comment":"Progress percentage"}]},{"kind":"class","name":"sendMessageChooseStickerAction","type":"SendMessageAction","id":2958739121,"comment":"User is choosing a sticker","arguments":[]},{"kind":"class","name":"sendMessageEmojiInteraction","type":"SendMessageAction","id":630664139,"comment":"User has clicked on an animated emoji triggering a reaction, click here for more info ».","arguments":[{"name":"emoticon","type":"string","comment":"Emoji"},{"name":"msg_id","type":"int","comment":"Message ID of the animated emoji that was clicked"},{"name":"interaction","type":"DataJSON","comment":"A JSON object with interaction info, click here for more info »"}]},{"kind":"class","name":"sendMessageEmojiInteractionSeen","type":"SendMessageAction","id":3060109358,"comment":"User is watching an animated emoji reaction triggered by another user, click here for more info ».","arguments":[{"name":"emoticon","type":"string","comment":"Emoji"}]},{"kind":"class","name":"contacts.found","type":"contacts.Found","id":3004386717,"comment":"Users found by name substring and auxiliary data.","arguments":[{"name":"my_results","type":"Peer","typeModifiers":{"isVector":true},"comment":"Personalized results"},{"name":"results","type":"Peer","typeModifiers":{"isVector":true},"comment":"List of found user identifiers"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Found chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"List of users"}]},{"kind":"class","name":"inputPrivacyKeyStatusTimestamp","type":"InputPrivacyKey","id":1335282456,"comment":"Whether people will be able to see our exact last online timestamp.\n\nNote that if we decide to hide our exact last online timestamp to someone (i.e., users A, B, C, or all users) and we do not have a Premium subscription, we won't be able to see the exact last online timestamp of those users (A, B, C, or all users), even if those users do share it with us.\n\nIf those users do share their exact online status with us, but we can't see it due to the reason mentioned above, the by_me flag of {@link RawUserStatusRecently}, {@link RawUserStatusLastWeek}, {@link RawUserStatusLastMonth} will be set.","arguments":[]},{"kind":"class","name":"inputPrivacyKeyChatInvite","type":"InputPrivacyKey","id":3187344422,"comment":"Whether people will be able to invite you to chats","arguments":[]},{"kind":"class","name":"inputPrivacyKeyPhoneCall","type":"InputPrivacyKey","id":4206550111,"comment":"Whether you will accept phone calls","arguments":[]},{"kind":"class","name":"inputPrivacyKeyPhoneP2P","type":"InputPrivacyKey","id":3684593874,"comment":"Whether to allow P2P communication during VoIP calls","arguments":[]},{"kind":"class","name":"inputPrivacyKeyForwards","type":"InputPrivacyKey","id":2765966344,"comment":"Whether messages forwarded from you will be anonymous","arguments":[]},{"kind":"class","name":"inputPrivacyKeyProfilePhoto","type":"InputPrivacyKey","id":1461304012,"comment":"Whether people will be able to see your profile picture","arguments":[]},{"kind":"class","name":"inputPrivacyKeyPhoneNumber","type":"InputPrivacyKey","id":55761658,"comment":"Whether people will be able to see your phone number","arguments":[]},{"kind":"class","name":"inputPrivacyKeyAddedByPhone","type":"InputPrivacyKey","id":3508640733,"comment":"Whether people can add you to their contact list by your phone number","arguments":[]},{"kind":"class","name":"inputPrivacyKeyVoiceMessages","type":"InputPrivacyKey","id":2934349160,"comment":"Whether people can send you voice messages or round videos (Premium users only).","arguments":[]},{"kind":"class","name":"inputPrivacyKeyAbout","type":"InputPrivacyKey","id":941870144,"comment":"Whether people can see your bio","arguments":[]},{"kind":"class","name":"inputPrivacyKeyBirthday","type":"InputPrivacyKey","id":3596227020,"comment":"Whether the user can see our birthday.","arguments":[]},{"kind":"class","name":"inputPrivacyKeyStarGiftsAutoSave","type":"InputPrivacyKey","id":3782419265,"arguments":[]},{"kind":"class","name":"privacyKeyStatusTimestamp","type":"PrivacyKey","id":3157175088,"comment":"Whether we can see the last online timestamp of this user.\n\nNote that if we decide to hide our exact last online timestamp to someone (i.e., users A, B, C, or all users) and we do not have a Premium subscription, we won't be able to see the exact last online timestamp of those users (A, B, C, or all users), even if those users do share it with us.\n\nIf those users do share their exact online status with us, but we can't see it due to the reason mentioned above, the by_me flag of {@link RawUserStatusRecently}, {@link RawUserStatusLastWeek}, {@link RawUserStatusLastMonth} will be set.","arguments":[]},{"kind":"class","name":"privacyKeyChatInvite","type":"PrivacyKey","id":1343122938,"comment":"Whether the user can be invited to chats","arguments":[]},{"kind":"class","name":"privacyKeyPhoneCall","type":"PrivacyKey","id":1030105979,"comment":"Whether the user accepts phone calls","arguments":[]},{"kind":"class","name":"privacyKeyPhoneP2P","type":"PrivacyKey","id":961092808,"comment":"Whether P2P connections in phone calls with this user are allowed","arguments":[]},{"kind":"class","name":"privacyKeyForwards","type":"PrivacyKey","id":1777096355,"comment":"Whether messages forwarded from the user will be anonymously forwarded","arguments":[]},{"kind":"class","name":"privacyKeyProfilePhoto","type":"PrivacyKey","id":2517966829,"comment":"Whether the profile picture of the user is visible","arguments":[]},{"kind":"class","name":"privacyKeyPhoneNumber","type":"PrivacyKey","id":3516589165,"comment":"Whether the user allows us to see their phone number","arguments":[]},{"kind":"class","name":"privacyKeyAddedByPhone","type":"PrivacyKey","id":1124062251,"comment":"Whether this user can be added to our contact list by their phone number","arguments":[]},{"kind":"class","name":"privacyKeyVoiceMessages","type":"PrivacyKey","id":110621716,"comment":"Whether the user accepts voice messages","arguments":[]},{"kind":"class","name":"privacyKeyAbout","type":"PrivacyKey","id":2760292193,"comment":"Whether people can see your bio","arguments":[]},{"kind":"class","name":"privacyKeyBirthday","type":"PrivacyKey","id":536913176,"comment":"Whether the user can see our birthday.","arguments":[]},{"kind":"class","name":"privacyKeyStarGiftsAutoSave","type":"PrivacyKey","id":749010424,"arguments":[]},{"kind":"class","name":"inputPrivacyValueAllowContacts","type":"InputPrivacyRule","id":218751099,"comment":"Allow only contacts","arguments":[]},{"kind":"class","name":"inputPrivacyValueAllowAll","type":"InputPrivacyRule","id":407582158,"comment":"Allow all users","arguments":[]},{"kind":"class","name":"inputPrivacyValueAllowUsers","type":"InputPrivacyRule","id":320652927,"comment":"Allow only certain users","arguments":[{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"Allowed users"}]},{"kind":"class","name":"inputPrivacyValueDisallowContacts","type":"InputPrivacyRule","id":195371015,"comment":"Disallow only contacts","arguments":[]},{"kind":"class","name":"inputPrivacyValueDisallowAll","type":"InputPrivacyRule","id":3597362889,"comment":"Disallow all","arguments":[]},{"kind":"class","name":"inputPrivacyValueDisallowUsers","type":"InputPrivacyRule","id":2417034343,"comment":"Disallow only certain users","arguments":[{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"Users to disallow"}]},{"kind":"class","name":"inputPrivacyValueAllowChatParticipants","type":"InputPrivacyRule","id":2215004623,"comment":"Allow only participants of certain chats","arguments":[{"name":"chats","type":"int53","typeModifiers":{"isVector":true},"comment":"Allowed chat IDs"}]},{"kind":"class","name":"inputPrivacyValueDisallowChatParticipants","type":"InputPrivacyRule","id":3914272646,"comment":"Disallow only participants of certain chats","arguments":[{"name":"chats","type":"int53","typeModifiers":{"isVector":true},"comment":"Disallowed chat IDs"}]},{"kind":"class","name":"inputPrivacyValueAllowCloseFriends","type":"InputPrivacyRule","id":793067081,"comment":"Allow only close friends »","arguments":[]},{"kind":"class","name":"inputPrivacyValueAllowPremium","type":"InputPrivacyRule","id":2009975281,"comment":"Allow only users with a Premium subscription », currently only usable for {@link RawInputPrivacyKeyChatInvite}.","arguments":[]},{"kind":"class","name":"inputPrivacyValueAllowBots","type":"InputPrivacyRule","id":1515179237,"arguments":[]},{"kind":"class","name":"inputPrivacyValueDisallowBots","type":"InputPrivacyRule","id":3303373077,"arguments":[]},{"kind":"class","name":"privacyValueAllowContacts","type":"PrivacyRule","id":4294843308,"comment":"Allow all contacts","arguments":[]},{"kind":"class","name":"privacyValueAllowAll","type":"PrivacyRule","id":1698855810,"comment":"Allow all users","arguments":[]},{"kind":"class","name":"privacyValueAllowUsers","type":"PrivacyRule","id":3096469426,"comment":"Allow only certain users","arguments":[{"name":"users","type":"int53","typeModifiers":{"isVector":true},"comment":"Allowed users"}]},{"kind":"class","name":"privacyValueDisallowContacts","type":"PrivacyRule","id":4169726490,"comment":"Disallow only contacts","arguments":[]},{"kind":"class","name":"privacyValueDisallowAll","type":"PrivacyRule","id":2339628899,"comment":"Disallow all users","arguments":[]},{"kind":"class","name":"privacyValueDisallowUsers","type":"PrivacyRule","id":3831632193,"comment":"Disallow only certain users","arguments":[{"name":"users","type":"int53","typeModifiers":{"isVector":true},"comment":"Disallowed users"}]},{"kind":"class","name":"privacyValueAllowChatParticipants","type":"PrivacyRule","id":1796427406,"comment":"Allow all participants of certain chats","arguments":[{"name":"chats","type":"int53","typeModifiers":{"isVector":true},"comment":"Allowed chats"}]},{"kind":"class","name":"privacyValueDisallowChatParticipants","type":"PrivacyRule","id":1103656293,"comment":"Disallow only participants of certain chats","arguments":[{"name":"chats","type":"int53","typeModifiers":{"isVector":true},"comment":"Disallowed chats"}]},{"kind":"class","name":"privacyValueAllowCloseFriends","type":"PrivacyRule","id":4159232155,"comment":"Allow only close friends »","arguments":[]},{"kind":"class","name":"privacyValueAllowPremium","type":"PrivacyRule","id":3974725963,"comment":"Allow only users with a Premium subscription », currently only usable for {@link RawInputPrivacyKeyChatInvite}.","arguments":[]},{"kind":"class","name":"privacyValueAllowBots","type":"PrivacyRule","id":558242653,"arguments":[]},{"kind":"class","name":"privacyValueDisallowBots","type":"PrivacyRule","id":4138072111,"arguments":[]},{"kind":"class","name":"account.privacyRules","type":"account.PrivacyRules","id":1352683077,"comment":"Privacy rules","arguments":[{"name":"rules","type":"PrivacyRule","typeModifiers":{"isVector":true},"comment":"Privacy rules"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats to which the rules apply"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users to which the rules apply"}]},{"kind":"class","name":"accountDaysTTL","type":"AccountDaysTTL","id":3100684255,"comment":"Time to live in days of the current account","arguments":[{"name":"days","type":"int","comment":"This account will self-destruct in the specified number of days"}]},{"kind":"class","name":"documentAttributeImageSize","type":"DocumentAttribute","id":1815593308,"comment":"Defines the width and height of an image uploaded as document","arguments":[{"name":"w","type":"int","comment":"Width of image"},{"name":"h","type":"int","comment":"Height of image"}]},{"kind":"class","name":"documentAttributeAnimated","type":"DocumentAttribute","id":297109817,"comment":"Defines an animated GIF","arguments":[]},{"kind":"class","name":"documentAttributeSticker","type":"DocumentAttribute","id":1662637586,"comment":"Defines a sticker","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"mask","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is a mask sticker"},{"name":"alt","type":"string","comment":"Alternative emoji representation of sticker"},{"name":"stickerset","type":"InputStickerSet","comment":"Associated stickerset"},{"name":"mask_coords","type":"MaskCoords","typeModifiers":{"predicate":"flags.0"},"comment":"Mask coordinates (if this is a mask sticker, attached to a photo)"}]},{"kind":"class","name":"documentAttributeVideo","id":1137015880,"type":"DocumentAttribute","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"round_message","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a round video"},{"name":"supports_streaming","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the video supports streaming"},{"name":"nosound","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the specified document is a video file with no audio tracks (a GIF animation (even as MPEG4), for example)"},{"name":"duration","type":"double","comment":"Duration in seconds"},{"name":"w","type":"int","comment":"Video width"},{"name":"h","type":"int","comment":"Video height"},{"name":"preload_prefix_size","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Number of bytes to preload when preloading videos (particularly video stories)."},{"name":"video_start_ts","type":"double","typeModifiers":{"predicate":"flags.4"},"comment":"Floating point UNIX timestamp in seconds, indicating the frame of the video that should be used as static preview and thumbnail."},{"name":"video_codec","type":"string","typeModifiers":{"predicate":"flags.5"}}],"comment":"Defines a video"},{"kind":"class","name":"documentAttributeAudio","type":"DocumentAttribute","id":2555574726,"comment":"Represents an audio file","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"voice","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Whether this is a voice message"},{"name":"duration","type":"int","comment":"Duration in seconds"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Name of song"},{"name":"performer","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Performer"},{"name":"waveform","type":"bytes","typeModifiers":{"predicate":"flags.2"},"comment":"Waveform: consists in a series of bitpacked 5-bit values.
Example implementation: android."}]},{"kind":"class","name":"documentAttributeFilename","type":"DocumentAttribute","id":358154344,"comment":"A simple document with a file name","arguments":[{"name":"file_name","type":"string","comment":"The file name"}]},{"kind":"class","name":"documentAttributeHasStickers","type":"DocumentAttribute","id":2550256375,"comment":"Whether the current document has stickers attached","arguments":[]},{"kind":"class","name":"documentAttributeCustomEmoji","type":"DocumentAttribute","id":4245985433,"comment":"Info about a custom emoji","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"free","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this custom emoji can be sent by non-Premium users"},{"name":"text_color","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the color of this TGS custom emoji should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context."},{"name":"alt","type":"string","comment":"The actual emoji"},{"name":"stickerset","type":"InputStickerSet","comment":"The emoji stickerset to which this emoji belongs."}]},{"kind":"class","name":"messages.stickersNotModified","type":"messages.Stickers","id":4050950690,"comment":"No new stickers were found for the given query","arguments":[]},{"kind":"class","name":"messages.stickers","type":"messages.Stickers","id":816245886,"comment":"Found stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"stickers","type":"Document","typeModifiers":{"isVector":true},"comment":"Stickers"}]},{"kind":"class","name":"stickerPack","type":"StickerPack","id":313694676,"comment":"A stickerpack is a group of stickers associated to the same emoji.
\nIt is not a sticker pack the way it is usually intended, you may be looking for a StickerSet.","arguments":[{"name":"emoticon","type":"string","comment":"Emoji"},{"name":"documents","type":"long","typeModifiers":{"isVector":true},"comment":"Stickers"}]},{"kind":"class","name":"messages.allStickersNotModified","type":"messages.AllStickers","id":3898999491,"comment":"Info about all installed stickers hasn't changed","arguments":[]},{"kind":"class","name":"messages.allStickers","type":"messages.AllStickers","id":3451637435,"comment":"Info about all installed stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"sets","type":"StickerSet","typeModifiers":{"isVector":true},"comment":"All stickersets"}]},{"kind":"class","name":"messages.affectedMessages","type":"messages.AffectedMessages","id":2228326789,"comment":"Events affected by operation","arguments":[{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"}]},{"kind":"class","name":"webPageEmpty","type":"WebPage","id":555358088,"comment":"No preview is available for the webpage","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"long","comment":"Preview ID"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"URL of the webpage."}]},{"kind":"class","name":"webPagePending","type":"WebPage","id":2966502983,"comment":"A preview of the webpage is currently being generated","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"long","comment":"ID of preview"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"URL of the webpage"},{"name":"date","type":"int","comment":"When was the processing started"}]},{"kind":"class","name":"webPage","type":"WebPage","id":3902555570,"comment":"Webpage preview","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_large_media","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether the size of the media in the preview can be changed."},{"name":"id","type":"long","comment":"Preview ID"},{"name":"url","type":"string","comment":"URL of previewed webpage"},{"name":"display_url","type":"string","comment":"Webpage URL to be displayed to the user"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"type","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Type of the web page. Can be: article, photo, audio, video, document, profile, app, or something else, see here » for a full list."},{"name":"site_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Short name of the site (e.g., Google Docs, App Store)"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Title of the content"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Content description"},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.4"},"comment":"Image representing the content"},{"name":"embed_url","type":"string","typeModifiers":{"predicate":"flags.5"},"comment":"URL to show in the embedded preview"},{"name":"embed_type","type":"string","typeModifiers":{"predicate":"flags.5"},"comment":"MIME type of the embedded preview, (e.g., text/html or video/mp4)"},{"name":"embed_width","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Width of the embedded preview"},{"name":"embed_height","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Height of the embedded preview"},{"name":"duration","type":"int","typeModifiers":{"predicate":"flags.7"},"comment":"Duration of the content, in seconds"},{"name":"author","type":"string","typeModifiers":{"predicate":"flags.8"},"comment":"Author of the content"},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.9"},"comment":"Preview of the content as a media file"},{"name":"cached_page","type":"Page","typeModifiers":{"predicate":"flags.10"},"comment":"Page contents in instant view format"},{"name":"attributes","type":"WebPageAttribute","typeModifiers":{"predicate":"flags.12","isVector":true},"comment":"Webpage attributes"}]},{"kind":"class","name":"webPageNotModified","type":"WebPage","id":1930545681,"comment":"The preview of the webpage hasn't changed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"cached_page_views","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Page view count"}]},{"kind":"class","name":"authorization","type":"Authorization","id":2902578717,"comment":"Logged-in session","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"current","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is the current session"},{"name":"official_app","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the session is from an official app"},{"name":"password_pending","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the session is still waiting for a 2FA password"},{"name":"encrypted_requests_disabled","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this session will accept encrypted chats"},{"name":"call_requests_disabled","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether this session will accept phone calls"},{"name":"unconfirmed","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the session is unconfirmed, see here » for more info."},{"name":"hash","type":"long","comment":"Identifier"},{"name":"device_model","type":"string","comment":"Device model"},{"name":"platform","type":"string","comment":"Platform"},{"name":"system_version","type":"string","comment":"System version"},{"name":"api_id","type":"int","comment":"API ID"},{"name":"app_name","type":"string","comment":"App name"},{"name":"app_version","type":"string","comment":"App version"},{"name":"date_created","type":"int","comment":"When was the session created"},{"name":"date_active","type":"int","comment":"When was the session last active"},{"name":"ip","type":"string","comment":"Last known IP"},{"name":"country","type":"string","comment":"Country determined from IP"},{"name":"region","type":"string","comment":"Region determined from IP"}]},{"kind":"class","name":"account.authorizations","type":"account.Authorizations","id":1275039392,"comment":"Logged-in sessions","arguments":[{"name":"authorization_ttl_days","type":"int","comment":"Time-to-live of session"},{"name":"authorizations","type":"Authorization","typeModifiers":{"isVector":true},"comment":"Logged-in sessions"}]},{"kind":"class","name":"account.password","type":"account.Password","id":2507886843,"comment":"Configuration for two-factor authorization","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_recovery","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user has a recovery method configured"},{"name":"has_secure_values","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether telegram passport is enabled"},{"name":"has_password","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the user has a password"},{"name":"current_algo","type":"PasswordKdfAlgo","typeModifiers":{"predicate":"flags.2"},"comment":"The KDF algorithm for SRP two-factor authentication of the current password"},{"name":"srp_B","type":"bytes","typeModifiers":{"predicate":"flags.2"},"comment":"Srp B param for SRP authorization"},{"name":"srp_id","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"Srp ID param for SRP authorization"},{"name":"hint","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Text hint for the password"},{"name":"email_unconfirmed_pattern","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"A password recovery email with the specified pattern is still awaiting verification"},{"name":"new_algo","type":"PasswordKdfAlgo","comment":"The KDF algorithm for SRP two-factor authentication to use when creating new passwords"},{"name":"new_secure_algo","type":"SecurePasswordKdfAlgo","comment":"The KDF algorithm for telegram passport"},{"name":"secure_random","type":"bytes","comment":"Secure random string"},{"name":"pending_reset_date","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"The 2FA password will be automatically removed at this date, unless the user cancels the operation"},{"name":"login_email_pattern","type":"string","typeModifiers":{"predicate":"flags.6"},"comment":"A verified login email with the specified pattern is configured"}]},{"kind":"class","name":"account.passwordSettings","type":"account.PasswordSettings","id":2589733861,"comment":"Private info associated to the password info (recovery email, telegram passport info & so on)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"email","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"2FA Recovery email"},{"name":"secure_settings","type":"SecureSecretSettings","typeModifiers":{"predicate":"flags.1"},"comment":"Telegram passport settings"}]},{"kind":"class","name":"account.passwordInputSettings","type":"account.PasswordInputSettings","id":3258394569,"comment":"Settings for setting up a new password","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"new_algo","type":"PasswordKdfAlgo","typeModifiers":{"predicate":"flags.0"},"comment":"The SRP algorithm to use"},{"name":"new_password_hash","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"The computed password hash"},{"name":"hint","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Text hint for the password"},{"name":"email","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Password recovery email"},{"name":"new_secure_settings","type":"SecureSecretSettings","typeModifiers":{"predicate":"flags.2"},"comment":"Telegram passport settings"}]},{"kind":"class","name":"auth.passwordRecovery","type":"auth.PasswordRecovery","id":326715557,"comment":"Recovery info of a 2FA password, only for accounts with a recovery email configured.","arguments":[{"name":"email_pattern","type":"string","comment":"The email to which the recovery code was sent must match this pattern."}]},{"kind":"class","name":"receivedNotifyMessage","type":"ReceivedNotifyMessage","id":2743383929,"comment":"Message ID, for which PUSH-notifications were cancelled.","arguments":[{"name":"id","type":"int","comment":"Message ID, for which PUSH-notifications were canceled"},{"name":"flags","type":"int","comment":"Reserved for future use"}]},{"kind":"class","name":"chatInviteExported","id":2720841110,"type":"ExportedChatInvite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this chat invite was revoked"},{"name":"permanent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this chat invite has no expiration"},{"name":"request_needed","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether users importing this invite link will have to be approved to join the channel or group"},{"name":"link","type":"string","comment":"Chat invitation link"},{"name":"admin_id","type":"int53","comment":"ID of the admin that created this chat invite"},{"name":"date","type":"int","comment":"When was this chat invite created"},{"name":"start_date","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"When was this chat invite last modified"},{"name":"expire_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"When does this chat invite expire"},{"name":"usage_limit","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Maximum number of users that can join using this link"},{"name":"usage","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"How many users joined using this link"},{"name":"requested","type":"int","typeModifiers":{"predicate":"flags.7"},"comment":"Number of users that have already used this link to join"},{"name":"subscription_expired","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"For Telegram Star subscriptions », contains the number of chat members which have already joined the chat using the link, but have already left due to expiration of their subscription."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.8"},"comment":"Custom description for the invite link, visible only to admins"},{"name":"subscription_pricing","type":"StarsSubscriptionPricing","typeModifiers":{"predicate":"flags.9"},"comment":"For Telegram Star subscriptions », contains the pricing of the subscription the user must activate to join the private channel."}],"comment":"Exported chat invite"},{"kind":"class","name":"chatInvitePublicJoinRequests","type":"ExportedChatInvite","id":3977280183,"comment":"Used in updates and in the channel log to indicate when a user is requesting to join or has joined a discussion group","arguments":[]},{"kind":"class","name":"chatInviteAlready","type":"ChatInvite","id":1516793212,"comment":"The user has already joined this chat","arguments":[{"name":"chat","type":"Chat","comment":"The chat connected to the invite"}]},{"kind":"class","name":"chatInvite","id":4268046493,"type":"ChatInvite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a channel/supergroup or a normal group"},{"name":"broadcast","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is a channel"},{"name":"public","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this is a public channel/supergroup"},{"name":"megagroup","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is a supergroup"},{"name":"request_needed","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether the join request » must be first approved by an administrator"},{"name":"verified","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Is this chat or channel verified by Telegram?"},{"name":"scam","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"This chat is probably a scam"},{"name":"fake","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"If set, this chat was reported by many users as a fake or scam: be careful when interacting with it."},{"name":"can_refulfill_subscription","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"If set, indicates that the user has already paid for the associated Telegram Star subscriptions » and it hasn't expired yet, so they may re-join the channel using {@link messages.RawImportChatInviteRequest} without repeating the payment."},{"name":"title","type":"string","comment":"Chat/supergroup/channel title"},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.5"},"comment":"Description of the group of channel"},{"name":"photo","type":"Photo","comment":"Chat/supergroup/channel photo"},{"name":"participants_count","type":"int","comment":"Participant count"},{"name":"participants","type":"User","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"A few of the participants that are in the group"},{"name":"color","type":"int","comment":"Profile color palette ID"},{"name":"subscription_pricing","type":"StarsSubscriptionPricing","typeModifiers":{"predicate":"flags.10"},"comment":"For Telegram Star subscriptions », contains the pricing of the subscription the user must activate to join the private channel."},{"name":"subscription_form_id","type":"long","typeModifiers":{"predicate":"flags.12"},"comment":"For Telegram Star subscriptions », the ID of the payment form for the subscription."}],"comment":"Chat invite info"},{"kind":"class","name":"chatInvitePeek","type":"ChatInvite","id":1634294960,"comment":"A chat invitation that also allows peeking into the group to read messages without joining it.","arguments":[{"name":"chat","type":"Chat","comment":"Chat information"},{"name":"expires","type":"int","comment":"Read-only anonymous access to this group will be revoked at this date"}]},{"kind":"class","name":"inputStickerSetEmpty","type":"InputStickerSet","id":4290128789,"comment":"Empty constructor","arguments":[]},{"kind":"class","name":"inputStickerSetID","type":"InputStickerSet","id":2649203305,"comment":"Stickerset by ID","arguments":[{"name":"id","type":"long","comment":"ID"},{"name":"access_hash","type":"long","comment":"Access hash"}]},{"kind":"class","name":"inputStickerSetShortName","type":"InputStickerSet","id":2250033312,"comment":"Stickerset by short name, from a stickerset deep link »","arguments":[{"name":"short_name","type":"string","comment":"Short name from a stickerset deep link »"}]},{"kind":"class","name":"inputStickerSetAnimatedEmoji","type":"InputStickerSet","id":42402760,"comment":"Animated emojis stickerset","arguments":[]},{"kind":"class","name":"inputStickerSetDice","type":"InputStickerSet","id":3867103758,"comment":"Used for fetching animated dice stickers","arguments":[{"name":"emoticon","type":"string","comment":"The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported"}]},{"kind":"class","name":"inputStickerSetAnimatedEmojiAnimations","type":"InputStickerSet","id":215889721,"comment":"Animated emoji reaction stickerset (contains animations to play when a user clicks on a given animated emoji)","arguments":[]},{"kind":"class","name":"inputStickerSetPremiumGifts","type":"InputStickerSet","id":3364567810,"comment":"Stickers to show when receiving a gifted Telegram Premium subscription","arguments":[]},{"kind":"class","name":"inputStickerSetEmojiGenericAnimations","type":"InputStickerSet","id":80008398,"comment":"Generic animation stickerset containing animations to play when reacting to messages using a normal emoji without a custom animation","arguments":[]},{"kind":"class","name":"inputStickerSetEmojiDefaultStatuses","type":"InputStickerSet","id":701560302,"comment":"Default custom emoji status stickerset","arguments":[]},{"kind":"class","name":"inputStickerSetEmojiDefaultTopicIcons","type":"InputStickerSet","id":1153562857,"comment":"Default custom emoji stickerset for forum topic icons","arguments":[]},{"kind":"class","name":"inputStickerSetEmojiChannelDefaultStatuses","type":"InputStickerSet","id":1232373075,"comment":"Default custom emoji status stickerset for channel statuses","arguments":[]},{"kind":"class","name":"stickerSet","type":"StickerSet","id":768691932,"comment":"Represents a stickerset (stickerpack)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"archived","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this stickerset was archived (due to too many saved stickers in the current account)"},{"name":"official","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is this stickerset official"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Is this a mask stickerset"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"This is a custom emoji stickerset"},{"name":"text_color","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether the color of this TGS custom emoji stickerset should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context."},{"name":"channel_emoji_status","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"If set, this custom emoji stickerset can be used in channel/supergroup emoji statuses."},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether we created this stickerset"},{"name":"installed_date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"When was this stickerset installed"},{"name":"id","type":"long","comment":"ID of the stickerset"},{"name":"access_hash","type":"long","comment":"Access hash of stickerset"},{"name":"title","type":"string","comment":"Title of stickerset"},{"name":"short_name","type":"string","comment":"Short name of stickerset, used when sharing stickerset using stickerset deep links."},{"name":"thumbs","type":"PhotoSize","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Stickerset thumbnail"},{"name":"thumb_dc_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"DC ID of thumbnail"},{"name":"thumb_version","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Thumbnail version"},{"name":"thumb_document_id","type":"long","typeModifiers":{"predicate":"flags.8"},"comment":"Document ID of custom emoji thumbnail, fetch the document using {@link messages.RawGetCustomEmojiDocumentsRequest}"},{"name":"count","type":"int","comment":"Number of stickers in pack"},{"name":"hash","type":"int","comment":"Hash"}]},{"kind":"class","name":"messages.stickerSet","type":"messages.StickerSet","id":1846886166,"comment":"Stickerset and stickers inside it","arguments":[{"name":"set","type":"StickerSet","comment":"The stickerset"},{"name":"packs","type":"StickerPack","typeModifiers":{"isVector":true},"comment":"Emoji info for stickers"},{"name":"keywords","type":"StickerKeyword","typeModifiers":{"isVector":true},"comment":"Keywords for some or every sticker in the stickerset."},{"name":"documents","type":"Document","typeModifiers":{"isVector":true},"comment":"Stickers in stickerset"}]},{"kind":"class","name":"messages.stickerSetNotModified","type":"messages.StickerSet","id":3556320491,"comment":"The stickerset hasn't changed","arguments":[]},{"kind":"class","name":"botCommand","type":"BotCommand","id":3262826695,"comment":"Describes a bot command that can be used in a chat","arguments":[{"name":"command","type":"string","comment":"/command name"},{"name":"description","type":"string","comment":"Description of the command"}]},{"kind":"class","name":"botInfo","id":912290611,"type":"BotInfo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_preview_medias","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"If set, the bot has some preview medias for the configured Main Mini App, see here » for more info on Main Mini App preview medias."},{"name":"user_id","type":"int53","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the bot"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Description of the bot"},{"name":"description_photo","type":"Photo","typeModifiers":{"predicate":"flags.4"},"comment":"Description photo"},{"name":"description_document","type":"Document","typeModifiers":{"predicate":"flags.5"},"comment":"Description animation in MPEG4 format"},{"name":"commands","type":"BotCommand","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"Bot commands that can be used in the chat"},{"name":"menu_button","type":"BotMenuButton","typeModifiers":{"predicate":"flags.3"},"comment":"Indicates the action to execute when pressing the in-UI menu button for bots"},{"name":"privacy_policy_url","type":"string","typeModifiers":{"predicate":"flags.7"},"comment":"The HTTP link to the privacy policy of the bot. If not set, then the /privacy command must be used, if supported by the bot (i.e. if it's present in the commands vector). If it isn't supported, then https://telegram.org/privacy-tpa must be opened, instead."},{"name":"app_settings","type":"BotAppSettings","typeModifiers":{"predicate":"flags.8"}}],"comment":"Info about bots (available bot commands, etc)"},{"kind":"class","name":"keyboardButton","type":"KeyboardButton","id":2734311552,"comment":"Bot keyboard button","arguments":[{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"keyboardButtonUrl","type":"KeyboardButton","id":629866245,"comment":"URL button","arguments":[{"name":"text","type":"string","comment":"Button label"},{"name":"url","type":"string","comment":"URL"}]},{"kind":"class","name":"keyboardButtonCallback","type":"KeyboardButton","id":901503851,"comment":"Callback button","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"requires_password","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user should verify their identity by entering their 2FA SRP parameters to the {@link messages.RawGetBotCallbackAnswerRequest} method. NOTE: telegram and the bot WILL NOT have access to the plaintext password, thanks to SRP. This button is mainly used by the official @botfather bot, for verifying the user's identity before transferring ownership of a bot to another user."},{"name":"text","type":"string","comment":"Button text"},{"name":"data","type":"bytes","comment":"Callback data"}]},{"kind":"class","name":"keyboardButtonRequestPhone","type":"KeyboardButton","id":2976541737,"comment":"Button to request a user's phone number","arguments":[{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"keyboardButtonRequestGeoLocation","type":"KeyboardButton","id":4235815743,"comment":"Button to request a user's geolocation","arguments":[{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"keyboardButtonSwitchInline","type":"KeyboardButton","id":2478439349,"comment":"Button to force a user to switch to inline mode: 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.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"same_peer","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, pressing the button will insert the bot's username and the specified inline query in the current chat's input field."},{"name":"text","type":"string","comment":"Button label"},{"name":"query","type":"string","comment":"The inline query to use"},{"name":"peer_types","type":"InlineQueryPeerType","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Filter to use when selecting chats."}]},{"kind":"class","name":"keyboardButtonGame","type":"KeyboardButton","id":1358175439,"comment":"Button to start a game","arguments":[{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"keyboardButtonBuy","type":"KeyboardButton","id":2950250427,"comment":"Button to buy a product","arguments":[{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"keyboardButtonUrlAuth","type":"KeyboardButton","id":280464681,"comment":"Button to request a user to authorize via URL using Seamless Telegram Login. When the user clicks on such a button, {@link messages.RawRequestUrlAuthRequest} should be called, providing the button_id and the ID of the container message. The returned {@link RawUrlAuthResultRequest} object will contain more details about the authorization request (request_write_access if the bot would like to send messages to the user along with the username of the bot which will be used for user authorization). Finally, the user can choose to call {@link messages.RawAcceptUrlAuthRequest} to get a {@link RawUrlAuthResultAccepted} with the URL to open instead of the url of this constructor, or a {@link RawUrlAuthResultDefault}, in which case the url of this constructor must be opened, instead. If the user refuses the authorization request but still wants to open the link, the url of this constructor must be used.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"text","type":"string","comment":"Button label"},{"name":"fwd_text","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"New text of the button in forwarded messages."},{"name":"url","type":"string","comment":"An HTTP URL to be opened with user authorization data added to the query string when the button is pressed. If the user refuses to provide authorization data, the original URL without information about the user will be opened. The data added is the same as described in Receiving authorization data.

NOTE: Services must always check the hash of the received data to verify the authentication and the integrity of the data as described in Checking authorization."},{"name":"button_id","type":"int","comment":"ID of the button to pass to {@link messages.RawRequestUrlAuthRequest}"}]},{"kind":"class","name":"inputKeyboardButtonUrlAuth","type":"KeyboardButton","id":3492708308,"comment":"Button to request a user to {@link messages.RawAcceptUrlAuthRequest} via URL using Seamless Telegram Login.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"request_write_access","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag to request the permission for your bot to send messages to the user."},{"name":"text","type":"string","comment":"Button text"},{"name":"fwd_text","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"New text of the button in forwarded messages."},{"name":"url","type":"string","comment":"An HTTP URL to be opened with user authorization data added to the query string when the button is pressed. If the user refuses to provide authorization data, the original URL without information about the user will be opened. The data added is the same as described in Receiving authorization data.
NOTE: You must always check the hash of the received data to verify the authentication and the integrity of the data as described in Checking authorization."},{"name":"bot","type":"InputUser","comment":"Username of a bot, which will be used for user authorization. See Setting up a bot for more details. If not specified, the current bot's username will be assumed. The url's domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details."}]},{"kind":"class","name":"keyboardButtonRequestPoll","type":"KeyboardButton","id":3150401885,"comment":"A button that allows the user to create and send a poll when pressed; available only in private","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"quiz","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"If set, only quiz polls can be sent"},{"name":"text","type":"string","comment":"Button text"}]},{"kind":"class","name":"inputKeyboardButtonUserProfile","type":"KeyboardButton","id":3918005115,"comment":"Button that links directly to a user profile","arguments":[{"name":"text","type":"string","comment":"Button text"},{"name":"user_id","type":"InputUser","comment":"User ID"}]},{"kind":"class","name":"keyboardButtonUserProfile","type":"KeyboardButton","id":814112961,"comment":"Button that links directly to a user profile","arguments":[{"name":"text","type":"string","comment":"Button text"},{"name":"user_id","type":"int53","comment":"User ID"}]},{"kind":"class","name":"keyboardButtonWebView","type":"KeyboardButton","id":326529584,"comment":"Button to open a bot mini app using {@link messages.RawRequestWebViewRequest}, sending over user information after user confirmation.\n\nCan only be sent or received as part of an inline keyboard, use {@link RawKeyboardButtonSimpleWebView} for reply keyboards.","arguments":[{"name":"text","type":"string","comment":"Button text"},{"name":"url","type":"string","comment":"Web app url"}]},{"kind":"class","name":"keyboardButtonSimpleWebView","type":"KeyboardButton","id":2696958044,"comment":"Button to open a bot mini app using {@link messages.RawRequestSimpleWebViewRequest}, without sending user information to the web app.\n\nCan only be sent or received as part of a reply keyboard, use {@link RawKeyboardButtonWebView} for inline keyboards.","arguments":[{"name":"text","type":"string","comment":"Button text"},{"name":"url","type":"string","comment":"Web app URL"}]},{"kind":"class","name":"keyboardButtonRequestPeer","type":"KeyboardButton","id":1406648280,"comment":"Prompts the user to select and share one or more peers with the bot using {@link messages.RawSendBotRequestedPeerRequest}","arguments":[{"name":"text","type":"string","comment":"Button text"},{"name":"button_id","type":"int","comment":"Button ID, to be passed to {@link messages.RawSendBotRequestedPeerRequest}."},{"name":"peer_type","type":"RequestPeerType","comment":"Filtering criteria to use for the peer selection list shown to the user.
The list should display all existing peers of the specified type, and should also offer an option for the user to create and immediately use one or more (up to max_quantity) peers of the specified type, if needed."},{"name":"max_quantity","type":"int","comment":"Maximum number of peers that can be chosen."}]},{"kind":"class","name":"inputKeyboardButtonRequestPeer","type":"KeyboardButton","id":3378916613,"comment":"Prompts the user to select and share one or more peers with the bot using {@link messages.RawSendBotRequestedPeerRequest}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"name_requested","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag to request the peer's name."},{"name":"username_requested","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag to request the peer's @username (if any)."},{"name":"photo_requested","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Set this flag to request the peer's photo (if any)."},{"name":"text","type":"string","comment":"Button text"},{"name":"button_id","type":"int","comment":"Button ID, to be passed to {@link messages.RawSendBotRequestedPeerRequest}."},{"name":"peer_type","type":"RequestPeerType","comment":"Filtering criteria to use for the peer selection list shown to the user.
The list should display all existing peers of the specified type, and should also offer an option for the user to create and immediately use one or more (up to max_quantity) peers of the specified type, if needed."},{"name":"max_quantity","type":"int","comment":"Maximum number of peers that can be chosen."}]},{"kind":"class","name":"keyboardButtonCopy","type":"KeyboardButton","id":1976723854,"comment":"Clipboard button: when clicked, the attached text must be copied to the clipboard.","arguments":[{"name":"text","type":"string","comment":"Title of the button"},{"name":"copy_text","type":"string","comment":"The text that will be copied to the clipboard"}]},{"kind":"class","name":"keyboardButtonRow","type":"KeyboardButtonRow","id":2002815875,"comment":"Inline keyboard row","arguments":[{"name":"buttons","type":"KeyboardButton","typeModifiers":{"isVector":true},"comment":"Bot or inline keyboard buttons"}]},{"kind":"class","name":"replyKeyboardHide","type":"ReplyMarkup","id":2688441221,"comment":"Hide sent bot keyboard","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"selective","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Use this flag 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 reply_to_message_id), 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"}]},{"kind":"class","name":"replyKeyboardForceReply","type":"ReplyMarkup","id":2259946248,"comment":"Force the user to send a reply","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"single_use","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"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."},{"name":"selective","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"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 reply_to_message_id), 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."},{"name":"placeholder","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"The placeholder to be shown in the input field when the keyboard is active; 1-64 characters."}]},{"kind":"class","name":"replyKeyboardMarkup","type":"ReplyMarkup","id":2245892561,"comment":"Bot keyboard","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"resize","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Requests clients to resize the keyboard vertically for optimal fit (e.g., make the keyboard smaller if there are just two rows of buttons). If not set, the custom keyboard is always of the same height as the app's standard keyboard."},{"name":"single_use","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"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."},{"name":"selective","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"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 reply_to_message_id), 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."},{"name":"persistent","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Requests clients to always show the keyboard when the regular keyboard is hidden."},{"name":"rows","type":"KeyboardButtonRow","typeModifiers":{"isVector":true},"comment":"Button row"},{"name":"placeholder","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"The placeholder to be shown in the input field when the keyboard is active; 1-64 characters."}]},{"kind":"class","name":"replyInlineMarkup","type":"ReplyMarkup","id":1218642516,"comment":"Bot or inline keyboard","arguments":[{"name":"rows","type":"KeyboardButtonRow","typeModifiers":{"isVector":true},"comment":"Bot or inline keyboard rows"}]},{"kind":"class","name":"messageEntityUnknown","type":"MessageEntity","id":3146955413,"comment":"Unknown message entity","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityMention","type":"MessageEntity","id":4194588573,"comment":"Message entity mentioning a user by @username; {@link RawMessageEntityMentionName} can also be used to mention users by their ID.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityHashtag","type":"MessageEntity","id":1868782349,"comment":"#hashtag message entity","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityBotCommand","type":"MessageEntity","id":1827637959,"comment":"Message entity representing a bot /command","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityUrl","type":"MessageEntity","id":1859134776,"comment":"Message entity representing an in-text url: https://google.com; for text urls, use {@link RawMessageEntityTextUrl}.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityEmail","type":"MessageEntity","id":1692693954,"comment":"Message entity representing an email@example.com.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityBold","type":"MessageEntity","id":3177253833,"comment":"Message entity representing bold text.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityItalic","type":"MessageEntity","id":2188348256,"comment":"Message entity representing italic text.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityCode","type":"MessageEntity","id":681706865,"comment":"Message entity representing a codeblock.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityPre","type":"MessageEntity","id":1938967520,"comment":"Message entity representing a preformatted codeblock, allowing the user to specify a programming language for the codeblock.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"},{"name":"language","type":"string","comment":"Programming language of the code"}]},{"kind":"class","name":"messageEntityTextUrl","type":"MessageEntity","id":1990644519,"comment":"Message entity representing a text url: for in-text urls like https://google.com use {@link RawMessageEntityUrl}.\n\nNote that an additional confirmation popup with the full URL must be displayed to the user before opening this link, unless the domain satisfies the conditions specified in the domain whitelist documentation ».","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"},{"name":"url","type":"string","comment":"The actual URL"}]},{"kind":"class","name":"messageEntityMentionName","type":"MessageEntity","id":3699052864,"comment":"Message entity representing a user mention: for creating a mention use {@link RawInputMessageEntityMentionName}.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"},{"name":"user_id","type":"int53","comment":"Identifier of the user that was mentioned"}]},{"kind":"class","name":"inputMessageEntityMentionName","type":"MessageEntity","id":546203849,"comment":"Message entity that can be used to create a user user mention: received mentions use the {@link RawMessageEntityMentionName} constructor, instead.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"},{"name":"user_id","type":"InputUser","comment":"Identifier of the user that was mentioned"}]},{"kind":"class","name":"messageEntityPhone","type":"MessageEntity","id":2607407947,"comment":"Message entity representing a phone number.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityCashtag","type":"MessageEntity","id":1280209983,"comment":"Message entity representing a $cashtag.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityUnderline","type":"MessageEntity","id":2622389899,"comment":"Message entity representing underlined text.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityStrike","type":"MessageEntity","id":3204879316,"comment":"Message entity representing strikethrough text.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityBankCard","type":"MessageEntity","id":1981704948,"comment":"Indicates a credit card number","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntitySpoiler","type":"MessageEntity","id":852137487,"comment":"Message entity representing a spoiler","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"messageEntityCustomEmoji","type":"MessageEntity","id":3369010680,"comment":"Represents a custom emoji.
\nNote that this entity must wrap exactly one regular emoji (the one contained in {@link RawDocumentAttributeCustomEmoji}.alt) in the related text, otherwise the server will ignore it.","arguments":[{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"},{"name":"document_id","type":"long","comment":"Document ID of the custom emoji, use {@link messages.RawGetCustomEmojiDocumentsRequest} to fetch the emoji animation and the actual emoji it represents."}]},{"kind":"class","name":"messageEntityBlockquote","type":"MessageEntity","id":4056722092,"comment":"Message entity representing a block quote.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"collapsed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the quote is collapsed by default."},{"name":"offset","type":"int","comment":"Offset of message entity within message (in UTF-16 code units)"},{"name":"length","type":"int","comment":"Length of message entity within message (in UTF-16 code units)"}]},{"kind":"class","name":"inputChannelEmpty","type":"InputChannel","id":4002160262,"comment":"Represents the absence of a channel","arguments":[]},{"kind":"class","name":"inputChannel","type":"InputChannel","id":4082822184,"comment":"Represents a channel","arguments":[{"name":"channel_id","type":"int53","comment":"Channel ID"},{"name":"access_hash","type":"long","comment":"Access hash taken from the {@link RawChannel} constructor"}]},{"kind":"class","name":"inputChannelFromMessage","type":"InputChannel","id":1536380829,"comment":"Defines a min channel that was seen in a certain message of a certain chat.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where the channel was seen"},{"name":"msg_id","type":"int","comment":"The message ID in the chat where the channel was seen"},{"name":"channel_id","type":"int53","comment":"The channel ID"}]},{"kind":"class","name":"contacts.resolvedPeer","type":"contacts.ResolvedPeer","id":2131196633,"comment":"Resolved peer","arguments":[{"name":"peer","type":"Peer","comment":"The peer"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"messageRange","type":"MessageRange","id":182649427,"comment":"Indicates a range of chat messages","arguments":[{"name":"min_id","type":"int","comment":"Start of range (message ID)"},{"name":"max_id","type":"int","comment":"End of range (message ID)"}]},{"kind":"class","name":"updates.channelDifferenceEmpty","type":"updates.ChannelDifference","id":1041346555,"comment":"There are no new updates","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"final","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether there are more updates that must be fetched (always false)"},{"name":"pts","type":"int","comment":"The latest PTS"},{"name":"timeout","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Clients are supposed to refetch the channel difference after timeout seconds have elapsed, if the user is currently viewing the chat, see here » for more info."}]},{"kind":"class","name":"updates.channelDifferenceTooLong","type":"updates.ChannelDifference","id":2763835134,"comment":"The provided pts + limit < remote pts. Simply, there are too many updates to be fetched (more than limit), the client has to resolve the update gap in one of the following ways (assuming the existence of a persistent database to locally store messages):\n\nIt should be also noted that some messages like live location messages shouldn't be deleted.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"final","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether there are more updates that must be fetched (always false)"},{"name":"timeout","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Clients are supposed to refetch the channel difference after timeout seconds have elapsed"},{"name":"dialog","type":"Dialog","comment":"Dialog containing the latest PTS that can be used to reset the channel state"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"The latest messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats from messages"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users from messages"}]},{"kind":"class","name":"updates.channelDifference","type":"updates.ChannelDifference","id":543450958,"comment":"The new updates","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"final","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether there are more updates to be fetched using getDifference, starting from the provided pts"},{"name":"pts","type":"int","comment":"The PTS from which to start getting updates the next time"},{"name":"timeout","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Clients are supposed to refetch the channel difference after timeout seconds have elapsed, if the user is currently viewing the chat, see here » for more info."},{"name":"new_messages","type":"Message","typeModifiers":{"isVector":true},"comment":"New messages"},{"name":"other_updates","type":"Update","typeModifiers":{"isVector":true},"comment":"Other updates"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"channelMessagesFilterEmpty","type":"ChannelMessagesFilter","id":2496933607,"comment":"No filter","arguments":[]},{"kind":"class","name":"channelMessagesFilter","type":"ChannelMessagesFilter","id":3447183703,"comment":"Filter for getting only certain types of channel messages","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"exclude_new_messages","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to exclude new messages from the search"},{"name":"ranges","type":"MessageRange","typeModifiers":{"isVector":true},"comment":"A range of messages to fetch"}]},{"kind":"class","name":"channelParticipant","id":3409540633,"type":"ChannelParticipant","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"user_id","type":"int53","comment":"Participant user ID"},{"name":"date","type":"int","comment":"Date joined"},{"name":"subscription_until_date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, contains the expiration date of the current Telegram Star subscription period » for the specified participant."}],"comment":"Channel/supergroup participant"},{"kind":"class","name":"channelParticipantSelf","id":1331723247,"type":"ChannelParticipant","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_request","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether I joined upon specific approval of an admin"},{"name":"user_id","type":"int53","comment":"User ID"},{"name":"inviter_id","type":"int53","comment":"User that invited me to the channel/supergroup"},{"name":"date","type":"int","comment":"When did I join the channel/supergroup"},{"name":"subscription_until_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"If set, contains the expiration date of the current Telegram Star subscription period » for the specified participant."}],"comment":"Myself"},{"kind":"class","name":"channelParticipantCreator","type":"ChannelParticipant","id":803602899,"comment":"Channel/supergroup creator","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"user_id","type":"int53","comment":"User ID"},{"name":"admin_rights","type":"ChatAdminRights","comment":"Creator admin rights"},{"name":"rank","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"The role (rank) of the group creator in the group: just an arbitrary string, admin by default"}]},{"kind":"class","name":"channelParticipantAdmin","type":"ChannelParticipant","id":885242707,"comment":"Admin","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_edit","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Can this admin promote other admins with the same permissions?"},{"name":"self","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Is this the current user"},{"name":"user_id","type":"int53","comment":"Admin user ID"},{"name":"inviter_id","type":"int53","typeModifiers":{"predicate":"flags.1"},"comment":"User that invited the admin to the channel/group"},{"name":"promoted_by","type":"int53","comment":"User that promoted the user to admin"},{"name":"date","type":"int","comment":"When did the user join"},{"name":"admin_rights","type":"ChatAdminRights","comment":"Admin rights"},{"name":"rank","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"The role (rank) of the admin in the group: just an arbitrary string, admin by default"}]},{"kind":"class","name":"channelParticipantBanned","type":"ChannelParticipant","id":1844969806,"comment":"Banned/kicked user","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"left","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user has left the group"},{"name":"peer","type":"Peer","comment":"The banned peer"},{"name":"kicked_by","type":"int53","comment":"User was kicked by the specified admin"},{"name":"date","type":"int","comment":"When did the user join the group"},{"name":"banned_rights","type":"ChatBannedRights","comment":"Banned rights"}]},{"kind":"class","name":"channelParticipantLeft","type":"ChannelParticipant","id":453242886,"comment":"A participant that left the channel/supergroup","arguments":[{"name":"peer","type":"Peer","comment":"The peer that left"}]},{"kind":"class","name":"channelParticipantsRecent","type":"ChannelParticipantsFilter","id":3728686201,"comment":"Fetch only recent participants","arguments":[]},{"kind":"class","name":"channelParticipantsAdmins","type":"ChannelParticipantsFilter","id":3026225513,"comment":"Fetch only admin participants","arguments":[]},{"kind":"class","name":"channelParticipantsKicked","type":"ChannelParticipantsFilter","id":2746567045,"comment":"Fetch only kicked participants","arguments":[{"name":"q","type":"string","comment":"Optional filter for searching kicked participants by name (otherwise empty)"}]},{"kind":"class","name":"channelParticipantsBots","type":"ChannelParticipantsFilter","id":2966521435,"comment":"Fetch only bot participants","arguments":[]},{"kind":"class","name":"channelParticipantsBanned","type":"ChannelParticipantsFilter","id":338142689,"comment":"Fetch only banned participants","arguments":[{"name":"q","type":"string","comment":"Optional filter for searching banned participants by name (otherwise empty)"}]},{"kind":"class","name":"channelParticipantsSearch","type":"ChannelParticipantsFilter","id":106343499,"comment":"Query participants by name","arguments":[{"name":"q","type":"string","comment":"Search query"}]},{"kind":"class","name":"channelParticipantsContacts","type":"ChannelParticipantsFilter","id":3144345741,"comment":"Fetch only participants that are also contacts","arguments":[{"name":"q","type":"string","comment":"Optional search query for searching contact participants by name"}]},{"kind":"class","name":"channelParticipantsMentions","type":"ChannelParticipantsFilter","id":3763035371,"comment":"This filter is used when looking for supergroup members to mention.
\nThis filter will automatically remove anonymous admins, and return even non-participant users that replied to a specific thread through the comment section of a channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"q","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Filter by user name or username"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Look only for users that posted in this thread"}]},{"kind":"class","name":"channels.channelParticipants","type":"channels.ChannelParticipants","id":2595290799,"comment":"Represents multiple channel participants","arguments":[{"name":"count","type":"int","comment":"Total number of participants that correspond to the given query"},{"name":"participants","type":"ChannelParticipant","typeModifiers":{"isVector":true},"comment":"Participants"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in participant info"}]},{"kind":"class","name":"channels.channelParticipantsNotModified","type":"channels.ChannelParticipants","id":4028055529,"comment":"No new participant info could be found","arguments":[]},{"kind":"class","name":"channels.channelParticipant","type":"channels.ChannelParticipant","id":3753378583,"comment":"Represents a channel participant","arguments":[{"name":"participant","type":"ChannelParticipant","comment":"The channel participant"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"help.termsOfService","type":"help.TermsOfService","id":2013922064,"comment":"Info about the latest telegram Terms Of Service","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"popup","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether a prompt must be showed to the user, in order to accept the new terms."},{"name":"id","type":"DataJSON","comment":"ID of the new terms"},{"name":"text","type":"string","comment":"Text of the new terms"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"},{"name":"min_age_confirm","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Minimum age required to sign up to telegram, the user must confirm that they is older than the minimum age."}]},{"kind":"class","name":"messages.savedGifsNotModified","type":"messages.SavedGifs","id":3892468898,"comment":"No new saved gifs were found","arguments":[]},{"kind":"class","name":"messages.savedGifs","type":"messages.SavedGifs","id":2225089037,"comment":"Saved gifs","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"gifs","type":"Document","typeModifiers":{"isVector":true},"comment":"List of saved gifs"}]},{"kind":"class","name":"inputBotInlineMessageMediaAuto","type":"InputBotInlineMessage","id":864077702,"comment":"A media","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"message","type":"string","comment":"Caption"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageText","type":"InputBotInlineMessage","id":1036876423,"comment":"Simple text message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Disable webpage preview"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"message","type":"string","comment":"Message"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageMediaGeo","type":"InputBotInlineMessage","id":2526190213,"comment":"Geolocation","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo_point","type":"InputGeoPoint","comment":"Geolocation"},{"name":"heading","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"For live locations, a direction in which the location moves, in degrees; 1-360"},{"name":"period","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Validity period"},{"name":"proximity_notification_radius","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for bot/inline keyboards"}]},{"kind":"class","name":"inputBotInlineMessageMediaVenue","type":"InputBotInlineMessage","id":1098628881,"comment":"Venue","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo_point","type":"InputGeoPoint","comment":"Geolocation"},{"name":"title","type":"string","comment":"Venue name"},{"name":"address","type":"string","comment":"Address"},{"name":"provider","type":"string","comment":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported"},{"name":"venue_id","type":"string","comment":"Venue ID in the provider's database"},{"name":"venue_type","type":"string","comment":"Venue type in the provider's database"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageMediaContact","type":"InputBotInlineMessage","id":2800599037,"comment":"A contact","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"First name"},{"name":"last_name","type":"string","comment":"Last name"},{"name":"vcard","type":"string","comment":"VCard info"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageGame","type":"InputBotInlineMessage","id":1262639204,"comment":"A game","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageMediaInvoice","type":"InputBotInlineMessage","id":3622273573,"comment":"An invoice","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Product name, 1-32 characters"},{"name":"description","type":"string","comment":"Product description, 1-255 characters"},{"name":"photo","type":"InputWebDocument","typeModifiers":{"predicate":"flags.0"},"comment":"Invoice photo"},{"name":"invoice","type":"Invoice","comment":"The invoice"},{"name":"payload","type":"bytes","comment":"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes."},{"name":"provider","type":"string","comment":"Payments provider token, obtained via Botfather"},{"name":"provider_data","type":"DataJSON","comment":"A JSON-serialized object for data about the invoice, which will be shared with the payment provider. A detailed description of the required fields should be provided by the payment provider."},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineMessageMediaWebPage","type":"InputBotInlineMessage","id":3185362192,"comment":"Specifies options that will be used to generate the link preview for the message, or even a standalone link preview without an attached message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"force_large_media","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, specifies that a large media preview should be used."},{"name":"force_small_media","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, specifies that a small media preview should be used."},{"name":"optional","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"If not set, a WEBPAGE_NOT_FOUND RPC error will be emitted if a webpage preview cannot be generated for the specified url; otherwise, no error will be emitted (unless the provided message is also empty, in which case a MESSAGE_EMPTY will be emitted, instead)."},{"name":"message","type":"string","comment":"The message, can be empty."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"url","type":"string","comment":"The URL to use for the link preview."},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"inputBotInlineResult","type":"InputBotInlineResult","id":2294256409,"comment":"An inline bot result","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"string","comment":"ID of result"},{"name":"type","type":"string","comment":"Result type (see bot API docs)"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Result title"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Result description"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"URL of result"},{"name":"thumb","type":"InputWebDocument","typeModifiers":{"predicate":"flags.4"},"comment":"Thumbnail for result"},{"name":"content","type":"InputWebDocument","typeModifiers":{"predicate":"flags.5"},"comment":"Result contents"},{"name":"send_message","type":"InputBotInlineMessage","comment":"Message to send when the result is selected"}]},{"kind":"class","name":"inputBotInlineResultPhoto","type":"InputBotInlineResult","id":2832753831,"comment":"Photo","arguments":[{"name":"id","type":"string","comment":"Result ID"},{"name":"type","type":"string","comment":"Result type (see bot API docs)"},{"name":"photo","type":"InputPhoto","comment":"Photo to send"},{"name":"send_message","type":"InputBotInlineMessage","comment":"Message to send when the result is selected"}]},{"kind":"class","name":"inputBotInlineResultDocument","type":"InputBotInlineResult","id":4294507972,"comment":"Document (media of any type except for photos)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"string","comment":"Result ID"},{"name":"type","type":"string","comment":"Result type (see bot API docs)"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Result title"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Result description"},{"name":"document","type":"InputDocument","comment":"Document to send"},{"name":"send_message","type":"InputBotInlineMessage","comment":"Message to send when the result is selected"}]},{"kind":"class","name":"inputBotInlineResultGame","type":"InputBotInlineResult","id":1336154098,"comment":"Game","arguments":[{"name":"id","type":"string","comment":"Result ID"},{"name":"short_name","type":"string","comment":"Game short name"},{"name":"send_message","type":"InputBotInlineMessage","comment":"Message to send when the result is selected"}]},{"kind":"class","name":"botInlineMessageMediaAuto","type":"BotInlineMessage","id":1984755728,"comment":"Send whatever media is attached to the {@link RawBotInlineMediaResult}","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"message","type":"string","comment":"Caption"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageText","type":"BotInlineMessage","id":2357159394,"comment":"Send a simple text message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Disable webpage preview"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"message","type":"string","comment":"The message"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageMediaGeo","type":"BotInlineMessage","id":85477117,"comment":"Send a geolocation","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo","type":"GeoPoint","comment":"Geolocation"},{"name":"heading","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"For live locations, a direction in which the location moves, in degrees; 1-360."},{"name":"period","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Validity period"},{"name":"proximity_notification_radius","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)."},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageMediaVenue","type":"BotInlineMessage","id":2324063644,"comment":"Send a venue","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo","type":"GeoPoint","comment":"Geolocation of venue"},{"name":"title","type":"string","comment":"Venue name"},{"name":"address","type":"string","comment":"Address"},{"name":"provider","type":"string","comment":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported"},{"name":"venue_id","type":"string","comment":"Venue ID in the provider's database"},{"name":"venue_type","type":"string","comment":"Venue type in the provider's database"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageMediaContact","type":"BotInlineMessage","id":416402882,"comment":"Send a contact","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"First name"},{"name":"last_name","type":"string","comment":"Last name"},{"name":"vcard","type":"string","comment":"VCard info"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageMediaInvoice","type":"BotInlineMessage","id":894081801,"comment":"Send an invoice","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"shipping_address_requested","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if you require the user's shipping address to complete the order"},{"name":"test","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Test invoice"},{"name":"title","type":"string","comment":"Product name, 1-32 characters"},{"name":"description","type":"string","comment":"Product description, 1-255 characters"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.0"},"comment":"Product photo"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"total_amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Inline keyboard"}]},{"kind":"class","name":"botInlineMessageMediaWebPage","type":"BotInlineMessage","id":2157631910,"comment":"Specifies options that must be used to generate the link preview for the message, or even a standalone link preview without an attached message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"force_large_media","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, specifies that a large media preview should be used."},{"name":"force_small_media","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, specifies that a small media preview should be used."},{"name":"manual","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, indicates that the URL used for the webpage preview was specified manually using {@link RawInputMediaWebPage}, and may not be related to any of the URLs specified in the message."},{"name":"safe","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"If set, the link can be opened directly without user confirmation."},{"name":"message","type":"string","comment":"The message, can be empty."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"url","type":"string","comment":"The URL to use for the link preview."},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for sending bot buttons"}]},{"kind":"class","name":"botInlineResult","type":"BotInlineResult","id":295067450,"comment":"Generic result","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"string","comment":"Result ID"},{"name":"type","type":"string","comment":"Result type (see bot API docs)"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Result title"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Result description"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"URL of article or webpage"},{"name":"thumb","type":"WebDocument","typeModifiers":{"predicate":"flags.4"},"comment":"Thumbnail for the result"},{"name":"content","type":"WebDocument","typeModifiers":{"predicate":"flags.5"},"comment":"Content of the result"},{"name":"send_message","type":"BotInlineMessage","comment":"Message to send"}]},{"kind":"class","name":"botInlineMediaResult","type":"BotInlineResult","id":400266251,"comment":"Media result","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"string","comment":"Result ID"},{"name":"type","type":"string","comment":"Result type (see bot API docs)"},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.0"},"comment":"If type is photo, the photo to send"},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.1"},"comment":"If type is document, the document to send"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Result title"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Description"},{"name":"send_message","type":"BotInlineMessage","comment":"Depending on the type and on the constructor, contains the caption of the media or the content of the message to be sent instead of the media"}]},{"kind":"class","name":"messages.botResults","type":"messages.BotResults","id":3760321270,"comment":"Result of a query to an inline bot","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"gallery","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the result is a picture gallery"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"The next offset to use when navigating through results"},{"name":"switch_pm","type":"InlineBotSwitchPM","typeModifiers":{"predicate":"flags.2"},"comment":"Shown as a button on top of the remaining inline result list; if clicked, redirects the user to a private chat with the bot with the specified start parameter."},{"name":"switch_webview","type":"InlineBotWebView","typeModifiers":{"predicate":"flags.3"},"comment":"Shown as a button on top of the remaining inline result list; if clicked, opens the specified inline mode mini app."},{"name":"results","type":"BotInlineResult","typeModifiers":{"isVector":true},"comment":"The results"},{"name":"cache_time","type":"int","comment":"Caching validity of the results"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the results"}]},{"kind":"class","name":"exportedMessageLink","type":"ExportedMessageLink","id":1571494644,"comment":"Link to a message in a supergroup/channel","arguments":[{"name":"link","type":"string","comment":"URL"},{"name":"html","type":"string","comment":"Embed code"}]},{"kind":"class","name":"messageFwdHeader","type":"MessageFwdHeader","id":1313731771,"comment":"Info about a forwarded message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"imported","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether this message was imported from a foreign chat service, click here for more info »"},{"name":"saved_out","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Only for messages forwarded to saved messages », set if the original message was outgoing (though the message may have been originally outgoing even if this flag is not set, if from_id points to the current user)."},{"name":"from_id","type":"Peer","typeModifiers":{"predicate":"flags.0"},"comment":"The ID of the user that originally sent the message"},{"name":"from_name","type":"string","typeModifiers":{"predicate":"flags.5"},"comment":"The name of the user that originally sent the message"},{"name":"date","type":"int","comment":"When was the message originally sent"},{"name":"channel_post","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"ID of the channel message that was forwarded"},{"name":"post_author","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"For channels and if signatures are enabled, author of the channel message"},{"name":"saved_from_peer","type":"Peer","typeModifiers":{"predicate":"flags.4"},"comment":"Only for messages forwarded to saved messages », contains the dialog where the message was originally sent."},{"name":"saved_from_msg_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Only for messages forwarded to saved messages », contains the original ID of the message in saved_from_peer."},{"name":"saved_from_id","type":"Peer","typeModifiers":{"predicate":"flags.8"},"comment":"Only for forwarded messages reforwarded to saved messages », contains the sender of the original message (i.e. if user A sends a message, then user B forwards it somewhere, then user C saves it to saved messages, this field will contain the ID of user B and from_id will contain the ID of user A)."},{"name":"saved_from_name","type":"string","typeModifiers":{"predicate":"flags.9"},"comment":"Only for forwarded messages from users with forward privacy enabled, sent by users with forward privacy enabled, reforwarded to saved messages », contains the sender of the original message (i.e. if user A (fwd privacy enabled) sends a message, then user B (fwd privacy enabled) forwards it somewhere, then user C saves it to saved messages, this field will contain the name of user B and from_name will contain the name of user A)."},{"name":"saved_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Only for forwarded messages reforwarded to saved messages », indicates when was the original message sent (i.e. if user A sends a message @ unixtime 1, then user B forwards it somewhere @ unixtime 2, then user C saves it to saved messages @ unixtime 3, this field will contain 2, date will contain 1 and the date of the containing {@link RawMessage} will contain 3)."},{"name":"psa_type","type":"string","typeModifiers":{"predicate":"flags.6"},"comment":"PSA type"}]},{"kind":"class","name":"auth.codeTypeSms","type":"auth.CodeType","id":1923290508,"comment":"The next time, the authentication code will be delivered via an immediately canceled incoming call.","arguments":[]},{"kind":"class","name":"auth.codeTypeCall","type":"auth.CodeType","id":1948046307,"comment":"The next time, the authentication code is to be delivered via an outgoing phone call.","arguments":[]},{"kind":"class","name":"auth.codeTypeFlashCall","type":"auth.CodeType","id":577556219,"comment":"The next time, the authentication code will be delivered via an immediately canceled incoming call.","arguments":[]},{"kind":"class","name":"auth.codeTypeMissedCall","type":"auth.CodeType","id":3592083182,"comment":"The next time, the authentication code will be delivered via an immediately canceled incoming call, handled manually by the user.","arguments":[]},{"kind":"class","name":"auth.codeTypeFragmentSms","type":"auth.CodeType","id":116234636,"comment":"The next time, the authentication code will be delivered via fragment.com","arguments":[]},{"kind":"class","name":"auth.sentCodeTypeApp","type":"auth.SentCodeType","id":1035688326,"comment":"The code was sent through the telegram app","arguments":[{"name":"length","type":"int","comment":"Length of the code in bytes"}]},{"kind":"class","name":"auth.sentCodeTypeSms","type":"auth.SentCodeType","id":3221273506,"comment":"The code was sent via SMS","arguments":[{"name":"length","type":"int","comment":"Length of the code in bytes"}]},{"kind":"class","name":"auth.sentCodeTypeCall","type":"auth.SentCodeType","id":1398007207,"comment":"The code will be sent via a phone call: a synthesized voice will tell the user which verification code to input.","arguments":[{"name":"length","type":"int","comment":"Length of the verification code"}]},{"kind":"class","name":"auth.sentCodeTypeFlashCall","type":"auth.SentCodeType","id":2869151449,"comment":"The code will be sent via a flash phone call, that will be closed immediately. The phone code will then be the phone number itself, just make sure that the phone number matches the specified pattern.","arguments":[{"name":"pattern","type":"string","comment":"pattern to match"}]},{"kind":"class","name":"auth.sentCodeTypeMissedCall","type":"auth.SentCodeType","id":2181063812,"comment":"The code will be sent via a flash phone call, that will be closed immediately. The last digits of the phone number that calls are the code that must be entered manually by the user.","arguments":[{"name":"prefix","type":"string","comment":"Prefix of the phone number from which the call will be made"},{"name":"length","type":"int","comment":"Length of the verification code"}]},{"kind":"class","name":"auth.sentCodeTypeEmailCode","type":"auth.SentCodeType","id":4098946459,"comment":"The code was sent via the previously configured login email »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"apple_signin_allowed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether authorization through Apple ID is allowed"},{"name":"google_signin_allowed","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether authorization through Google ID is allowed"},{"name":"email_pattern","type":"string","comment":"Pattern of the email"},{"name":"length","type":"int","comment":"Length of the sent verification code"},{"name":"reset_available_period","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Clients should wait for the specified amount of seconds before allowing the user to invoke {@link auth.RawResetLoginEmailRequest} (will be 0 for Premium users)."},{"name":"reset_pending_date","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"An email reset was already requested, and will occur at the specified date."}]},{"kind":"class","name":"auth.sentCodeTypeSetUpEmailRequired","type":"auth.SentCodeType","id":2773032426,"comment":"The user should add and verify an email address in order to login as described here ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"apple_signin_allowed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether authorization through Apple ID is allowed"},{"name":"google_signin_allowed","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether authorization through Google ID is allowed"}]},{"kind":"class","name":"auth.sentCodeTypeFragmentSms","type":"auth.SentCodeType","id":3646315577,"comment":"The code was delivered via fragment.com.","arguments":[{"name":"url","type":"string","comment":"Open the specified URL to log into fragment.com with the wallet that owns the specified phone number and view the code."},{"name":"length","type":"int","comment":"Length of the delivered code."}]},{"kind":"class","name":"auth.sentCodeTypeFirebaseSms","type":"auth.SentCodeType","id":10475318,"comment":"An authentication code should be delivered via SMS after Firebase attestation, as described in the auth documentation ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"nonce","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"On Android, the nonce to be used as described in the auth documentation »"},{"name":"play_integrity_project_id","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"Google Play Integrity project ID"},{"name":"play_integrity_nonce","type":"bytes","typeModifiers":{"predicate":"flags.2"},"comment":"Play Integrity API nonce"},{"name":"receipt","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"On iOS, must be compared with the receipt extracted from the received push notification."},{"name":"push_timeout","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"On iOS: if a push notification with the ios_push_secret isn't received within push_timeout seconds, the next_type authentication method must be used, with {@link auth.RawResendCodeRequest}."},{"name":"length","type":"int","comment":"Length of the code that will be delivered."}]},{"kind":"class","name":"auth.sentCodeTypeSmsWord","type":"auth.SentCodeType","id":2752949377,"comment":"The code was sent via SMS as a secret word, starting with the letter specified in beginning","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"beginning","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the secret word in the sent SMS (which may contain multiple words) starts with this letter."}]},{"kind":"class","name":"auth.sentCodeTypeSmsPhrase","type":"auth.SentCodeType","id":3010958511,"comment":"The code was sent via SMS as a secret phrase starting with the word specified in beginning","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"beginning","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the secret phrase (and the SMS) starts with this word."}]},{"kind":"class","name":"messages.botCallbackAnswer","type":"messages.BotCallbackAnswer","id":911761060,"comment":"Callback answer sent by the bot in response to a button press","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"alert","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether an alert should be shown to the user instead of a toast notification"},{"name":"has_url","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether an URL is present"},{"name":"native_ui","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether to show games in WebView or in native UI."},{"name":"message","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Alert to show"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"URL to open"},{"name":"cache_time","type":"int","comment":"For how long should this answer be cached"}]},{"kind":"class","name":"messages.messageEditData","type":"messages.MessageEditData","id":649453030,"comment":"Message edit data for media","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"caption","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Media caption, if the specified media's caption can be edited"}]},{"kind":"class","name":"inputBotInlineMessageID","type":"InputBotInlineMessageID","id":2299280777,"comment":"Represents a sent inline message from the perspective of a bot (legacy constructor)","arguments":[{"name":"dc_id","type":"int","comment":"DC ID to use when working with this inline message"},{"name":"id","type":"long","comment":"ID of message, contains both the (32-bit, legacy) owner ID and the message ID, used only for Bot API backwards compatibility with 32-bit user ID."},{"name":"access_hash","type":"long","comment":"Access hash of message"}]},{"kind":"class","name":"inputBotInlineMessageID64","type":"InputBotInlineMessageID","id":3067680215,"comment":"Represents a sent inline message from the perspective of a bot","arguments":[{"name":"dc_id","type":"int","comment":"DC ID to use when working with this inline message"},{"name":"owner_id","type":"long","comment":"ID of the owner of this message"},{"name":"id","type":"int","comment":"ID of message"},{"name":"access_hash","type":"long","comment":"Access hash of message"}]},{"kind":"class","name":"inlineBotSwitchPM","type":"InlineBotSwitchPM","id":1008755359,"comment":"The bot requested the user to message them in private","arguments":[{"name":"text","type":"string","comment":"Text for the button that switches the user to a private chat with the bot and sends the bot a start message with the parameter start_parameter (can be empty)"},{"name":"start_param","type":"string","comment":"The parameter for the /start parameter"}]},{"kind":"class","name":"messages.peerDialogs","type":"messages.PeerDialogs","id":863093588,"comment":"Dialog info of multiple peers","arguments":[{"name":"dialogs","type":"Dialog","typeModifiers":{"isVector":true},"comment":"Dialog info"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"Messages mentioned in dialog info"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"},{"name":"state","type":"updates.State","comment":"Current update state of dialog"}]},{"kind":"class","name":"topPeer","type":"TopPeer","id":3989684315,"comment":"Top peer","arguments":[{"name":"peer","type":"Peer","comment":"Peer"},{"name":"rating","type":"double","comment":"Rating as computed in top peer rating »"}]},{"kind":"class","name":"topPeerCategoryBotsPM","type":"TopPeerCategory","id":2875595611,"comment":"Most used bots","arguments":[]},{"kind":"class","name":"topPeerCategoryBotsInline","type":"TopPeerCategory","id":344356834,"comment":"Most used inline bots","arguments":[]},{"kind":"class","name":"topPeerCategoryCorrespondents","type":"TopPeerCategory","id":104314861,"comment":"Users we've chatted most frequently with","arguments":[]},{"kind":"class","name":"topPeerCategoryGroups","type":"TopPeerCategory","id":3172442442,"comment":"Often-opened groups and supergroups","arguments":[]},{"kind":"class","name":"topPeerCategoryChannels","type":"TopPeerCategory","id":371037736,"comment":"Most frequently visited channels","arguments":[]},{"kind":"class","name":"topPeerCategoryPhoneCalls","type":"TopPeerCategory","id":511092620,"comment":"Most frequently called users","arguments":[]},{"kind":"class","name":"topPeerCategoryForwardUsers","type":"TopPeerCategory","id":2822794409,"comment":"Users to which the users often forwards messages to","arguments":[]},{"kind":"class","name":"topPeerCategoryForwardChats","type":"TopPeerCategory","id":4226728176,"comment":"Chats to which the users often forwards messages to","arguments":[]},{"kind":"class","name":"topPeerCategoryBotsApp","type":"TopPeerCategory","id":4255022060,"comment":"Most frequently used Main Mini Bot Apps.","arguments":[]},{"kind":"class","name":"topPeerCategoryPeers","type":"TopPeerCategoryPeers","id":4219683473,"comment":"Top peer category","arguments":[{"name":"category","type":"TopPeerCategory","comment":"Top peer category of peers"},{"name":"count","type":"int","comment":"Count of peers"},{"name":"peers","type":"TopPeer","typeModifiers":{"isVector":true},"comment":"Peers"}]},{"kind":"class","name":"contacts.topPeersNotModified","type":"contacts.TopPeers","id":3727060725,"comment":"Top peer info hasn't changed","arguments":[]},{"kind":"class","name":"contacts.topPeers","type":"contacts.TopPeers","id":1891070632,"comment":"Top peers","arguments":[{"name":"categories","type":"TopPeerCategoryPeers","typeModifiers":{"isVector":true},"comment":"Top peers by top peer category"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"contacts.topPeersDisabled","type":"contacts.TopPeers","id":3039597469,"comment":"Top peers disabled","arguments":[]},{"kind":"class","name":"draftMessageEmpty","type":"DraftMessage","id":453805082,"comment":"Empty draft","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"When was the draft last updated"}]},{"kind":"class","name":"draftMessage","type":"DraftMessage","id":761606687,"comment":"Represents a message draft.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether no webpage preview will be generated"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.4"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story."},{"name":"message","type":"string","comment":"The draft"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text."},{"name":"media","type":"InputMedia","typeModifiers":{"predicate":"flags.5"},"comment":"Media."},{"name":"date","type":"int","comment":"Date of last update of the draft."},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags.7"},"comment":"A message effect that should be played as specified here »."}]},{"kind":"class","name":"messages.featuredStickersNotModified","type":"messages.FeaturedStickers","id":3336309862,"comment":"Featured stickers haven't changed","arguments":[{"name":"count","type":"int","comment":"Total number of featured stickers"}]},{"kind":"class","name":"messages.featuredStickers","type":"messages.FeaturedStickers","id":3191351558,"comment":"Featured stickersets","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"premium","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a premium stickerset"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"count","type":"int","comment":"Total number of featured stickers"},{"name":"sets","type":"StickerSetCovered","typeModifiers":{"isVector":true},"comment":"Featured stickersets"},{"name":"unread","type":"long","typeModifiers":{"isVector":true},"comment":"IDs of new featured stickersets"}]},{"kind":"class","name":"messages.recentStickersNotModified","type":"messages.RecentStickers","id":186120336,"comment":"No new recent sticker was found","arguments":[]},{"kind":"class","name":"messages.recentStickers","type":"messages.RecentStickers","id":2295561302,"comment":"Recently used stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"packs","type":"StickerPack","typeModifiers":{"isVector":true},"comment":"Emojis associated to stickers"},{"name":"stickers","type":"Document","typeModifiers":{"isVector":true},"comment":"Recent stickers"},{"name":"dates","type":"int","typeModifiers":{"isVector":true},"comment":"When was each sticker last used"}]},{"kind":"class","name":"messages.archivedStickers","type":"messages.ArchivedStickers","id":1338747336,"comment":"Archived stickersets","arguments":[{"name":"count","type":"int","comment":"Number of archived stickers"},{"name":"sets","type":"StickerSetCovered","typeModifiers":{"isVector":true},"comment":"Archived stickersets"}]},{"kind":"class","name":"messages.stickerSetInstallResultSuccess","type":"messages.StickerSetInstallResult","id":946083368,"comment":"The stickerset was installed successfully","arguments":[]},{"kind":"class","name":"messages.stickerSetInstallResultArchive","type":"messages.StickerSetInstallResult","id":904138920,"comment":"The stickerset was installed, but since there are too many stickersets some were archived","arguments":[{"name":"sets","type":"StickerSetCovered","typeModifiers":{"isVector":true},"comment":"Archived stickersets"}]},{"kind":"class","name":"stickerSetCovered","type":"StickerSetCovered","id":1678812626,"comment":"Stickerset with a single sticker as preview","arguments":[{"name":"set","type":"StickerSet","comment":"Stickerset"},{"name":"cover","type":"Document","comment":"Preview"}]},{"kind":"class","name":"stickerSetMultiCovered","type":"StickerSetCovered","id":872932635,"comment":"Stickerset, with multiple stickers as preview","arguments":[{"name":"set","type":"StickerSet","comment":"Stickerset"},{"name":"covers","type":"Document","typeModifiers":{"isVector":true},"comment":"Preview stickers"}]},{"kind":"class","name":"stickerSetFullCovered","type":"StickerSetCovered","id":1087454222,"comment":"Stickerset preview with all stickers of the stickerset included.
\nCurrently used only for custom emoji stickersets, to avoid a further call to {@link messages.RawGetStickerSetRequest}.","arguments":[{"name":"set","type":"StickerSet","comment":"Stickerset"},{"name":"packs","type":"StickerPack","typeModifiers":{"isVector":true},"comment":"Emoji information about every sticker in the stickerset"},{"name":"keywords","type":"StickerKeyword","typeModifiers":{"isVector":true},"comment":"Keywords for some or every sticker in the stickerset."},{"name":"documents","type":"Document","typeModifiers":{"isVector":true},"comment":"Stickers"}]},{"kind":"class","name":"stickerSetNoCovered","type":"StickerSetCovered","id":2008112412,"comment":"Just the stickerset information, with no previews.","arguments":[{"name":"set","type":"StickerSet","comment":"Stickerset information."}]},{"kind":"class","name":"maskCoords","type":"MaskCoords","id":2933316530,"comment":"Position on a photo where a mask should be placed when attaching stickers to media »\n\nThe n position indicates where the mask should be placed:","arguments":[{"name":"n","type":"int","comment":"Part of the face, relative to which the mask should be placed"},{"name":"x","type":"double","comment":"Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just to the left of the default mask position)"},{"name":"y","type":"double","comment":"Shift by Y-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just below the default mask position)"},{"name":"zoom","type":"double","comment":"Mask scaling coefficient. (For example, 2.0 means a doubled size)"}]},{"kind":"class","name":"inputStickeredMediaPhoto","type":"InputStickeredMedia","id":1251549527,"comment":"A photo with stickers attached","arguments":[{"name":"id","type":"InputPhoto","comment":"The photo"}]},{"kind":"class","name":"inputStickeredMediaDocument","type":"InputStickeredMedia","id":70813275,"comment":"A document with stickers attached","arguments":[{"name":"id","type":"InputDocument","comment":"The document"}]},{"kind":"class","name":"game","type":"Game","id":3187238203,"comment":"Indicates an already sent game","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"long","comment":"ID of the game"},{"name":"access_hash","type":"long","comment":"Access hash of the game"},{"name":"short_name","type":"string","comment":"Short name for the game"},{"name":"title","type":"string","comment":"Title of the game"},{"name":"description","type":"string","comment":"Game description"},{"name":"photo","type":"Photo","comment":"Game preview"},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.0"},"comment":"Optional attached document"}]},{"kind":"class","name":"inputGameID","type":"InputGame","id":53231223,"comment":"Indicates an already sent game","arguments":[{"name":"id","type":"long","comment":"game ID from Game constructor"},{"name":"access_hash","type":"long","comment":"access hash from Game constructor"}]},{"kind":"class","name":"inputGameShortName","type":"InputGame","id":3274827786,"comment":"Game by short name","arguments":[{"name":"bot_id","type":"InputUser","comment":"The bot that provides the game"},{"name":"short_name","type":"string","comment":"The game's short name, usually obtained from a game link »"}]},{"kind":"class","name":"highScore","type":"HighScore","id":1940093419,"comment":"Game highscore","arguments":[{"name":"pos","type":"int","comment":"Position in highscore list"},{"name":"user_id","type":"int53","comment":"User ID"},{"name":"score","type":"int","comment":"Score"}]},{"kind":"class","name":"messages.highScores","type":"messages.HighScores","id":2587622809,"comment":"Highscores in a game","arguments":[{"name":"scores","type":"HighScore","typeModifiers":{"isVector":true},"comment":"Highscores"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users, associated to the highscores"}]},{"kind":"class","name":"textEmpty","type":"RichText","id":3695018575,"comment":"Empty rich text element","arguments":[]},{"kind":"class","name":"textPlain","type":"RichText","id":1950782688,"comment":"Plain text","arguments":[{"name":"text","type":"string","comment":"Text"}]},{"kind":"class","name":"textBold","type":"RichText","id":1730456516,"comment":"Bold text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textItalic","type":"RichText","id":3641877916,"comment":"Italic text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textUnderline","type":"RichText","id":3240501956,"comment":"Underlined text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textStrike","type":"RichText","id":2616769429,"comment":"Strikethrough text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textFixed","type":"RichText","id":1816074681,"comment":"fixed-width rich text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textUrl","type":"RichText","id":1009288385,"comment":"Link","arguments":[{"name":"text","type":"RichText","comment":"Text of link"},{"name":"url","type":"string","comment":"Webpage HTTP URL"},{"name":"webpage_id","type":"long","comment":"If a preview was already generated for the page, the page ID"}]},{"kind":"class","name":"textEmail","type":"RichText","id":3730443734,"comment":"Rich text email link","arguments":[{"name":"text","type":"RichText","comment":"Link text"},{"name":"email","type":"string","comment":"Email address"}]},{"kind":"class","name":"textConcat","type":"RichText","id":2120376535,"comment":"Concatenation of rich texts","arguments":[{"name":"texts","type":"RichText","typeModifiers":{"isVector":true},"comment":"Concatenated rich texts"}]},{"kind":"class","name":"textSubscript","type":"RichText","id":3983181060,"comment":"Subscript text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textSuperscript","type":"RichText","id":3355139585,"comment":"Superscript text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textMarked","type":"RichText","id":55281185,"comment":"Highlighted text","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"textPhone","type":"RichText","id":483104362,"comment":"Rich text linked to a phone number","arguments":[{"name":"text","type":"RichText","comment":"Text"},{"name":"phone","type":"string","comment":"Phone number"}]},{"kind":"class","name":"textImage","type":"RichText","id":136105807,"comment":"Inline image","arguments":[{"name":"document_id","type":"long","comment":"Document ID"},{"name":"w","type":"int","comment":"Width"},{"name":"h","type":"int","comment":"Height"}]},{"kind":"class","name":"textAnchor","type":"RichText","id":894777186,"comment":"Text linking to another section of the page","arguments":[{"name":"text","type":"RichText","comment":"Text"},{"name":"name","type":"string","comment":"Section name"}]},{"kind":"class","name":"pageBlockUnsupported","type":"PageBlock","id":324435594,"comment":"Unsupported IV element","arguments":[]},{"kind":"class","name":"pageBlockTitle","type":"PageBlock","id":1890305021,"comment":"Title","arguments":[{"name":"text","type":"RichText","comment":"Title"}]},{"kind":"class","name":"pageBlockSubtitle","type":"PageBlock","id":2415565343,"comment":"Subtitle","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"pageBlockAuthorDate","type":"PageBlock","id":3132089824,"comment":"Author and date of creation of article","arguments":[{"name":"author","type":"RichText","comment":"Author name"},{"name":"published_date","type":"int","comment":"Date of publication"}]},{"kind":"class","name":"pageBlockHeader","type":"PageBlock","id":3218105580,"comment":"Page header","arguments":[{"name":"text","type":"RichText","comment":"Contents"}]},{"kind":"class","name":"pageBlockSubheader","type":"PageBlock","id":4046173921,"comment":"Subheader","arguments":[{"name":"text","type":"RichText","comment":"Subheader"}]},{"kind":"class","name":"pageBlockParagraph","type":"PageBlock","id":1182402406,"comment":"A paragraph","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"pageBlockPreformatted","type":"PageBlock","id":3228621118,"comment":"Preformatted (
 text)","arguments":[{"name":"text","type":"RichText","comment":"Text"},{"name":"language","type":"string","comment":"Programming language of preformatted text"}]},{"kind":"class","name":"pageBlockFooter","type":"PageBlock","id":1216809369,"comment":"Page footer","arguments":[{"name":"text","type":"RichText","comment":"Contents"}]},{"kind":"class","name":"pageBlockDivider","type":"PageBlock","id":3676352904,"comment":"An empty block separating a page","arguments":[]},{"kind":"class","name":"pageBlockAnchor","type":"PageBlock","id":3456972720,"comment":"Link to section within the page itself (like anchor)","arguments":[{"name":"name","type":"string","comment":"Name of target section"}]},{"kind":"class","name":"pageBlockList","type":"PageBlock","id":3840442385,"comment":"Unordered list of IV blocks","arguments":[{"name":"items","type":"PageListItem","typeModifiers":{"isVector":true},"comment":"List of blocks in an IV page"}]},{"kind":"class","name":"pageBlockBlockquote","type":"PageBlock","id":641563686,"comment":"Quote (equivalent to the HTML 
)","arguments":[{"name":"text","type":"RichText","comment":"Quote contents"},{"name":"caption","type":"RichText","comment":"Caption"}]},{"kind":"class","name":"pageBlockPullquote","type":"PageBlock","id":1329878739,"comment":"Pullquote","arguments":[{"name":"text","type":"RichText","comment":"Text"},{"name":"caption","type":"RichText","comment":"Caption"}]},{"kind":"class","name":"pageBlockPhoto","type":"PageBlock","id":391759200,"comment":"A photo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"photo_id","type":"long","comment":"Photo ID"},{"name":"caption","type":"PageCaption","comment":"Caption"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"HTTP URL of page the photo leads to when clicked"},{"name":"webpage_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"ID of preview of the page the photo leads to when clicked"}]},{"kind":"class","name":"pageBlockVideo","type":"PageBlock","id":2089805750,"comment":"Video","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"autoplay","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the video is set to autoplay"},{"name":"loop","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the video is set to loop"},{"name":"video_id","type":"long","comment":"Video ID"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"pageBlockCover","type":"PageBlock","id":972174080,"comment":"A page cover","arguments":[{"name":"cover","type":"PageBlock","comment":"Cover"}]},{"kind":"class","name":"pageBlockEmbed","type":"PageBlock","id":2826014149,"comment":"An embedded webpage","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"full_width","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the block should be full width"},{"name":"allow_scrolling","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether scrolling should be allowed"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Web page URL, if available"},{"name":"html","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"HTML-markup of the embedded page"},{"name":"poster_photo_id","type":"long","typeModifiers":{"predicate":"flags.4"},"comment":"Poster photo, if available"},{"name":"w","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Block width, if known"},{"name":"h","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Block height, if known"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"pageBlockEmbedPost","type":"PageBlock","id":4065961995,"comment":"An embedded post","arguments":[{"name":"url","type":"string","comment":"Web page URL"},{"name":"webpage_id","type":"long","comment":"ID of generated webpage preview"},{"name":"author_photo_id","type":"long","comment":"ID of the author's photo"},{"name":"author","type":"string","comment":"Author name"},{"name":"date","type":"int","comment":"Creation date"},{"name":"blocks","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Post contents"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"pageBlockCollage","type":"PageBlock","id":1705048653,"comment":"Collage of media","arguments":[{"name":"items","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Media elements"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"pageBlockSlideshow","type":"PageBlock","id":52401552,"comment":"Slideshow","arguments":[{"name":"items","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Slideshow items"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"pageBlockChannel","type":"PageBlock","id":4011282869,"comment":"Reference to a telegram channel","arguments":[{"name":"channel","type":"Chat","comment":"The channel/supergroup/chat"}]},{"kind":"class","name":"pageBlockAudio","type":"PageBlock","id":2151899626,"comment":"Audio","arguments":[{"name":"audio_id","type":"long","comment":"Audio ID (to be fetched from the container {@link RawPage} constructor"},{"name":"caption","type":"PageCaption","comment":"Audio caption"}]},{"kind":"class","name":"pageBlockKicker","type":"PageBlock","id":504660880,"comment":"Kicker","arguments":[{"name":"text","type":"RichText","comment":"Contents"}]},{"kind":"class","name":"pageBlockTable","type":"PageBlock","id":3209554562,"comment":"Table","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bordered","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Does the table have a visible border?"},{"name":"striped","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Is the table striped?"},{"name":"title","type":"RichText","comment":"Title"},{"name":"rows","type":"PageTableRow","typeModifiers":{"isVector":true},"comment":"Table rows"}]},{"kind":"class","name":"pageBlockOrderedList","type":"PageBlock","id":2592793057,"comment":"Ordered list of IV blocks","arguments":[{"name":"items","type":"PageListOrderedItem","typeModifiers":{"isVector":true},"comment":"List items"}]},{"kind":"class","name":"pageBlockDetails","type":"PageBlock","id":1987480557,"comment":"A collapsible details block","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"open","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the block is open by default"},{"name":"blocks","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Block contents"},{"name":"title","type":"RichText","comment":"Always visible heading for the block"}]},{"kind":"class","name":"pageBlockRelatedArticles","type":"PageBlock","id":370236054,"comment":"Related articles","arguments":[{"name":"title","type":"RichText","comment":"Title"},{"name":"articles","type":"PageRelatedArticle","typeModifiers":{"isVector":true},"comment":"Related articles"}]},{"kind":"class","name":"pageBlockMap","type":"PageBlock","id":2756656886,"comment":"A map","arguments":[{"name":"geo","type":"GeoPoint","comment":"Location of the map center"},{"name":"zoom","type":"int","comment":"Map zoom level; 13-20"},{"name":"w","type":"int","comment":"Map width in pixels before applying scale; 16-102"},{"name":"h","type":"int","comment":"Map height in pixels before applying scale; 16-1024"},{"name":"caption","type":"PageCaption","comment":"Caption"}]},{"kind":"class","name":"phoneCallDiscardReasonMissed","type":"PhoneCallDiscardReason","id":2246320897,"comment":"The phone call was missed","arguments":[]},{"kind":"class","name":"phoneCallDiscardReasonDisconnect","type":"PhoneCallDiscardReason","id":3767910816,"comment":"The phone call was disconnected","arguments":[]},{"kind":"class","name":"phoneCallDiscardReasonHangup","type":"PhoneCallDiscardReason","id":1471006352,"comment":"The phone call was ended normally","arguments":[]},{"kind":"class","name":"phoneCallDiscardReasonBusy","type":"PhoneCallDiscardReason","id":4210550985,"comment":"The phone call was discarded because the user is busy in another call","arguments":[]},{"kind":"class","name":"dataJSON","type":"DataJSON","id":2104790276,"comment":"Represents a json-encoded object","arguments":[{"name":"data","type":"string","comment":"JSON-encoded object"}]},{"kind":"class","name":"labeledPrice","type":"LabeledPrice","id":3408489464,"comment":"This object represents a portion of the price for goods or services.","arguments":[{"name":"label","type":"string","comment":"Portion label"},{"name":"amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"invoice","id":77522308,"type":"Invoice","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"test","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Test invoice"},{"name":"name_requested","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if you require the user's full name to complete the order"},{"name":"phone_requested","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Set this flag if you require the user's phone number to complete the order"},{"name":"email_requested","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Set this flag if you require the user's email address to complete the order"},{"name":"shipping_address_requested","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Set this flag if you require the user's shipping address to complete the order"},{"name":"flexible","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Set this flag if the final price depends on the shipping method"},{"name":"phone_to_provider","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Set this flag if user's phone number should be sent to provider"},{"name":"email_to_provider","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Set this flag if user's email address should be sent to provider"},{"name":"recurring","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether this is a recurring payment"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars."},{"name":"prices","type":"LabeledPrice","typeModifiers":{"isVector":true},"comment":"Price breakdown, a list of components (e.g. product price, tax, discount, delivery cost, delivery tax, bonus, etc.)"},{"name":"max_tip_amount","type":"long","typeModifiers":{"predicate":"flags.8"},"comment":"The maximum accepted amount for tips in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"suggested_tip_amounts","type":"long","typeModifiers":{"predicate":"flags.8","isVector":true},"comment":"A vector of suggested amounts of tips in the smallest units of the currency (integer, not float/double). At most 4 suggested tip amounts can be specified. The suggested tip amounts must be positive, passed in a strictly increased order and must not exceed max_tip_amount."},{"name":"terms_url","type":"string","typeModifiers":{"predicate":"flags.10"},"comment":"Terms of service URL"},{"name":"subscription_period","type":"int","typeModifiers":{"predicate":"flags.11"}}],"comment":"Invoice"},{"kind":"class","name":"paymentCharge","type":"PaymentCharge","id":3926049406,"comment":"Payment identifier","arguments":[{"name":"id","type":"string","comment":"Telegram payment identifier"},{"name":"provider_charge_id","type":"string","comment":"Provider payment identifier"}]},{"kind":"class","name":"postAddress","type":"PostAddress","id":512535275,"comment":"Shipping address","arguments":[{"name":"street_line1","type":"string","comment":"First line for the address"},{"name":"street_line2","type":"string","comment":"Second line for the address"},{"name":"city","type":"string","comment":"City"},{"name":"state","type":"string","comment":"State, if applicable (empty otherwise)"},{"name":"country_iso2","type":"string","comment":"ISO 3166-1 alpha-2 country code"},{"name":"post_code","type":"string","comment":"Address post code"}]},{"kind":"class","name":"paymentRequestedInfo","type":"PaymentRequestedInfo","id":2426158996,"comment":"Order info provided by the user","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"name","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"User's full name"},{"name":"phone","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"User's phone number"},{"name":"email","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"User's email address"},{"name":"shipping_address","type":"PostAddress","typeModifiers":{"predicate":"flags.3"},"comment":"User's shipping address"}]},{"kind":"class","name":"paymentSavedCredentialsCard","type":"PaymentSavedCredentials","id":3452074527,"comment":"Saved credit card","arguments":[{"name":"id","type":"string","comment":"Card ID"},{"name":"title","type":"string","comment":"Title"}]},{"kind":"class","name":"webDocument","type":"WebDocument","id":475467473,"comment":"Remote document","arguments":[{"name":"url","type":"string","comment":"Document URL"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"size","type":"int","comment":"File size"},{"name":"mime_type","type":"string","comment":"MIME type"},{"name":"attributes","type":"DocumentAttribute","typeModifiers":{"isVector":true},"comment":"Attributes for media types"}]},{"kind":"class","name":"webDocumentNoProxy","type":"WebDocument","id":4190682310,"comment":"Remote document that can be downloaded without proxying through telegram","arguments":[{"name":"url","type":"string","comment":"Document URL"},{"name":"size","type":"int","comment":"File size"},{"name":"mime_type","type":"string","comment":"MIME type"},{"name":"attributes","type":"DocumentAttribute","typeModifiers":{"isVector":true},"comment":"Attributes for media types"}]},{"kind":"class","name":"inputWebDocument","type":"InputWebDocument","id":2616017741,"comment":"The document","arguments":[{"name":"url","type":"string","comment":"Remote document URL to be downloaded using the appropriate method"},{"name":"size","type":"int","comment":"Remote file size"},{"name":"mime_type","type":"string","comment":"Mime type"},{"name":"attributes","type":"DocumentAttribute","typeModifiers":{"isVector":true},"comment":"Attributes for media types"}]},{"kind":"class","name":"inputWebFileLocation","type":"InputWebFileLocation","id":3258570374,"comment":"Location of a remote HTTP(s) file","arguments":[{"name":"url","type":"string","comment":"HTTP URL of file"},{"name":"access_hash","type":"long","comment":"Access hash"}]},{"kind":"class","name":"inputWebFileGeoPointLocation","type":"InputWebFileLocation","id":2669814217,"comment":"Used to download a server-generated image with the map preview from a {@link RawGeoPoint}, see the webfile docs for more info ».","arguments":[{"name":"geo_point","type":"InputGeoPoint","comment":"Generated from the lat, long and accuracy_radius parameters of the {@link RawGeoPoint}"},{"name":"access_hash","type":"long","comment":"Access hash of the {@link RawGeoPoint}"},{"name":"w","type":"int","comment":"Map width in pixels before applying scale; 16-1024"},{"name":"h","type":"int","comment":"Map height in pixels before applying scale; 16-1024"},{"name":"zoom","type":"int","comment":"Map zoom level; 13-20"},{"name":"scale","type":"int","comment":"Map scale; 1-3"}]},{"kind":"class","name":"inputWebFileAudioAlbumThumbLocation","type":"InputWebFileLocation","id":4100974884,"comment":"Used to download an album cover for any music file using {@link upload.RawGetWebFileRequest}, see the webfile docs for more info ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"small","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Used to return a thumbnail with 100x100 resolution (instead of the default 600x600)"},{"name":"document","type":"InputDocument","typeModifiers":{"predicate":"flags.0"},"comment":"The audio file in question: must NOT be provided in secret chats, provide the title and performer fields instead."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Song title: should only be used in secret chats, in normal chats provide document instead, as it has more lax rate limits."},{"name":"performer","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Song performer: should only be used in secret chats, in normal chats provide document instead, as it has more lax rate limits."}]},{"kind":"class","name":"upload.webFile","type":"upload.WebFile","id":568808380,"comment":"Represents a chunk of an HTTP webfile downloaded through telegram's secure MTProto servers","arguments":[{"name":"size","type":"int","comment":"File size"},{"name":"mime_type","type":"string","comment":"Mime type"},{"name":"file_type","type":"storage.FileType","comment":"File type"},{"name":"mtime","type":"int","comment":"Modified time"},{"name":"bytes","type":"bytes","comment":"Data"}]},{"kind":"class","name":"payments.paymentForm","type":"payments.PaymentForm","id":2684716881,"comment":"Payment form","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_save_credentials","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the user can choose to save credentials."},{"name":"password_missing","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Indicates that the user can save payment credentials, but only after setting up a 2FA password (currently the account doesn't have a 2FA password)"},{"name":"form_id","type":"long","comment":"Form ID"},{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"title","type":"string","comment":"Form title"},{"name":"description","type":"string","comment":"Description"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.5"},"comment":"Product photo"},{"name":"invoice","type":"Invoice","comment":"Invoice"},{"name":"provider_id","type":"long","comment":"Payment provider ID."},{"name":"url","type":"string","comment":"Payment form URL"},{"name":"native_provider","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Payment provider name.
One of the following:
- stripe"},{"name":"native_params","type":"DataJSON","typeModifiers":{"predicate":"flags.4"},"comment":"Contains information about the payment provider, if available, to support it natively without the need for opening the URL.
A JSON object that can contain the following fields:

- apple_pay_merchant_id: Apple Pay merchant ID
- google_pay_public_key: Google Pay public key
- need_country: True, if the user country must be provided,
- need_zip: True, if the user ZIP/postal code must be provided,
- need_cardholder_name: True, if the cardholder name must be provided
"},{"name":"additional_methods","type":"PaymentFormMethod","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Additional payment methods"},{"name":"saved_info","type":"PaymentRequestedInfo","typeModifiers":{"predicate":"flags.0"},"comment":"Saved server-side order information"},{"name":"saved_credentials","type":"PaymentSavedCredentials","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Contains information about saved card credentials"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"payments.paymentFormStars","type":"payments.PaymentForm","id":2079764828,"comment":"Represents a payment form, for payments to be using Telegram Stars, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"form_id","type":"long","comment":"Form ID."},{"name":"bot_id","type":"int53","comment":"Bot ID."},{"name":"title","type":"string","comment":"Form title"},{"name":"description","type":"string","comment":"Description"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.5"},"comment":"Product photo"},{"name":"invoice","type":"Invoice","comment":"Invoice"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about users mentioned in the other fields."}]},{"kind":"class","name":"payments.paymentFormStarGift","type":"payments.PaymentForm","id":3022376929,"comment":"Represents a payment form for a gift, see here » for more info.","arguments":[{"name":"form_id","type":"long","comment":"Form ID."},{"name":"invoice","type":"Invoice","comment":"Invoice"}]},{"kind":"class","name":"payments.validatedRequestedInfo","type":"payments.ValidatedRequestedInfo","id":3510966403,"comment":"Validated user-provided info","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"ID"},{"name":"shipping_options","type":"ShippingOption","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Shipping options"}]},{"kind":"class","name":"payments.paymentResult","type":"payments.PaymentResult","id":1314881805,"comment":"Payment result","arguments":[{"name":"updates","type":"Updates","comment":"Info about the payment"}]},{"kind":"class","name":"payments.paymentVerificationNeeded","type":"payments.PaymentResult","id":3628142905,"comment":"Payment was not successful, additional verification is needed","arguments":[{"name":"url","type":"string","comment":"URL for additional payment credentials verification"}]},{"kind":"class","name":"payments.paymentReceipt","type":"payments.PaymentReceipt","id":1891958275,"comment":"Receipt","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"date","type":"int","comment":"Date of generation"},{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"provider_id","type":"long","comment":"Provider ID"},{"name":"title","type":"string","comment":"Title"},{"name":"description","type":"string","comment":"Description"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.2"},"comment":"Photo"},{"name":"invoice","type":"Invoice","comment":"Invoice"},{"name":"info","type":"PaymentRequestedInfo","typeModifiers":{"predicate":"flags.0"},"comment":"Info"},{"name":"shipping","type":"ShippingOption","typeModifiers":{"predicate":"flags.1"},"comment":"Selected shipping option"},{"name":"tip_amount","type":"long","typeModifiers":{"predicate":"flags.3"},"comment":"Tipped amount"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"total_amount","type":"long","comment":"Total amount in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"credentials_title","type":"string","comment":"Payment credential name"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"payments.paymentReceiptStars","type":"payments.PaymentReceipt","id":3669751866,"comment":"Receipt for payment made using Telegram Stars.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"date","type":"int","comment":"Date of generation"},{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"title","type":"string","comment":"Title"},{"name":"description","type":"string","comment":"Description"},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.2"},"comment":"Product photo"},{"name":"invoice","type":"Invoice","comment":"Invoice"},{"name":"currency","type":"string","comment":"Currency, always XTR."},{"name":"total_amount","type":"long","comment":"Amount of Telegram Stars."},{"name":"transaction_id","type":"string","comment":"Transaction ID"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about users mentioned in the other fields."}]},{"kind":"class","name":"payments.savedInfo","type":"payments.SavedInfo","id":4220511292,"comment":"Saved server-side order information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_saved_credentials","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the user has some saved payment credentials"},{"name":"saved_info","type":"PaymentRequestedInfo","typeModifiers":{"predicate":"flags.0"},"comment":"Saved server-side order information"}]},{"kind":"class","name":"inputPaymentCredentialsSaved","type":"InputPaymentCredentials","id":3238965967,"comment":"Saved payment credentials","arguments":[{"name":"id","type":"string","comment":"Credential ID"},{"name":"tmp_password","type":"bytes","comment":"Temporary password"}]},{"kind":"class","name":"inputPaymentCredentials","type":"InputPaymentCredentials","id":873977640,"comment":"Payment credentials","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"save","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Save payment credential for future use"},{"name":"data","type":"DataJSON","comment":"Payment credentials"}]},{"kind":"class","name":"inputPaymentCredentialsApplePay","type":"InputPaymentCredentials","id":178373535,"comment":"Apple pay payment credentials","arguments":[{"name":"payment_data","type":"DataJSON","comment":"Payment data"}]},{"kind":"class","name":"inputPaymentCredentialsGooglePay","type":"InputPaymentCredentials","id":2328045569,"comment":"Google Pay payment credentials","arguments":[{"name":"payment_token","type":"DataJSON","comment":"Payment token"}]},{"kind":"class","name":"account.tmpPassword","type":"account.TmpPassword","id":3680828724,"comment":"Temporary payment password","arguments":[{"name":"tmp_password","type":"bytes","comment":"Temporary password"},{"name":"valid_until","type":"int","comment":"Validity period"}]},{"kind":"class","name":"shippingOption","type":"ShippingOption","id":3055631583,"comment":"Shipping option","arguments":[{"name":"id","type":"string","comment":"Option ID"},{"name":"title","type":"string","comment":"Title"},{"name":"prices","type":"LabeledPrice","typeModifiers":{"isVector":true},"comment":"List of price portions"}]},{"kind":"class","name":"inputStickerSetItem","type":"InputStickerSetItem","id":853188252,"comment":"Sticker in a stickerset","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"document","type":"InputDocument","comment":"The sticker"},{"name":"emoji","type":"string","comment":"Associated emoji"},{"name":"mask_coords","type":"MaskCoords","typeModifiers":{"predicate":"flags.0"},"comment":"Coordinates for mask sticker"},{"name":"keywords","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Set of keywords, separated by commas (can't be provided for mask stickers)"}]},{"kind":"class","name":"inputPhoneCall","type":"InputPhoneCall","id":506920429,"comment":"Phone call","arguments":[{"name":"id","type":"long","comment":"Call ID"},{"name":"access_hash","type":"long","comment":"Access hash"}]},{"kind":"class","name":"phoneCallEmpty","type":"PhoneCall","id":1399245077,"comment":"Empty constructor","arguments":[{"name":"id","type":"long","comment":"Call ID"}]},{"kind":"class","name":"phoneCallWaiting","type":"PhoneCall","id":3307368215,"comment":"Incoming phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Is this a video call"},{"name":"id","type":"long","comment":"Call ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"date","type":"int","comment":"Date"},{"name":"admin_id","type":"int53","comment":"Admin ID"},{"name":"participant_id","type":"int53","comment":"Participant ID"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Phone call protocol info"},{"name":"receive_date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"When was the phone call received"}]},{"kind":"class","name":"phoneCallRequested","type":"PhoneCall","id":347139340,"comment":"Requested phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether this is a video call"},{"name":"id","type":"long","comment":"Phone call ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"date","type":"int","comment":"When was the phone call created"},{"name":"admin_id","type":"int53","comment":"ID of the creator of the phone call"},{"name":"participant_id","type":"int53","comment":"ID of the other participant of the phone call"},{"name":"g_a_hash","type":"bytes","comment":"Parameter for key exchange"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Call protocol info to be passed to libtgvoip"}]},{"kind":"class","name":"phoneCallAccepted","type":"PhoneCall","id":912311057,"comment":"An accepted phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether this is a video call"},{"name":"id","type":"long","comment":"ID of accepted phone call"},{"name":"access_hash","type":"long","comment":"Access hash of phone call"},{"name":"date","type":"int","comment":"When was the call accepted"},{"name":"admin_id","type":"int53","comment":"ID of the call creator"},{"name":"participant_id","type":"int53","comment":"ID of the other user in the call"},{"name":"g_b","type":"bytes","comment":"B parameter for secure E2E phone call key exchange"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Protocol to use for phone call"}]},{"kind":"class","name":"phoneCall","type":"PhoneCall","id":810769141,"comment":"Phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"p2p_allowed","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether P2P connection to the other peer is allowed"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether this is a video call"},{"name":"id","type":"long","comment":"Call ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"date","type":"int","comment":"Date of creation of the call"},{"name":"admin_id","type":"int53","comment":"User ID of the creator of the call"},{"name":"participant_id","type":"int53","comment":"User ID of the other participant in the call"},{"name":"g_a_or_b","type":"bytes","comment":"Parameter for key exchange"},{"name":"key_fingerprint","type":"long","comment":"Key fingerprint"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Call protocol info to be passed to libtgvoip"},{"name":"connections","type":"PhoneConnection","typeModifiers":{"isVector":true},"comment":"List of endpoints the user can connect to exchange call data"},{"name":"start_date","type":"int","comment":"When was the call actually started"},{"name":"custom_parameters","type":"DataJSON","typeModifiers":{"predicate":"flags.7"},"comment":"Custom JSON-encoded call parameters to be passed to tgcalls."}]},{"kind":"class","name":"phoneCallDiscarded","type":"PhoneCall","id":1355435489,"comment":"Indicates a discarded phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"need_rating","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the server required the user to {@link phone.RawSetCallRatingRequest} the call"},{"name":"need_debug","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the server required the client to {@link phone.RawSaveCallDebugRequest} the libtgvoip call debug data"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether the call was a video call"},{"name":"id","type":"long","comment":"Call ID"},{"name":"reason","type":"PhoneCallDiscardReason","typeModifiers":{"predicate":"flags.0"},"comment":"Why was the phone call discarded"},{"name":"duration","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Duration of the phone call in seconds"}]},{"kind":"class","name":"phoneConnection","type":"PhoneConnection","id":2629903303,"comment":"Identifies an endpoint that can be used to connect to the other user in a phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"tcp","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether TCP should be used"},{"name":"id","type":"long","comment":"Endpoint ID"},{"name":"ip","type":"string","comment":"IP address of endpoint"},{"name":"ipv6","type":"string","comment":"IPv6 address of endpoint"},{"name":"port","type":"int","comment":"Port ID"},{"name":"peer_tag","type":"bytes","comment":"Our peer tag"}]},{"kind":"class","name":"phoneConnectionWebrtc","type":"PhoneConnection","id":1667228533,"comment":"WebRTC connection parameters","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"turn","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a TURN endpoint"},{"name":"stun","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is a STUN endpoint"},{"name":"id","type":"long","comment":"Endpoint ID"},{"name":"ip","type":"string","comment":"IP address"},{"name":"ipv6","type":"string","comment":"IPv6 address"},{"name":"port","type":"int","comment":"Port"},{"name":"username","type":"string","comment":"Username"},{"name":"password","type":"string","comment":"Password"}]},{"kind":"class","name":"phoneCallProtocol","type":"PhoneCallProtocol","id":4236742600,"comment":"Protocol info for libtgvoip","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"udp_p2p","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow P2P connection to the other participant"},{"name":"udp_reflector","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to allow connection to the other participants through the reflector servers"},{"name":"min_layer","type":"int","comment":"Minimum layer for remote libtgvoip"},{"name":"max_layer","type":"int","comment":"Maximum layer for remote libtgvoip"},{"name":"library_versions","type":"string","typeModifiers":{"isVector":true},"comment":"When using {@link phone.RawRequestCallRequest} and {@link phone.RawAcceptCallRequest}, specify all library versions supported by the client.
The server will merge and choose the best library version supported by both peers, returning only the best value in the result of the callee's {@link phone.RawAcceptCallRequest} and in the {@link RawPhoneCallAccepted} update received by the caller."}]},{"kind":"class","name":"phone.phoneCall","type":"phone.PhoneCall","id":3968000320,"comment":"A VoIP phone call","arguments":[{"name":"phone_call","type":"PhoneCall","comment":"The VoIP phone call"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"VoIP phone call participants"}]},{"kind":"class","name":"upload.cdnFileReuploadNeeded","type":"upload.CdnFile","id":4004045934,"comment":"The file was cleared from the temporary RAM cache of the CDN and has to be re-uploaded.","arguments":[{"name":"request_token","type":"bytes","comment":"Request token (see CDN)"}]},{"kind":"class","name":"upload.cdnFile","type":"upload.CdnFile","id":2845821519,"comment":"Represent a chunk of a CDN file.","arguments":[{"name":"bytes","type":"bytes","comment":"The data"}]},{"kind":"class","name":"cdnPublicKey","type":"CdnPublicKey","id":3380800186,"comment":"Public key to use only during handshakes to CDN DCs.","arguments":[{"name":"dc_id","type":"int","comment":"CDN DC ID"},{"name":"public_key","type":"string","comment":"RSA public key"}]},{"kind":"class","name":"cdnConfig","type":"CdnConfig","id":1462101002,"comment":"Configuration for CDN file downloads.","arguments":[{"name":"public_keys","type":"CdnPublicKey","typeModifiers":{"isVector":true},"comment":"Vector of public keys to use only during handshakes to CDN DCs."}]},{"kind":"class","name":"langPackString","type":"LangPackString","id":3402727926,"comment":"Translated localization string","arguments":[{"name":"key","type":"string","comment":"Language key"},{"name":"value","type":"string","comment":"Value"}]},{"kind":"class","name":"langPackStringPluralized","type":"LangPackString","id":1816636575,"comment":"A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"key","type":"string","comment":"Localization key"},{"name":"zero_value","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Value for zero objects"},{"name":"one_value","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Value for one object"},{"name":"two_value","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Value for two objects"},{"name":"few_value","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Value for a few objects"},{"name":"many_value","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Value for many objects"},{"name":"other_value","type":"string","comment":"Default value"}]},{"kind":"class","name":"langPackStringDeleted","type":"LangPackString","id":695856818,"comment":"Deleted localization string","arguments":[{"name":"key","type":"string","comment":"Localization key"}]},{"kind":"class","name":"langPackDifference","type":"LangPackDifference","id":4085629430,"comment":"Changes to the app's localization pack","arguments":[{"name":"lang_code","type":"string","comment":"Language code"},{"name":"from_version","type":"int","comment":"Previous version number"},{"name":"version","type":"int","comment":"New version number"},{"name":"strings","type":"LangPackString","typeModifiers":{"isVector":true},"comment":"Localized strings"}]},{"kind":"class","name":"langPackLanguage","type":"LangPackLanguage","id":4006239459,"comment":"Identifies a localization pack","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"official","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the language pack is official"},{"name":"rtl","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is this a localization pack for an RTL language"},{"name":"beta","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Is this a beta localization pack?"},{"name":"name","type":"string","comment":"Language name"},{"name":"native_name","type":"string","comment":"Language name in the language itself"},{"name":"lang_code","type":"string","comment":"Language code (pack identifier)"},{"name":"base_lang_code","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Identifier of a base language pack; may be empty. If a string is missed in the language pack, then it should be fetched from base language pack. Unsupported in custom language packs"},{"name":"plural_code","type":"string","comment":"A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info"},{"name":"strings_count","type":"int","comment":"Total number of non-deleted strings from the language pack"},{"name":"translated_count","type":"int","comment":"Total number of translated strings from the language pack"},{"name":"translations_url","type":"string","comment":"Link to language translation interface; empty for custom local language packs"}]},{"kind":"class","name":"channelAdminLogEventActionChangeTitle","type":"ChannelAdminLogEventAction","id":3873421349,"comment":"Channel/supergroup title was changed","arguments":[{"name":"prev_value","type":"string","comment":"Previous title"},{"name":"new_value","type":"string","comment":"New title"}]},{"kind":"class","name":"channelAdminLogEventActionChangeAbout","type":"ChannelAdminLogEventAction","id":1427671598,"comment":"The description was changed","arguments":[{"name":"prev_value","type":"string","comment":"Previous description"},{"name":"new_value","type":"string","comment":"New description"}]},{"kind":"class","name":"channelAdminLogEventActionChangeUsername","type":"ChannelAdminLogEventAction","id":1783299128,"comment":"Channel/supergroup username was changed","arguments":[{"name":"prev_value","type":"string","comment":"Old username"},{"name":"new_value","type":"string","comment":"New username"}]},{"kind":"class","name":"channelAdminLogEventActionChangePhoto","type":"ChannelAdminLogEventAction","id":1129042607,"comment":"The channel/supergroup's picture was changed","arguments":[{"name":"prev_photo","type":"Photo","comment":"Previous picture"},{"name":"new_photo","type":"Photo","comment":"New picture"}]},{"kind":"class","name":"channelAdminLogEventActionToggleInvites","type":"ChannelAdminLogEventAction","id":460916654,"comment":"Invites were enabled/disabled","arguments":[{"name":"new_value","type":"Bool","comment":"New value"}]},{"kind":"class","name":"channelAdminLogEventActionToggleSignatures","type":"ChannelAdminLogEventAction","id":648939889,"comment":"Channel signatures were enabled/disabled","arguments":[{"name":"new_value","type":"Bool","comment":"New value"}]},{"kind":"class","name":"channelAdminLogEventActionUpdatePinned","type":"ChannelAdminLogEventAction","id":3924306968,"comment":"A message was pinned","arguments":[{"name":"message","type":"Message","comment":"The message that was pinned"}]},{"kind":"class","name":"channelAdminLogEventActionEditMessage","type":"ChannelAdminLogEventAction","id":1889215493,"comment":"A message was edited","arguments":[{"name":"prev_message","type":"Message","comment":"Old message"},{"name":"new_message","type":"Message","comment":"New message"}]},{"kind":"class","name":"channelAdminLogEventActionDeleteMessage","type":"ChannelAdminLogEventAction","id":1121994683,"comment":"A message was deleted","arguments":[{"name":"message","type":"Message","comment":"The message that was deleted"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantJoin","type":"ChannelAdminLogEventAction","id":405815507,"comment":"A user has joined the group (in the case of big groups, info of the user that has joined isn't shown)","arguments":[]},{"kind":"class","name":"channelAdminLogEventActionParticipantLeave","type":"ChannelAdminLogEventAction","id":4170676210,"comment":"A user left the channel/supergroup (in the case of big groups, info of the user that has joined isn't shown)","arguments":[]},{"kind":"class","name":"channelAdminLogEventActionParticipantInvite","type":"ChannelAdminLogEventAction","id":3810276568,"comment":"A user was invited to the group","arguments":[{"name":"participant","type":"ChannelParticipant","comment":"The user that was invited"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantToggleBan","type":"ChannelAdminLogEventAction","id":3872931198,"comment":"The banned rights of a user were changed","arguments":[{"name":"prev_participant","type":"ChannelParticipant","comment":"Old banned rights of user"},{"name":"new_participant","type":"ChannelParticipant","comment":"New banned rights of user"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantToggleAdmin","type":"ChannelAdminLogEventAction","id":3580323600,"comment":"The admin rights of a user were changed","arguments":[{"name":"prev_participant","type":"ChannelParticipant","comment":"Previous admin rights"},{"name":"new_participant","type":"ChannelParticipant","comment":"New admin rights"}]},{"kind":"class","name":"channelAdminLogEventActionChangeStickerSet","type":"ChannelAdminLogEventAction","id":2982398631,"comment":"The supergroup's stickerset was changed","arguments":[{"name":"prev_stickerset","type":"InputStickerSet","comment":"Previous stickerset"},{"name":"new_stickerset","type":"InputStickerSet","comment":"New stickerset"}]},{"kind":"class","name":"channelAdminLogEventActionTogglePreHistoryHidden","type":"ChannelAdminLogEventAction","id":1599903217,"comment":"The hidden prehistory setting was {@link channels.RawTogglePreHistoryHiddenRequest}","arguments":[{"name":"new_value","type":"Bool","comment":"New value"}]},{"kind":"class","name":"channelAdminLogEventActionDefaultBannedRights","type":"ChannelAdminLogEventAction","id":771095562,"comment":"The default banned rights were modified","arguments":[{"name":"prev_banned_rights","type":"ChatBannedRights","comment":"Previous global banned rights"},{"name":"new_banned_rights","type":"ChatBannedRights","comment":"New global banned rights."}]},{"kind":"class","name":"channelAdminLogEventActionStopPoll","type":"ChannelAdminLogEventAction","id":2399639107,"comment":"A poll was stopped","arguments":[{"name":"message","type":"Message","comment":"The poll that was stopped"}]},{"kind":"class","name":"channelAdminLogEventActionChangeLinkedChat","type":"ChannelAdminLogEventAction","id":84703944,"comment":"The linked chat was changed","arguments":[{"name":"prev_value","type":"int53","comment":"Previous linked chat"},{"name":"new_value","type":"int53","comment":"New linked chat"}]},{"kind":"class","name":"channelAdminLogEventActionChangeLocation","type":"ChannelAdminLogEventAction","id":241923758,"comment":"The geo group location was changed","arguments":[{"name":"prev_value","type":"ChannelLocation","comment":"Previous location"},{"name":"new_value","type":"ChannelLocation","comment":"New location"}]},{"kind":"class","name":"channelAdminLogEventActionToggleSlowMode","type":"ChannelAdminLogEventAction","id":1401984889,"comment":"{@link channels.RawToggleSlowModeRequest}","arguments":[{"name":"prev_value","type":"int","comment":"Previous slow mode value"},{"name":"new_value","type":"int","comment":"New slow mode value"}]},{"kind":"class","name":"channelAdminLogEventActionStartGroupCall","type":"ChannelAdminLogEventAction","id":589338437,"comment":"A group call was started","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call"}]},{"kind":"class","name":"channelAdminLogEventActionDiscardGroupCall","type":"ChannelAdminLogEventAction","id":3684667712,"comment":"A group call was terminated","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call that was terminated"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantMute","type":"ChannelAdminLogEventAction","id":4179895506,"comment":"A group call participant was muted","arguments":[{"name":"participant","type":"GroupCallParticipant","comment":"The participant that was muted"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantUnmute","type":"ChannelAdminLogEventAction","id":3863226816,"comment":"A group call participant was unmuted","arguments":[{"name":"participant","type":"GroupCallParticipant","comment":"The participant that was unmuted"}]},{"kind":"class","name":"channelAdminLogEventActionToggleGroupCallSetting","type":"ChannelAdminLogEventAction","id":1456906823,"comment":"Group call settings were changed","arguments":[{"name":"join_muted","type":"Bool","comment":"Whether all users are muted by default upon joining"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantJoinByInvite","type":"ChannelAdminLogEventAction","id":4271882584,"comment":"A user joined the supergroup/channel using a specific invite link","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_chatlist","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"The participant joined by importing a chat folder deep link »."},{"name":"invite","type":"ExportedChatInvite","comment":"The invite link used to join the supergroup/channel"}]},{"kind":"class","name":"channelAdminLogEventActionExportedInviteDelete","type":"ChannelAdminLogEventAction","id":1515256996,"comment":"A chat invite was deleted","arguments":[{"name":"invite","type":"ExportedChatInvite","comment":"The deleted chat invite"}]},{"kind":"class","name":"channelAdminLogEventActionExportedInviteRevoke","type":"ChannelAdminLogEventAction","id":1091179342,"comment":"A specific invite link was revoked","arguments":[{"name":"invite","type":"ExportedChatInvite","comment":"The invite link that was revoked"}]},{"kind":"class","name":"channelAdminLogEventActionExportedInviteEdit","type":"ChannelAdminLogEventAction","id":3910056793,"comment":"A chat invite was edited","arguments":[{"name":"prev_invite","type":"ExportedChatInvite","comment":"Previous chat invite information"},{"name":"new_invite","type":"ExportedChatInvite","comment":"New chat invite information"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantVolume","type":"ChannelAdminLogEventAction","id":1048537159,"comment":"channelAdminLogEvent.user_id has set the volume of participant.peer to participant.volume","arguments":[{"name":"participant","type":"GroupCallParticipant","comment":"The participant whose volume was changed"}]},{"kind":"class","name":"channelAdminLogEventActionChangeHistoryTTL","type":"ChannelAdminLogEventAction","id":1855199800,"comment":"The Time-To-Live of messages in this chat was changed","arguments":[{"name":"prev_value","type":"int","comment":"Previous value"},{"name":"new_value","type":"int","comment":"New value"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantJoinByRequest","type":"ChannelAdminLogEventAction","id":2947945546,"comment":"A new member was accepted to the chat by an admin","arguments":[{"name":"invite","type":"ExportedChatInvite","comment":"The invite link that was used to join the chat"},{"name":"approved_by","type":"int53","comment":"ID of the admin that approved the invite"}]},{"kind":"class","name":"channelAdminLogEventActionToggleNoForwards","type":"ChannelAdminLogEventAction","id":3408578406,"comment":"Forwards were enabled or disabled","arguments":[{"name":"new_value","type":"Bool","comment":"Old value"}]},{"kind":"class","name":"channelAdminLogEventActionSendMessage","type":"ChannelAdminLogEventAction","id":663693416,"comment":"A message was posted in a channel","arguments":[{"name":"message","type":"Message","comment":"The message that was sent"}]},{"kind":"class","name":"channelAdminLogEventActionChangeAvailableReactions","type":"ChannelAdminLogEventAction","id":3192786680,"comment":"The set of allowed message reactions » for this channel has changed","arguments":[{"name":"prev_value","type":"ChatReactions","comment":"Previously allowed reaction emojis"},{"name":"new_value","type":"ChatReactions","comment":"New allowed reaction emojis"}]},{"kind":"class","name":"channelAdminLogEventActionChangeUsernames","type":"ChannelAdminLogEventAction","id":4031755177,"comment":"The list of usernames associated with the channel was changed","arguments":[{"name":"prev_value","type":"string","typeModifiers":{"isVector":true},"comment":"Previous set of usernames"},{"name":"new_value","type":"string","typeModifiers":{"isVector":true},"comment":"New set of usernames"}]},{"kind":"class","name":"channelAdminLogEventActionToggleForum","type":"ChannelAdminLogEventAction","id":46949251,"comment":"Forum functionality was enabled or disabled.","arguments":[{"name":"new_value","type":"Bool","comment":"Whether forum functionality was enabled or disabled."}]},{"kind":"class","name":"channelAdminLogEventActionCreateTopic","type":"ChannelAdminLogEventAction","id":1483767080,"comment":"A forum topic was created","arguments":[{"name":"topic","type":"ForumTopic","comment":"The forum topic that was created"}]},{"kind":"class","name":"channelAdminLogEventActionEditTopic","type":"ChannelAdminLogEventAction","id":4033864200,"comment":"A forum topic was edited","arguments":[{"name":"prev_topic","type":"ForumTopic","comment":"Previous topic information"},{"name":"new_topic","type":"ForumTopic","comment":"New topic information"}]},{"kind":"class","name":"channelAdminLogEventActionDeleteTopic","type":"ChannelAdminLogEventAction","id":2920712457,"comment":"A forum topic was deleted","arguments":[{"name":"topic","type":"ForumTopic","comment":"The forum topic that was deleted"}]},{"kind":"class","name":"channelAdminLogEventActionPinTopic","type":"ChannelAdminLogEventAction","id":1569535291,"comment":"A forum topic was pinned or unpinned","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"prev_topic","type":"ForumTopic","typeModifiers":{"predicate":"flags.0"},"comment":"Previous topic information"},{"name":"new_topic","type":"ForumTopic","typeModifiers":{"predicate":"flags.1"},"comment":"New topic information"}]},{"kind":"class","name":"channelAdminLogEventActionToggleAntiSpam","type":"ChannelAdminLogEventAction","id":1693675004,"comment":"Native antispam functionality was enabled or disabled.","arguments":[{"name":"new_value","type":"Bool","comment":"Whether antispam functionality was enabled or disabled."}]},{"kind":"class","name":"channelAdminLogEventActionChangePeerColor","type":"ChannelAdminLogEventAction","id":1469507456,"comment":"The message accent color was changed","arguments":[{"name":"prev_value","type":"PeerColor","comment":"Previous accent palette"},{"name":"new_value","type":"PeerColor","comment":"New accent palette"}]},{"kind":"class","name":"channelAdminLogEventActionChangeProfilePeerColor","type":"ChannelAdminLogEventAction","id":1581742885,"comment":"The profile accent color was changed","arguments":[{"name":"prev_value","type":"PeerColor","comment":"Previous accent palette"},{"name":"new_value","type":"PeerColor","comment":"New accent palette"}]},{"kind":"class","name":"channelAdminLogEventActionChangeWallpaper","type":"ChannelAdminLogEventAction","id":834362706,"comment":"The wallpaper was changed","arguments":[{"name":"prev_value","type":"WallPaper","comment":"Previous wallpaper"},{"name":"new_value","type":"WallPaper","comment":"New wallpaper"}]},{"kind":"class","name":"channelAdminLogEventActionChangeEmojiStatus","type":"ChannelAdminLogEventAction","id":1051328177,"comment":"The emoji status was changed","arguments":[{"name":"prev_value","type":"EmojiStatus","comment":"Previous emoji status"},{"name":"new_value","type":"EmojiStatus","comment":"New emoji status"}]},{"kind":"class","name":"channelAdminLogEventActionChangeEmojiStickerSet","type":"ChannelAdminLogEventAction","id":1188577451,"comment":"The supergroup's custom emoji stickerset was changed.","arguments":[{"name":"prev_stickerset","type":"InputStickerSet","comment":"Old value"},{"name":"new_stickerset","type":"InputStickerSet","comment":"New value"}]},{"kind":"class","name":"channelAdminLogEventActionToggleSignatureProfiles","type":"ChannelAdminLogEventAction","id":1621597305,"comment":"Channel signature profiles were enabled/disabled.","arguments":[{"name":"new_value","type":"Bool","comment":"New value"}]},{"kind":"class","name":"channelAdminLogEventActionParticipantSubExtend","type":"ChannelAdminLogEventAction","id":1684286899,"comment":"A paid subscriber has extended their Telegram Star subscription ».","arguments":[{"name":"prev_participant","type":"ChannelParticipant"},{"name":"new_participant","type":"ChannelParticipant"}]},{"kind":"class","name":"channelAdminLogEvent","type":"ChannelAdminLogEvent","id":531458253,"comment":"Admin log event","arguments":[{"name":"id","type":"long","comment":"Event ID"},{"name":"date","type":"int","comment":"Date"},{"name":"user_id","type":"int53","comment":"User ID"},{"name":"action","type":"ChannelAdminLogEventAction","comment":"Action"}]},{"kind":"class","name":"channels.adminLogResults","type":"channels.AdminLogResults","id":3985307469,"comment":"Admin log events","arguments":[{"name":"events","type":"ChannelAdminLogEvent","typeModifiers":{"isVector":true},"comment":"Admin log events"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in events"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in events"}]},{"kind":"class","name":"channelAdminLogEventsFilter","type":"ChannelAdminLogEventsFilter","id":3926948580,"comment":"Filter only certain admin log events","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"join","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"{@link RawChannelAdminLogEventActionParticipantJoin}, including {@link RawChannelAdminLogEventActionParticipantJoinByInvite} and {@link RawChannelAdminLogEventActionParticipantJoinByRequest}."},{"name":"leave","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"{@link RawChannelAdminLogEventActionParticipantLeave}"},{"name":"invite","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"{@link RawChannelAdminLogEventActionParticipantInvite}"},{"name":"ban","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleBan}"},{"name":"unban","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleBan}"},{"name":"kick","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleBan}"},{"name":"unkick","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleBan}"},{"name":"promote","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleAdmin}"},{"name":"demote","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"{@link RawChannelAdminLogEventActionParticipantToggleAdmin}"},{"name":"info","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Info change events (when {@link RawChannelAdminLogEventActionChangeAbout}, {@link RawChannelAdminLogEventActionChangeLinkedChat}, {@link RawChannelAdminLogEventActionChangeLocation}, {@link RawChannelAdminLogEventActionChangePhoto}, {@link RawChannelAdminLogEventActionChangeStickerSet}, {@link RawChannelAdminLogEventActionChangeTitle} or {@link RawChannelAdminLogEventActionChangeUsername}, {@link RawChannelAdminLogEventActionToggleSlowMode}, {@link RawChannelAdminLogEventActionChangeHistoryTTL} settings of a channel gets modified)"},{"name":"settings","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Settings change events ({@link RawChannelAdminLogEventActionToggleInvites}, {@link RawChannelAdminLogEventActionTogglePreHistoryHidden}, {@link RawChannelAdminLogEventActionToggleSignatures}, {@link RawChannelAdminLogEventActionDefaultBannedRights}, {@link RawChannelAdminLogEventActionToggleForum})"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"{@link RawChannelAdminLogEventActionUpdatePinned}"},{"name":"edit","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"{@link RawChannelAdminLogEventActionEditMessage}"},{"name":"delete","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"{@link RawChannelAdminLogEventActionDeleteMessage}"},{"name":"group_call","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Group call events"},{"name":"invites","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Invite events"},{"name":"send","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"A message was posted in a channel"},{"name":"forums","type":"true","typeModifiers":{"predicate":"flags.17"},"comment":"Forum-related events"},{"name":"sub_extend","type":"true","typeModifiers":{"predicate":"flags.18"},"comment":"{@link RawChannelAdminLogEventActionParticipantSubExtend}"}]},{"kind":"class","name":"popularContact","type":"PopularContact","id":1558266229,"comment":"Popular contact","arguments":[{"name":"client_id","type":"long","comment":"Contact identifier"},{"name":"importers","type":"int","comment":"How many people imported this contact"}]},{"kind":"class","name":"messages.favedStickersNotModified","type":"messages.FavedStickers","id":2660214483,"comment":"No new favorited stickers were found","arguments":[]},{"kind":"class","name":"messages.favedStickers","type":"messages.FavedStickers","id":750063767,"comment":"Favorited stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"packs","type":"StickerPack","typeModifiers":{"isVector":true},"comment":"Emojis associated to stickers"},{"name":"stickers","type":"Document","typeModifiers":{"isVector":true},"comment":"Favorited stickers"}]},{"kind":"class","name":"recentMeUrlUnknown","type":"RecentMeUrl","id":1189204285,"comment":"Unknown t.me url","arguments":[{"name":"url","type":"string","comment":"URL"}]},{"kind":"class","name":"recentMeUrlUser","type":"RecentMeUrl","id":3106671074,"comment":"Recent t.me link to a user","arguments":[{"name":"url","type":"string","comment":"URL"},{"name":"user_id","type":"int53","comment":"User ID"}]},{"kind":"class","name":"recentMeUrlChat","type":"RecentMeUrl","id":3000660434,"comment":"Recent t.me link to a chat","arguments":[{"name":"url","type":"string","comment":"t.me URL"},{"name":"chat_id","type":"int53","comment":"Chat ID"}]},{"kind":"class","name":"recentMeUrlChatInvite","type":"RecentMeUrl","id":3947431965,"comment":"Recent t.me invite link to a chat","arguments":[{"name":"url","type":"string","comment":"t.me URL"},{"name":"chat_invite","type":"ChatInvite","comment":"Chat invitation"}]},{"kind":"class","name":"recentMeUrlStickerSet","type":"RecentMeUrl","id":3154794460,"comment":"Recent t.me stickerset installation URL","arguments":[{"name":"url","type":"string","comment":"t.me URL"},{"name":"set","type":"StickerSetCovered","comment":"Stickerset"}]},{"kind":"class","name":"help.recentMeUrls","type":"help.RecentMeUrls","id":235081943,"comment":"Recent t.me URLs","arguments":[{"name":"urls","type":"RecentMeUrl","typeModifiers":{"isVector":true},"comment":"URLs"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"inputSingleMedia","type":"InputSingleMedia","id":482797855,"comment":"A single media in an album or grouped media sent with {@link messages.RawSendMultiMediaRequest}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"media","type":"InputMedia","comment":"The media"},{"name":"random_id","type":"long","comment":"Unique client media ID required to prevent message resending"},{"name":"message","type":"string","comment":"A caption for the media"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Message entities for styled text"}]},{"kind":"class","name":"webAuthorization","type":"WebAuthorization","id":2801333330,"comment":"Represents a bot logged in using the Telegram login widget","arguments":[{"name":"hash","type":"long","comment":"Authorization hash"},{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"domain","type":"string","comment":"The domain name of the website on which the user has logged in."},{"name":"browser","type":"string","comment":"Browser user-agent"},{"name":"platform","type":"string","comment":"Platform"},{"name":"date_created","type":"int","comment":"When was the web session created"},{"name":"date_active","type":"int","comment":"When was the web session last active"},{"name":"ip","type":"string","comment":"IP address"},{"name":"region","type":"string","comment":"Region, determined from IP address"}]},{"kind":"class","name":"account.webAuthorizations","type":"account.WebAuthorizations","id":3981887996,"comment":"Web authorizations","arguments":[{"name":"authorizations","type":"WebAuthorization","typeModifiers":{"isVector":true},"comment":"Web authorization list"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users"}]},{"kind":"class","name":"inputMessageID","type":"InputMessage","id":2792792866,"comment":"Message by ID","arguments":[{"name":"id","type":"int","comment":"Message ID"}]},{"kind":"class","name":"inputMessageReplyTo","type":"InputMessage","id":3134751637,"comment":"Message to which the specified message replies to","arguments":[{"name":"id","type":"int","comment":"ID of the message that replies to the message we need"}]},{"kind":"class","name":"inputMessagePinned","type":"InputMessage","id":2257003832,"comment":"Pinned message","arguments":[]},{"kind":"class","name":"inputMessageCallbackQuery","type":"InputMessage","id":2902071934,"comment":"Used by bots for fetching information about the message that originated a callback query","arguments":[{"name":"id","type":"int","comment":"Message ID"},{"name":"query_id","type":"long","comment":"Callback query ID"}]},{"kind":"class","name":"inputDialogPeer","type":"InputDialogPeer","id":4239064759,"comment":"A peer","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"}]},{"kind":"class","name":"inputDialogPeerFolder","type":"InputDialogPeer","id":1684014375,"comment":"All peers in a peer folder","arguments":[{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"}]},{"kind":"class","name":"dialogPeer","type":"DialogPeer","id":3849174789,"comment":"Peer","arguments":[{"name":"peer","type":"Peer","comment":"Peer"}]},{"kind":"class","name":"dialogPeerFolder","type":"DialogPeer","id":1363483106,"comment":"Peer folder","arguments":[{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"}]},{"kind":"class","name":"messages.foundStickerSetsNotModified","type":"messages.FoundStickerSets","id":223655517,"comment":"No further results were found","arguments":[]},{"kind":"class","name":"messages.foundStickerSets","type":"messages.FoundStickerSets","id":2331024850,"comment":"Found stickersets","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"sets","type":"StickerSetCovered","typeModifiers":{"isVector":true},"comment":"Found stickersets"}]},{"kind":"class","name":"fileHash","type":"FileHash","id":4087022428,"comment":"SHA256 Hash of an uploaded file, to be checked for validity after download","arguments":[{"name":"offset","type":"int53","comment":"Offset from where to start computing SHA-256 hash"},{"name":"limit","type":"int","comment":"Length"},{"name":"hash","type":"bytes","comment":"SHA-256 Hash of file chunk, to be checked for validity after download"}]},{"kind":"class","name":"inputClientProxy","type":"InputClientProxy","id":1968737087,"comment":"Info about an MTProxy used to connect.","arguments":[{"name":"address","type":"string","comment":"Proxy address"},{"name":"port","type":"int","comment":"Proxy port"}]},{"kind":"class","name":"help.termsOfServiceUpdateEmpty","type":"help.TermsOfServiceUpdate","id":3811614591,"comment":"No changes were made to telegram's terms of service","arguments":[{"name":"expires","type":"int","comment":"New TOS updates will have to be queried using {@link help.RawGetTermsOfServiceUpdateRequest} in expires seconds"}]},{"kind":"class","name":"help.termsOfServiceUpdate","type":"help.TermsOfServiceUpdate","id":686618977,"comment":"Info about an update of telegram's terms of service. If the terms of service are declined, then the {@link account.RawDeleteAccountRequest} method should be called with the reason \"Decline ToS update\"","arguments":[{"name":"expires","type":"int","comment":"New TOS updates will have to be queried using {@link help.RawGetTermsOfServiceUpdateRequest} in expires seconds"},{"name":"terms_of_service","type":"help.TermsOfService","comment":"New terms of service"}]},{"kind":"class","name":"inputSecureFileUploaded","type":"InputSecureFile","id":859091184,"comment":"Uploaded secure file, for more info see the passport docs »","arguments":[{"name":"id","type":"long","comment":"Secure file ID"},{"name":"parts","type":"int","comment":"Secure file part count"},{"name":"md5_checksum","type":"string","comment":"MD5 hash of encrypted uploaded file, to be checked server-side"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"secret","type":"bytes","comment":"Secret"}]},{"kind":"class","name":"inputSecureFile","type":"InputSecureFile","id":1399317950,"comment":"Pre-uploaded passport file, for more info see the passport docs »","arguments":[{"name":"id","type":"long","comment":"Secure file ID"},{"name":"access_hash","type":"long","comment":"Secure file access hash"}]},{"kind":"class","name":"secureFileEmpty","type":"SecureFile","id":1679398724,"comment":"Empty constructor","arguments":[]},{"kind":"class","name":"secureFile","type":"SecureFile","id":2097791614,"comment":"Secure passport file, for more info see the passport docs »","arguments":[{"name":"id","type":"long","comment":"ID"},{"name":"access_hash","type":"long","comment":"Access hash"},{"name":"size","type":"int53","comment":"File size"},{"name":"dc_id","type":"int","comment":"DC ID"},{"name":"date","type":"int","comment":"Date of upload"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"secret","type":"bytes","comment":"Secret"}]},{"kind":"class","name":"secureData","type":"SecureData","id":2330640067,"comment":"Secure passport data, for more info see the passport docs »","arguments":[{"name":"data","type":"bytes","comment":"Data"},{"name":"data_hash","type":"bytes","comment":"Data hash"},{"name":"secret","type":"bytes","comment":"Secret"}]},{"kind":"class","name":"securePlainPhone","type":"SecurePlainData","id":2103482845,"comment":"Phone number to use in telegram passport: it must be verified, first ».","arguments":[{"name":"phone","type":"string","comment":"Phone number"}]},{"kind":"class","name":"securePlainEmail","type":"SecurePlainData","id":569137759,"comment":"Email address to use in telegram passport: it must be verified, first ».","arguments":[{"name":"email","type":"string","comment":"Email address"}]},{"kind":"class","name":"secureValueTypePersonalDetails","type":"SecureValueType","id":2636808675,"comment":"Personal details","arguments":[]},{"kind":"class","name":"secureValueTypePassport","type":"SecureValueType","id":1034709504,"comment":"Passport","arguments":[]},{"kind":"class","name":"secureValueTypeDriverLicense","type":"SecureValueType","id":115615172,"comment":"Driver's license","arguments":[]},{"kind":"class","name":"secureValueTypeIdentityCard","type":"SecureValueType","id":2698015819,"comment":"Identity card","arguments":[]},{"kind":"class","name":"secureValueTypeInternalPassport","type":"SecureValueType","id":2577698595,"comment":"Internal passport","arguments":[]},{"kind":"class","name":"secureValueTypeAddress","type":"SecureValueType","id":3420659238,"comment":"Address","arguments":[]},{"kind":"class","name":"secureValueTypeUtilityBill","type":"SecureValueType","id":4231435598,"comment":"Utility bill","arguments":[]},{"kind":"class","name":"secureValueTypeBankStatement","type":"SecureValueType","id":2299755533,"comment":"Bank statement","arguments":[]},{"kind":"class","name":"secureValueTypeRentalAgreement","type":"SecureValueType","id":2340959368,"comment":"Rental agreement","arguments":[]},{"kind":"class","name":"secureValueTypePassportRegistration","type":"SecureValueType","id":2581823594,"comment":"Internal registration passport","arguments":[]},{"kind":"class","name":"secureValueTypeTemporaryRegistration","type":"SecureValueType","id":3926060083,"comment":"Temporary registration","arguments":[]},{"kind":"class","name":"secureValueTypePhone","type":"SecureValueType","id":3005262555,"comment":"Phone","arguments":[]},{"kind":"class","name":"secureValueTypeEmail","type":"SecureValueType","id":2386339822,"comment":"Email","arguments":[]},{"kind":"class","name":"secureValue","type":"SecureValue","id":411017418,"comment":"Secure value","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"type","type":"SecureValueType","comment":"Secure passport value type"},{"name":"data","type":"SecureData","typeModifiers":{"predicate":"flags.0"},"comment":"Encrypted Telegram Passport element data"},{"name":"front_side","type":"SecureFile","typeModifiers":{"predicate":"flags.1"},"comment":"Encrypted passport file with the front side of the document"},{"name":"reverse_side","type":"SecureFile","typeModifiers":{"predicate":"flags.2"},"comment":"Encrypted passport file with the reverse side of the document"},{"name":"selfie","type":"SecureFile","typeModifiers":{"predicate":"flags.3"},"comment":"Encrypted passport file with a selfie of the user holding the document"},{"name":"translation","type":"SecureFile","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Array of encrypted passport files with translated versions of the provided documents"},{"name":"files","type":"SecureFile","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Array of encrypted passport files with photos the of the documents"},{"name":"plain_data","type":"SecurePlainData","typeModifiers":{"predicate":"flags.5"},"comment":"Plaintext verified passport data"},{"name":"hash","type":"bytes","comment":"Data hash"}]},{"kind":"class","name":"inputSecureValue","type":"InputSecureValue","id":3676426407,"comment":"Secure value, for more info see the passport docs »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"type","type":"SecureValueType","comment":"Secure passport value type"},{"name":"data","type":"SecureData","typeModifiers":{"predicate":"flags.0"},"comment":"Encrypted Telegram Passport element data"},{"name":"front_side","type":"InputSecureFile","typeModifiers":{"predicate":"flags.1"},"comment":"Encrypted passport file with the front side of the document"},{"name":"reverse_side","type":"InputSecureFile","typeModifiers":{"predicate":"flags.2"},"comment":"Encrypted passport file with the reverse side of the document"},{"name":"selfie","type":"InputSecureFile","typeModifiers":{"predicate":"flags.3"},"comment":"Encrypted passport file with a selfie of the user holding the document"},{"name":"translation","type":"InputSecureFile","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Array of encrypted passport files with translated versions of the provided documents"},{"name":"files","type":"InputSecureFile","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Array of encrypted passport files with photos the of the documents"},{"name":"plain_data","type":"SecurePlainData","typeModifiers":{"predicate":"flags.5"},"comment":"Plaintext verified passport data"}]},{"kind":"class","name":"secureValueHash","type":"SecureValueHash","id":3978218928,"comment":"Secure value hash","arguments":[{"name":"type","type":"SecureValueType","comment":"Secure value type"},{"name":"hash","type":"bytes","comment":"Hash"}]},{"kind":"class","name":"secureValueErrorData","type":"SecureValueError","id":3903065049,"comment":"Represents an issue in one of the data fields that was provided by the user. The error is considered resolved when the field's value changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"The section of the user's Telegram Passport which has the error, one of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeAddress}"},{"name":"data_hash","type":"bytes","comment":"Data hash"},{"name":"field","type":"string","comment":"Name of the data field which has the error"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorFrontSide","type":"SecureValueError","id":12467706,"comment":"Represents an issue with the front side of a document. The error is considered resolved when the file with the front side of the document changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorReverseSide","type":"SecureValueError","id":2257201829,"comment":"Represents an issue with the reverse side of a document. The error is considered resolved when the file with reverse side of the document changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorSelfie","type":"SecureValueError","id":3845639894,"comment":"Represents an issue with the selfie with a document. The error is considered resolved when the file with the selfie changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorFile","type":"SecureValueError","id":2054162547,"comment":"Represents an issue with a document scan. The error is considered resolved when the file with the document scan changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorFiles","type":"SecureValueError","id":1717706985,"comment":"Represents an issue with a list of scans. The error is considered resolved when the list of files containing the scans changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}"},{"name":"file_hash","type":"bytes","typeModifiers":{"isVector":true},"comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueError","type":"SecureValueError","id":2258466191,"comment":"Secure value error","arguments":[{"name":"type","type":"SecureValueType","comment":"Type of element which has the issue"},{"name":"hash","type":"bytes","comment":"Hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorTranslationFile","type":"SecureValueError","id":2702460784,"comment":"Represents an issue with one of the files that constitute the translation of a document. The error is considered resolved when the file changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}"},{"name":"file_hash","type":"bytes","comment":"File hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureValueErrorTranslationFiles","type":"SecureValueError","id":878931416,"comment":"Represents an issue with the translated version of a document. The error is considered resolved when a file with the document translation changes.","arguments":[{"name":"type","type":"SecureValueType","comment":"One of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}"},{"name":"file_hash","type":"bytes","typeModifiers":{"isVector":true},"comment":"Hash"},{"name":"text","type":"string","comment":"Error message"}]},{"kind":"class","name":"secureCredentialsEncrypted","type":"SecureCredentialsEncrypted","id":871426631,"comment":"Encrypted credentials required to decrypt telegram passport data.","arguments":[{"name":"data","type":"bytes","comment":"Encrypted JSON-serialized data with unique user's payload, data hashes and secrets required for EncryptedPassportElement decryption and authentication, as described in decrypting data »"},{"name":"hash","type":"bytes","comment":"Data hash for data authentication as described in decrypting data »"},{"name":"secret","type":"bytes","comment":"Secret, encrypted with the bot's public RSA key, required for data decryption as described in decrypting data »"}]},{"kind":"class","name":"account.authorizationForm","type":"account.AuthorizationForm","id":2905480408,"comment":"Telegram Passport authorization form","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"required_types","type":"SecureRequiredType","typeModifiers":{"isVector":true},"comment":"Required Telegram Passport documents"},{"name":"values","type":"SecureValue","typeModifiers":{"isVector":true},"comment":"Already submitted Telegram Passport documents"},{"name":"errors","type":"SecureValueError","typeModifiers":{"isVector":true},"comment":"Telegram Passport errors"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about the bot to which the form will be submitted"},{"name":"privacy_policy_url","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"URL of the service's privacy policy"}]},{"kind":"class","name":"account.sentEmailCode","type":"account.SentEmailCode","id":2166326607,"comment":"The sent email code","arguments":[{"name":"email_pattern","type":"string","comment":"The email (to which the code was sent) must match this pattern"},{"name":"length","type":"int","comment":"The length of the verification code"}]},{"kind":"class","name":"help.deepLinkInfoEmpty","type":"help.DeepLinkInfo","id":1722786150,"comment":"Deep link info empty","arguments":[]},{"kind":"class","name":"help.deepLinkInfo","type":"help.DeepLinkInfo","id":1783556146,"comment":"Deep link info, see the here for more details","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"update_app","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"An update of the app is required to parse this link"},{"name":"message","type":"string","comment":"Message to show to the user"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"}]},{"kind":"class","name":"savedPhoneContact","type":"SavedContact","id":289586518,"comment":"Saved contact","arguments":[{"name":"phone","type":"string","comment":"Phone number"},{"name":"first_name","type":"string","comment":"First name"},{"name":"last_name","type":"string","comment":"Last name"},{"name":"date","type":"int","comment":"Date added"}]},{"kind":"class","name":"account.takeout","type":"account.Takeout","id":1304052993,"comment":"Takeout info","arguments":[{"name":"id","type":"long","comment":"Takeout ID"}]},{"kind":"class","name":"passwordKdfAlgoUnknown","type":"PasswordKdfAlgo","id":3562713238,"comment":"Unknown KDF (most likely, the client is outdated and does not support the specified KDF algorithm)","arguments":[]},{"kind":"class","name":"passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow","type":"PasswordKdfAlgo","id":982592842,"comment":"This key derivation algorithm defines that SRP 2FA login must be used","arguments":[{"name":"salt1","type":"bytes","comment":"One of two salts used by the derivation function (see SRP 2FA login)"},{"name":"salt2","type":"bytes","comment":"One of two salts used by the derivation function (see SRP 2FA login)"},{"name":"g","type":"int","comment":"Base (see SRP 2FA login)"},{"name":"p","type":"bytes","comment":"2048-bit modulus (see SRP 2FA login)"}]},{"kind":"class","name":"securePasswordKdfAlgoUnknown","type":"SecurePasswordKdfAlgo","id":4883767,"comment":"Unknown KDF algo (most likely the client has to be updated)","arguments":[]},{"kind":"class","name":"securePasswordKdfAlgoPBKDF2HMACSHA512iter100000","type":"SecurePasswordKdfAlgo","id":3153255840,"comment":"PBKDF2 with SHA512 and 100000 iterations KDF algo","arguments":[{"name":"salt","type":"bytes","comment":"Salt"}]},{"kind":"class","name":"securePasswordKdfAlgoSHA512","type":"SecurePasswordKdfAlgo","id":2252807570,"comment":"SHA512 KDF algo","arguments":[{"name":"salt","type":"bytes","comment":"Salt"}]},{"kind":"class","name":"secureSecretSettings","type":"SecureSecretSettings","id":354925740,"comment":"Secure settings","arguments":[{"name":"secure_algo","type":"SecurePasswordKdfAlgo","comment":"Secure KDF algo"},{"name":"secure_secret","type":"bytes","comment":"Secure secret"},{"name":"secure_secret_id","type":"long","comment":"Secret ID"}]},{"kind":"class","name":"inputCheckPasswordEmpty","type":"InputCheckPasswordSRP","id":2558588504,"comment":"There is no password","arguments":[]},{"kind":"class","name":"inputCheckPasswordSRP","type":"InputCheckPasswordSRP","id":3531600002,"comment":"Constructor for checking the validity of a 2FA SRP password (see SRP)","arguments":[{"name":"srp_id","type":"long","comment":"SRP ID"},{"name":"A","type":"bytes","comment":"A parameter (see SRP)"},{"name":"M1","type":"bytes","comment":"M1 parameter (see SRP)"}]},{"kind":"class","name":"secureRequiredType","type":"SecureRequiredType","id":2191366618,"comment":"Required type","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"native_names","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Native names"},{"name":"selfie_required","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Is a selfie required"},{"name":"translation_required","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is a translation required"},{"name":"type","type":"SecureValueType","comment":"Secure value type"}]},{"kind":"class","name":"secureRequiredTypeOneOf","type":"SecureRequiredType","id":41187252,"comment":"One of","arguments":[{"name":"types","type":"SecureRequiredType","typeModifiers":{"isVector":true},"comment":"Secure required value types"}]},{"kind":"class","name":"help.passportConfigNotModified","type":"help.PassportConfig","id":3216634967,"comment":"Password configuration not modified","arguments":[]},{"kind":"class","name":"help.passportConfig","type":"help.PassportConfig","id":2694370991,"comment":"Telegram passport configuration","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"countries_langs","type":"DataJSON","comment":"Localization"}]},{"kind":"class","name":"inputAppEvent","type":"InputAppEvent","id":488313413,"comment":"Event that occurred in the application.","arguments":[{"name":"time","type":"double","comment":"Client's exact timestamp for the event"},{"name":"type","type":"string","comment":"Type of event"},{"name":"peer","type":"long","comment":"Arbitrary numeric value for more convenient selection of certain event types, or events referring to a certain object"},{"name":"data","type":"JSONValue","comment":"Details of the event"}]},{"kind":"class","name":"jsonObjectValue","type":"JSONObjectValue","id":3235781593,"comment":"JSON key: value pair","arguments":[{"name":"key","type":"string","comment":"Key"},{"name":"value","type":"JSONValue","comment":"Value"}]},{"kind":"class","name":"jsonNull","type":"JSONValue","id":1064139624,"comment":"null JSON value","arguments":[]},{"kind":"class","name":"jsonBool","type":"JSONValue","id":3342098026,"comment":"JSON boolean value","arguments":[{"name":"value","type":"Bool","comment":"Value"}]},{"kind":"class","name":"jsonNumber","type":"JSONValue","id":736157604,"comment":"JSON numeric value","arguments":[{"name":"value","type":"double","comment":"Value"}]},{"kind":"class","name":"jsonString","type":"JSONValue","id":3072226938,"comment":"JSON string","arguments":[{"name":"value","type":"string","comment":"Value"}]},{"kind":"class","name":"jsonArray","type":"JSONValue","id":4148447075,"comment":"JSON array","arguments":[{"name":"value","type":"JSONValue","typeModifiers":{"isVector":true},"comment":"JSON values"}]},{"kind":"class","name":"jsonObject","type":"JSONValue","id":2579616925,"comment":"JSON object value","arguments":[{"name":"value","type":"JSONObjectValue","typeModifiers":{"isVector":true},"comment":"Values"}]},{"kind":"class","name":"pageTableCell","type":"PageTableCell","id":878078826,"comment":"Table cell","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"header","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Is this element part of the column header"},{"name":"align_center","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Horizontally centered block"},{"name":"align_right","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Right-aligned block"},{"name":"valign_middle","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Vertically centered block"},{"name":"valign_bottom","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Block vertically-aligned to the bottom"},{"name":"text","type":"RichText","typeModifiers":{"predicate":"flags.7"},"comment":"Content"},{"name":"colspan","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For how many columns should this cell extend"},{"name":"rowspan","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"For how many rows should this cell extend"}]},{"kind":"class","name":"pageTableRow","type":"PageTableRow","id":3770729957,"comment":"Table row","arguments":[{"name":"cells","type":"PageTableCell","typeModifiers":{"isVector":true},"comment":"Table cells"}]},{"kind":"class","name":"pageCaption","type":"PageCaption","id":1869903447,"comment":"Page caption","arguments":[{"name":"text","type":"RichText","comment":"Caption"},{"name":"credit","type":"RichText","comment":"Credits"}]},{"kind":"class","name":"pageListItemText","type":"PageListItem","id":3106911949,"comment":"List item","arguments":[{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"pageListItemBlocks","type":"PageListItem","id":635466748,"comment":"List item","arguments":[{"name":"blocks","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Blocks"}]},{"kind":"class","name":"pageListOrderedItemText","type":"PageListOrderedItem","id":1577484359,"comment":"Ordered list of text items","arguments":[{"name":"num","type":"string","comment":"Number of element within ordered list"},{"name":"text","type":"RichText","comment":"Text"}]},{"kind":"class","name":"pageListOrderedItemBlocks","type":"PageListOrderedItem","id":2564655414,"comment":"Ordered list of IV blocks","arguments":[{"name":"num","type":"string","comment":"Number of element within ordered list"},{"name":"blocks","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Item contents"}]},{"kind":"class","name":"pageRelatedArticle","type":"PageRelatedArticle","id":3012615176,"comment":"Related article","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"url","type":"string","comment":"URL of article"},{"name":"webpage_id","type":"long","comment":"Webpage ID of generated IV preview"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Title"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Description"},{"name":"photo_id","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"ID of preview photo"},{"name":"author","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Author name"},{"name":"published_date","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Date of publication"}]},{"kind":"class","name":"page","type":"Page","id":2556788493,"comment":"Instant view page","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"part","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Indicates that not full page preview is available to the client and it will need to fetch full Instant View from the server using {@link messages.RawGetWebPagePreviewRequest}."},{"name":"rtl","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the page contains RTL text"},{"name":"v2","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this is an IV v2 page"},{"name":"url","type":"string","comment":"Original page HTTP URL"},{"name":"blocks","type":"PageBlock","typeModifiers":{"isVector":true},"comment":"Page elements (like with HTML elements, only as TL constructors)"},{"name":"photos","type":"Photo","typeModifiers":{"isVector":true},"comment":"Photos in page"},{"name":"documents","type":"Document","typeModifiers":{"isVector":true},"comment":"Media in page"},{"name":"views","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"View count"}]},{"kind":"class","name":"help.supportName","type":"help.SupportName","id":2349199817,"comment":"Localized name for telegram support","arguments":[{"name":"name","type":"string","comment":"Localized name"}]},{"kind":"class","name":"help.userInfoEmpty","type":"help.UserInfo","id":4088278765,"comment":"Internal use","arguments":[]},{"kind":"class","name":"help.userInfo","type":"help.UserInfo","id":32192344,"comment":"Internal use","arguments":[{"name":"message","type":"string","comment":"Info"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"},{"name":"author","type":"string","comment":"Author"},{"name":"date","type":"int","comment":"Date"}]},{"kind":"class","name":"pollAnswer","type":"PollAnswer","id":4279689930,"comment":"A possible answer of a poll","arguments":[{"name":"text","type":"TextWithEntities","comment":"Textual representation of the answer (only Premium users can use custom emoji entities here)."},{"name":"option","type":"bytes","comment":"The param that has to be passed to {@link messages.RawSendVoteRequest}."}]},{"kind":"class","name":"poll","type":"Poll","id":1484026161,"comment":"Poll","arguments":[{"name":"id","type":"long","comment":"ID of the poll"},{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"closed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the poll is closed and doesn't accept any more answers"},{"name":"public_voters","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether cast votes are publicly visible to all users (non-anonymous poll)"},{"name":"multiple_choice","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether multiple options can be chosen as answer"},{"name":"quiz","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this is a quiz (with wrong and correct answers, results shown in the return type)"},{"name":"question","type":"TextWithEntities","comment":"The question of the poll (only Premium users can use custom emoji entities here)."},{"name":"answers","type":"PollAnswer","typeModifiers":{"isVector":true},"comment":"The possible answers, vote using {@link messages.RawSendVoteRequest}."},{"name":"close_period","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date."},{"name":"close_date","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Point in time (UNIX timestamp in seconds) when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future; can't be used together with close_period."}]},{"kind":"class","name":"pollAnswerVoters","type":"PollAnswerVoters","id":997055186,"comment":"A poll answer, and how users voted on it","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chosen","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we have chosen this answer"},{"name":"correct","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"For quizzes, whether the option we have chosen is correct"},{"name":"option","type":"bytes","comment":"The param that has to be passed to {@link messages.RawSendVoteRequest}."},{"name":"voters","type":"int","comment":"How many users voted for this option"}]},{"kind":"class","name":"pollResults","type":"PollResults","id":2061444128,"comment":"Results of poll","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Similar to min objects, used for poll constructors that are the same for all users so they don't have the option chosen by the current user (you can use {@link messages.RawGetPollResultsRequest} to get the full poll results)."},{"name":"results","type":"PollAnswerVoters","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Poll results"},{"name":"total_voters","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Total number of people that voted in the poll"},{"name":"recent_voters","type":"Peer","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"IDs of the last users that recently voted in the poll"},{"name":"solution","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Explanation of quiz solution"},{"name":"solution_entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Message entities for styled text in quiz solution"}]},{"kind":"class","name":"chatOnlines","type":"ChatOnlines","id":4030849616,"comment":"Number of online users in a chat","arguments":[{"name":"onlines","type":"int","comment":"Number of online users"}]},{"kind":"class","name":"statsURL","type":"StatsURL","id":1202287072,"comment":"URL with chat statistics","arguments":[{"name":"url","type":"string","comment":"Chat statistics"}]},{"kind":"class","name":"chatAdminRights","type":"ChatAdminRights","id":1605510357,"comment":"Represents the rights of an admin in a channel/supergroup.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"change_info","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, allows the admin to modify the description of the channel/supergroup"},{"name":"post_messages","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, allows the admin to post messages in the channel"},{"name":"edit_messages","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, allows the admin to also edit messages from other admins in the channel"},{"name":"delete_messages","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, allows the admin to also delete messages from other admins in the channel"},{"name":"ban_users","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, allows the admin to ban users from the channel/supergroup"},{"name":"invite_users","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, allows the admin to invite users in the channel/supergroup"},{"name":"pin_messages","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, allows the admin to pin messages in the channel/supergroup"},{"name":"add_admins","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"If set, allows the admin to add other admins with the same (or more limited) permissions in the channel/supergroup"},{"name":"anonymous","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Whether this admin is anonymous"},{"name":"manage_call","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"If set, allows the admin to change group call/livestream settings"},{"name":"other","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Set this flag if none of the other flags are set, but you still want the user to be an admin: if this or any of the other flags are set, the admin can get the chat admin log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode."},{"name":"manage_topics","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"If set, allows the admin to create, delete or modify forum topics »."},{"name":"post_stories","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"If set, allows the admin to post stories as the channel."},{"name":"edit_stories","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"If set, allows the admin to edit stories posted by the other admins of the channel."},{"name":"delete_stories","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, allows the admin to delete stories posted by the other admins of the channel."}]},{"kind":"class","name":"chatBannedRights","type":"ChatBannedRights","id":2668758040,"comment":"Represents the rights of a normal user in a supergroup/channel/chat. In this case, the flags are inverted: if set, a flag does not allow a user to do X.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"view_messages","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, does not allow a user to view messages in a supergroup/channel/chat"},{"name":"send_messages","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, does not allow a user to send messages in a supergroup/chat"},{"name":"send_media","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, does not allow a user to send any media in a supergroup/chat"},{"name":"send_stickers","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, does not allow a user to send stickers in a supergroup/chat"},{"name":"send_gifs","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, does not allow a user to send gifs in a supergroup/chat"},{"name":"send_games","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, does not allow a user to send games in a supergroup/chat"},{"name":"send_inline","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"If set, does not allow a user to use inline bots in a supergroup/chat."},{"name":"embed_links","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, does not allow a user to embed links in the messages of a supergroup/chat"},{"name":"send_polls","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"If set, does not allow a user to send polls in a supergroup/chat"},{"name":"change_info","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"If set, does not allow any user to change the description of a supergroup/chat"},{"name":"invite_users","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"If set, does not allow any user to invite users in a supergroup/chat"},{"name":"pin_messages","type":"true","typeModifiers":{"predicate":"flags.17"},"comment":"If set, does not allow any user to pin messages in a supergroup/chat"},{"name":"manage_topics","type":"true","typeModifiers":{"predicate":"flags.18"},"comment":"If set, does not allow any user to create, delete or modify forum topics »."},{"name":"send_photos","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"If set, does not allow a user to send photos in a supergroup/chat."},{"name":"send_videos","type":"true","typeModifiers":{"predicate":"flags.20"},"comment":"If set, does not allow a user to send videos in a supergroup/chat."},{"name":"send_roundvideos","type":"true","typeModifiers":{"predicate":"flags.21"},"comment":"If set, does not allow a user to send round videos in a supergroup/chat."},{"name":"send_audios","type":"true","typeModifiers":{"predicate":"flags.22"},"comment":"If set, does not allow a user to send audio files in a supergroup/chat."},{"name":"send_voices","type":"true","typeModifiers":{"predicate":"flags.23"},"comment":"If set, does not allow a user to send voice messages in a supergroup/chat."},{"name":"send_docs","type":"true","typeModifiers":{"predicate":"flags.24"},"comment":"If set, does not allow a user to send documents in a supergroup/chat."},{"name":"send_plain","type":"true","typeModifiers":{"predicate":"flags.25"},"comment":"If set, does not allow a user to send text messages in a supergroup/chat."},{"name":"until_date","type":"int","comment":"Validity of said permissions (it is considered forever any value less then 30 seconds or more then 366 days)."}]},{"kind":"class","name":"inputWallPaper","type":"InputWallPaper","id":3861952889,"comment":"Wallpaper","arguments":[{"name":"id","type":"long","comment":"Wallpaper ID"},{"name":"access_hash","type":"long","comment":"Access hash"}]},{"kind":"class","name":"inputWallPaperSlug","type":"InputWallPaper","id":1913199744,"comment":"Wallpaper by slug (a unique ID, obtained from a wallpaper link »)","arguments":[{"name":"slug","type":"string","comment":"Unique wallpaper ID"}]},{"kind":"class","name":"inputWallPaperNoFile","type":"InputWallPaper","id":2524595758,"comment":"Wallpaper with no file access hash, used for example when deleting (unsave=true) wallpapers using {@link account.RawSaveWallPaperRequest}, specifying just the wallpaper ID.","arguments":[{"name":"id","type":"long","comment":"Wallpaper ID"}]},{"kind":"class","name":"account.wallPapersNotModified","type":"account.WallPapers","id":471437699,"comment":"No new wallpapers were found","arguments":[]},{"kind":"class","name":"account.wallPapers","type":"account.WallPapers","id":3452142988,"comment":"Installed wallpapers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"wallpapers","type":"WallPaper","typeModifiers":{"isVector":true},"comment":"Wallpapers"}]},{"kind":"class","name":"codeSettings","type":"CodeSettings","id":2904898936,"comment":"Settings used by telegram servers for sending the confirm code.\n\nExample implementations: telegram for android, tdlib.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"allow_flashcall","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow phone verification via phone calls."},{"name":"current_number","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Pass true if the phone number is used on the current device. Ignored if allow_flashcall is not set."},{"name":"allow_app_hash","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If a token that will be included in eventually sent SMSs is required: required in newer versions of android, to use the android SMS receiver APIs"},{"name":"allow_missed_call","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this device supports receiving the code using the {@link auth.RawCodeTypeMissedCall} method"},{"name":"allow_firebase","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether Firebase auth is supported"},{"name":"unknown_number","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Set this flag if there is a SIM card in the current device, but it is not possible to check whether the specified phone number matches the SIM's phone number."},{"name":"logout_tokens","type":"bytes","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Previously stored future auth tokens, see the documentation for more info »"},{"name":"token","type":"string","typeModifiers":{"predicate":"flags.8"},"comment":"Used only by official iOS apps for Firebase auth: device token for apple push."},{"name":"app_sandbox","type":"Bool","typeModifiers":{"predicate":"flags.8"},"comment":"Used only by official iOS apps for firebase auth: whether a sandbox-certificate will be used during transmission of the push notification."}]},{"kind":"class","name":"wallPaperSettings","type":"WallPaperSettings","id":925826256,"comment":"Wallpaper rendering information.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blur","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"For image wallpapers »: if set, the JPEG must be downscaled to fit in 450x450 square and then box-blurred with radius 12."},{"name":"motion","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the background needs to be slightly moved when the device is rotated."},{"name":"background_color","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Used for solid », gradient » and freeform gradient » fills."},{"name":"second_background_color","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Used for gradient » and freeform gradient » fills."},{"name":"third_background_color","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"Used for freeform gradient » fills."},{"name":"fourth_background_color","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"Used for freeform gradient » fills."},{"name":"intensity","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Used for pattern wallpapers »."},{"name":"rotation","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Clockwise rotation angle of the gradient, in degrees; 0-359. Should be always divisible by 45."},{"name":"emoticon","type":"string","typeModifiers":{"predicate":"flags.7"},"comment":"If set, this wallpaper can be used as a channel wallpaper and is represented by the specified UTF-8 emoji."}]},{"kind":"class","name":"autoDownloadSettings","type":"AutoDownloadSettings","id":3131405864,"comment":"Autodownload settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"disabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Disable automatic media downloads?"},{"name":"video_preload_large","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to preload the first seconds of videos larger than the specified limit"},{"name":"audio_preload_next","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to preload the next audio track when you're listening to music"},{"name":"phonecalls_less_data","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether to enable data saving mode in phone calls"},{"name":"stories_preload","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether to preload stories; in particular, the first {@link RawDocumentAttributeVideo}.preload_prefix_size bytes of story videos should be preloaded."},{"name":"photo_size_max","type":"int","comment":"Maximum size of photos to preload"},{"name":"video_size_max","type":"int53","comment":"Maximum size of videos to preload"},{"name":"file_size_max","type":"int53","comment":"Maximum size of other files to preload"},{"name":"video_upload_maxbitrate","type":"int","comment":"Maximum suggested bitrate for uploading videos"},{"name":"small_queue_active_operations_max","type":"int","comment":"A limit, specifying the maximum number of files that should be downloaded in parallel from the same DC, for files smaller than 20MB."},{"name":"large_queue_active_operations_max","type":"int","comment":"A limit, specifying the maximum number of files that should be downloaded in parallel from the same DC, for files bigger than 20MB."}]},{"kind":"class","name":"account.autoDownloadSettings","type":"account.AutoDownloadSettings","id":1674235686,"comment":"Media autodownload settings","arguments":[{"name":"low","type":"AutoDownloadSettings","comment":"Low data usage preset"},{"name":"medium","type":"AutoDownloadSettings","comment":"Medium data usage preset"},{"name":"high","type":"AutoDownloadSettings","comment":"High data usage preset"}]},{"kind":"class","name":"emojiKeyword","type":"EmojiKeyword","id":3585325561,"comment":"Emoji keyword","arguments":[{"name":"keyword","type":"string","comment":"Keyword"},{"name":"emoticons","type":"string","typeModifiers":{"isVector":true},"comment":"Emojis associated to keyword"}]},{"kind":"class","name":"emojiKeywordDeleted","type":"EmojiKeyword","id":594408994,"comment":"Deleted emoji keyword","arguments":[{"name":"keyword","type":"string","comment":"Keyword"},{"name":"emoticons","type":"string","typeModifiers":{"isVector":true},"comment":"Emojis that were associated to keyword"}]},{"kind":"class","name":"emojiKeywordsDifference","type":"EmojiKeywordsDifference","id":1556570557,"comment":"Changes to emoji keywords","arguments":[{"name":"lang_code","type":"string","comment":"Language code for keywords"},{"name":"from_version","type":"int","comment":"Previous emoji keyword list version"},{"name":"version","type":"int","comment":"Current version of emoji keyword list"},{"name":"keywords","type":"EmojiKeyword","typeModifiers":{"isVector":true},"comment":"Emojis associated to keywords"}]},{"kind":"class","name":"emojiURL","type":"EmojiURL","id":2775937949,"comment":"An HTTP URL which can be used to automatically log in into translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation","arguments":[{"name":"url","type":"string","comment":"An HTTP URL which can be used to automatically log in into translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation"}]},{"kind":"class","name":"emojiLanguage","type":"EmojiLanguage","id":3019592545,"comment":"Emoji language","arguments":[{"name":"lang_code","type":"string","comment":"Language code"}]},{"kind":"class","name":"folder","type":"Folder","id":4283715173,"comment":"Folder","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"autofill_new_broadcasts","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Automatically add new channels to this folder"},{"name":"autofill_public_groups","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Automatically add joined new public supergroups to this folder"},{"name":"autofill_new_correspondents","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Automatically add new private chats to this folder"},{"name":"id","type":"int","comment":"Folder ID"},{"name":"title","type":"string","comment":"Folder title"},{"name":"photo","type":"ChatPhoto","typeModifiers":{"predicate":"flags.3"},"comment":"Folder picture"}]},{"kind":"class","name":"inputFolderPeer","type":"InputFolderPeer","id":4224893590,"comment":"Peer in a folder","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"}]},{"kind":"class","name":"folderPeer","type":"FolderPeer","id":3921323624,"comment":"Peer in a folder","arguments":[{"name":"peer","type":"Peer","comment":"Folder peer info"},{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"}]},{"kind":"class","name":"messages.searchCounter","type":"messages.SearchCounter","id":3896830975,"comment":"Indicates how many results would be found by a {@link messages.RawSearchRequest} call with the same parameters","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inexact","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, the results may be inexact"},{"name":"filter","type":"MessagesFilter","comment":"Provided message filter"},{"name":"count","type":"int","comment":"Number of results that were found server-side"}]},{"kind":"class","name":"urlAuthResultRequest","type":"UrlAuthResult","id":2463316494,"comment":"Details about the authorization request, for more info click here »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"request_write_access","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the bot would like to send messages to the user"},{"name":"bot","type":"User","comment":"Username of a bot, which will be used for user authorization. If not specified, the current bot's username will be assumed. The url's domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details."},{"name":"domain","type":"string","comment":"The domain name of the website on which the user will log in."}]},{"kind":"class","name":"urlAuthResultAccepted","type":"UrlAuthResult","id":2408320590,"comment":"Details about an accepted authorization request, for more info click here »","arguments":[{"name":"url","type":"string","comment":"The URL name of the website on which the user has logged in."}]},{"kind":"class","name":"urlAuthResultDefault","type":"UrlAuthResult","id":2849430303,"comment":"Details about an accepted authorization request, for more info click here »","arguments":[]},{"kind":"class","name":"channelLocationEmpty","type":"ChannelLocation","id":3216354699,"comment":"No location (normal supergroup)","arguments":[]},{"kind":"class","name":"channelLocation","type":"ChannelLocation","id":547062491,"comment":"Geographical location of supergroup (geogroups)","arguments":[{"name":"geo_point","type":"GeoPoint","comment":"Geographical location of supergroup"},{"name":"address","type":"string","comment":"Textual description of the address"}]},{"kind":"class","name":"peerLocated","type":"PeerLocated","id":3393592157,"comment":"Peer geolocated nearby","arguments":[{"name":"peer","type":"Peer","comment":"Peer"},{"name":"expires","type":"int","comment":"Validity period of current data"},{"name":"distance","type":"int","comment":"Distance from the peer in meters"}]},{"kind":"class","name":"peerSelfLocated","type":"PeerLocated","id":4176226379,"comment":"Current peer","arguments":[{"name":"expires","type":"int","comment":"Expiry of geolocation info for current peer"}]},{"kind":"class","name":"restrictionReason","type":"RestrictionReason","id":3497176244,"comment":"Restriction reason.\n\nContains the reason why access to a certain object must be restricted. Clients are supposed to deny access to the channel if the platform field is equal to all or to the current platform (ios, android, wp, etc.). Platforms can be concatenated (ios-android, ios-wp), unknown platforms are to be ignored. The text is the error message that should be shown to the user.","arguments":[{"name":"platform","type":"string","comment":"Platform identifier (ios, android, wp, all, etc.), can be concatenated with a dash as separator (android-ios, ios-wp, etc)"},{"name":"reason","type":"string","comment":"Restriction reason (porno, terms, etc.)"},{"name":"text","type":"string","comment":"Error message to be shown to the user"}]},{"kind":"class","name":"inputTheme","type":"InputTheme","id":1012306921,"comment":"Theme","arguments":[{"name":"id","type":"long","comment":"ID"},{"name":"access_hash","type":"long","comment":"Access hash"}]},{"kind":"class","name":"inputThemeSlug","type":"InputTheme","id":4119399921,"comment":"Theme by theme ID","arguments":[{"name":"slug","type":"string","comment":"Unique theme ID obtained from a theme deep link »"}]},{"kind":"class","name":"theme","type":"Theme","id":2685298646,"comment":"Theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the current user is the creator of this theme"},{"name":"default","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is the default theme"},{"name":"for_chat","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this theme is meant to be used as a chat theme"},{"name":"id","type":"long","comment":"Theme ID"},{"name":"access_hash","type":"long","comment":"Theme access hash"},{"name":"slug","type":"string","comment":"Unique theme ID"},{"name":"title","type":"string","comment":"Theme name"},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.2"},"comment":"Theme"},{"name":"settings","type":"ThemeSettings","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Theme settings"},{"name":"emoticon","type":"string","typeModifiers":{"predicate":"flags.6"},"comment":"Theme emoji"},{"name":"installs_count","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Installation count"}]},{"kind":"class","name":"account.themesNotModified","type":"account.Themes","id":4095653410,"comment":"No new themes were installed","arguments":[]},{"kind":"class","name":"account.themes","type":"account.Themes","id":2587724909,"comment":"Installed themes","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"themes","type":"Theme","typeModifiers":{"isVector":true},"comment":"Themes"}]},{"kind":"class","name":"auth.loginToken","type":"auth.LoginToken","id":1654593920,"comment":"Login token (for QR code login)","arguments":[{"name":"expires","type":"int","comment":"Expiration date of QR code"},{"name":"token","type":"bytes","comment":"Token to render in QR code"}]},{"kind":"class","name":"auth.loginTokenMigrateTo","type":"auth.LoginToken","id":110008598,"comment":"Repeat the query to the specified DC","arguments":[{"name":"dc_id","type":"int","comment":"DC ID"},{"name":"token","type":"bytes","comment":"Token to use for login"}]},{"kind":"class","name":"auth.loginTokenSuccess","type":"auth.LoginToken","id":957176926,"comment":"Login via token (QR code) succeeded!","arguments":[{"name":"authorization","type":"auth.Authorization","comment":"Authorization info"}]},{"kind":"class","name":"account.contentSettings","type":"account.ContentSettings","id":1474462241,"comment":"Sensitive content settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"sensitive_enabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether viewing of sensitive (NSFW) content is enabled"},{"name":"sensitive_can_change","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the current client can change the sensitive content settings to view NSFW content"}]},{"kind":"class","name":"messages.inactiveChats","type":"messages.InactiveChats","id":2837970629,"comment":"Inactive chat list","arguments":[{"name":"dates","type":"int","typeModifiers":{"isVector":true},"comment":"When was the chat last active"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chat list"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the chat list"}]},{"kind":"class","name":"baseThemeClassic","type":"BaseTheme","id":3282117730,"comment":"Classic theme","arguments":[]},{"kind":"class","name":"baseThemeDay","type":"BaseTheme","id":4225242760,"comment":"Day theme","arguments":[]},{"kind":"class","name":"baseThemeNight","type":"BaseTheme","id":3081969320,"comment":"Night theme","arguments":[]},{"kind":"class","name":"baseThemeTinted","type":"BaseTheme","id":1834973166,"comment":"Tinted theme","arguments":[]},{"kind":"class","name":"baseThemeArctic","type":"BaseTheme","id":1527845466,"comment":"Arctic theme","arguments":[]},{"kind":"class","name":"inputThemeSettings","type":"InputThemeSettings","id":2413711439,"comment":"Theme settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message_colors_animated","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the freeform gradient fill needs to be animated on every sent message"},{"name":"base_theme","type":"BaseTheme","comment":"Default theme on which this theme is based"},{"name":"accent_color","type":"int","comment":"Accent color, ARGB format"},{"name":"outbox_accent_color","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Accent color of outgoing messages in ARGB format"},{"name":"message_colors","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"The fill to be used as a background for outgoing messages, in RGB24 format.
If just one or two equal colors are provided, describes a solid fill of a background.
If two different colors are provided, describes the top and bottom colors of a 0-degree gradient.
If three or four colors are provided, describes a freeform gradient fill of a background."},{"name":"wallpaper","type":"InputWallPaper","typeModifiers":{"predicate":"flags.1"},"comment":"{@link RawInputWallPaper} or {@link RawInputWallPaper} when passing wallpaper files for image or pattern wallpapers, {@link RawInputWallPaperNoFile} with id=0 otherwise."},{"name":"wallpaper_settings","type":"WallPaperSettings","typeModifiers":{"predicate":"flags.1"},"comment":"Wallpaper settings."}]},{"kind":"class","name":"themeSettings","type":"ThemeSettings","id":4200117972,"comment":"Theme settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message_colors_animated","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the freeform gradient fill needs to be animated on every sent message."},{"name":"base_theme","type":"BaseTheme","comment":"Base theme"},{"name":"accent_color","type":"int","comment":"Accent color, ARGB format"},{"name":"outbox_accent_color","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Accent color of outgoing messages in ARGB format"},{"name":"message_colors","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"The fill to be used as a background for outgoing messages, in RGB24 format.
If just one or two equal colors are provided, describes a solid fill of a background.
If two different colors are provided, describes the top and bottom colors of a 0-degree gradient.
If three or four colors are provided, describes a freeform gradient fill of a background."},{"name":"wallpaper","type":"WallPaper","typeModifiers":{"predicate":"flags.1"},"comment":"Wallpaper"}]},{"kind":"class","name":"webPageAttributeTheme","type":"WebPageAttribute","id":1421174295,"comment":"Page theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"documents","type":"Document","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Theme files"},{"name":"settings","type":"ThemeSettings","typeModifiers":{"predicate":"flags.1"},"comment":"Theme settings"}]},{"kind":"class","name":"webPageAttributeStory","type":"WebPageAttribute","id":781501415,"comment":"Webpage preview of a Telegram story","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"Peer that posted the story"},{"name":"id","type":"int","comment":"Story ID"},{"name":"story","type":"StoryItem","typeModifiers":{"predicate":"flags.0"},"comment":"May contain the story, if not the story should be fetched when and if needed using {@link stories.RawGetStoriesByIDRequest} with the above id and peer."}]},{"kind":"class","name":"webPageAttributeStickerSet","type":"WebPageAttribute","id":1355547603,"comment":"Contains info about a stickerset », for a {@link RawWebPage} preview of a stickerset deep link » (the {@link RawWebPage} will have a type of telegram_stickerset).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this i s a custom emoji stickerset."},{"name":"text_color","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the color of this TGS custom emoji stickerset should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context."},{"name":"stickers","type":"Document","typeModifiers":{"isVector":true},"comment":"A subset of the stickerset in the stickerset."}]},{"kind":"class","name":"messages.votesList","type":"messages.VotesList","id":1218005070,"comment":"How users voted in a poll","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of votes for all options (or only for the chosen option, if provided to {@link messages.RawGetPollVotesRequest})"},{"name":"votes","type":"MessagePeerVote","typeModifiers":{"isVector":true},"comment":"Vote info for each user"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about users that voted in the poll"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset to use with the next {@link messages.RawGetPollVotesRequest} request, empty string if no more results are available."}]},{"kind":"class","name":"bankCardOpenUrl","type":"BankCardOpenUrl","id":4117234314,"comment":"Credit card info URL provided by the bank","arguments":[{"name":"url","type":"string","comment":"Info URL"},{"name":"name","type":"string","comment":"Bank name"}]},{"kind":"class","name":"payments.bankCardData","type":"payments.BankCardData","id":1042605427,"comment":"Credit card info, provided by the card's bank(s)","arguments":[{"name":"title","type":"string","comment":"Credit card title"},{"name":"open_urls","type":"BankCardOpenUrl","typeModifiers":{"isVector":true},"comment":"Info URL(s) provided by the card's bank(s)"}]},{"kind":"class","name":"dialogFilter","type":"DialogFilter","id":1605718587,"comment":"Dialog filter AKA folder","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to include all contacts in this folder"},{"name":"non_contacts","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to include all non-contacts in this folder"},{"name":"groups","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to include all groups in this folder"},{"name":"broadcasts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether to include all channels in this folder"},{"name":"bots","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether to include all bots in this folder"},{"name":"exclude_muted","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether to exclude muted chats from this folder"},{"name":"exclude_read","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether to exclude read chats from this folder"},{"name":"exclude_archived","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether to exclude archived chats from this folder"},{"name":"id","type":"int","comment":"Folder ID"},{"name":"title","type":"string","comment":"Folder name (max 12 UTF-8 chars)"},{"name":"emoticon","type":"string","typeModifiers":{"predicate":"flags.25"},"comment":"Emoji to use as icon for the folder."},{"name":"color","type":"int","typeModifiers":{"predicate":"flags.27"},"comment":"A color ID for the folder tag associated to this folder, see here » for more info."},{"name":"pinned_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Pinned chats, folders can have unlimited pinned chats"},{"name":"include_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Include the following chats in this folder"},{"name":"exclude_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Exclude the following chats from this folder"}]},{"kind":"class","name":"dialogFilterDefault","type":"DialogFilter","id":909284270,"comment":"Used only when reordering folders to indicate the default (all chats) folder.","arguments":[]},{"kind":"class","name":"dialogFilterChatlist","type":"DialogFilter","id":2682424996,"comment":"A folder imported using a chat folder deep link ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_my_invites","type":"true","typeModifiers":{"predicate":"flags.26"},"comment":"Whether the current user has created some chat folder deep links » to share the folder as well."},{"name":"id","type":"int","comment":"ID of the folder"},{"name":"title","type":"string","comment":"Name of the folder (max 12 UTF-8 chars)"},{"name":"emoticon","type":"string","typeModifiers":{"predicate":"flags.25"},"comment":"Emoji to use as icon for the folder."},{"name":"color","type":"int","typeModifiers":{"predicate":"flags.27"},"comment":"A color ID for the folder tag associated to this folder, see here » for more info."},{"name":"pinned_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Pinned chats, folders can have unlimited pinned chats"},{"name":"include_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Chats to include in the folder"}]},{"kind":"class","name":"dialogFilterSuggested","type":"DialogFilterSuggested","id":2004110666,"comment":"Suggested folders","arguments":[{"name":"filter","type":"DialogFilter","comment":"Folder info"},{"name":"description","type":"string","comment":"Folder description"}]},{"kind":"class","name":"statsDateRangeDays","type":"StatsDateRangeDays","id":3057118639,"comment":"Channel statistics date range","arguments":[{"name":"min_date","type":"int","comment":"Initial date"},{"name":"max_date","type":"int","comment":"Final date"}]},{"kind":"class","name":"statsAbsValueAndPrev","type":"StatsAbsValueAndPrev","id":3410210014,"comment":"Statistics value couple; initial and final value for period of time currently in consideration","arguments":[{"name":"current","type":"double","comment":"Current value"},{"name":"previous","type":"double","comment":"Previous value"}]},{"kind":"class","name":"statsPercentValue","type":"StatsPercentValue","id":3419287520,"comment":"Channel statistics percentage.
\nCompute the percentage simply by doing part * total / 100","arguments":[{"name":"part","type":"double","comment":"Partial value"},{"name":"total","type":"double","comment":"Total value"}]},{"kind":"class","name":"statsGraphAsync","type":"StatsGraph","id":1244130093,"comment":"This channel statistics graph must be generated asynchronously using {@link stats.RawLoadAsyncGraphRequest} to reduce server load","arguments":[{"name":"token","type":"string","comment":"Token to use for fetching the async graph"}]},{"kind":"class","name":"statsGraphError","type":"StatsGraph","id":3202127906,"comment":"An error occurred while generating the statistics graph","arguments":[{"name":"error","type":"string","comment":"The error"}]},{"kind":"class","name":"statsGraph","type":"StatsGraph","id":2393138358,"comment":"Channel statistics graph","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"json","type":"DataJSON","comment":"Statistics data"},{"name":"zoom_token","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Zoom token"}]},{"kind":"class","name":"stats.broadcastStats","type":"stats.BroadcastStats","id":963421692,"comment":"Channel statistics.","arguments":[{"name":"period","type":"StatsDateRangeDays","comment":"Period in consideration"},{"name":"followers","type":"StatsAbsValueAndPrev","comment":"Follower count change for period in consideration"},{"name":"views_per_post","type":"StatsAbsValueAndPrev","comment":"total_viewcount/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)."},{"name":"shares_per_post","type":"StatsAbsValueAndPrev","comment":"total_sharecount/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)"},{"name":"reactions_per_post","type":"StatsAbsValueAndPrev","comment":"total_reactions/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)"},{"name":"views_per_story","type":"StatsAbsValueAndPrev","comment":"total_views/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)"},{"name":"shares_per_story","type":"StatsAbsValueAndPrev","comment":"total_shares/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)"},{"name":"reactions_per_story","type":"StatsAbsValueAndPrev","comment":"total_reactions/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)"},{"name":"enabled_notifications","type":"StatsPercentValue","comment":"Percentage of subscribers with enabled notifications"},{"name":"growth_graph","type":"StatsGraph","comment":"Channel growth graph (absolute subscriber count)"},{"name":"followers_graph","type":"StatsGraph","comment":"Followers growth graph (relative subscriber count)"},{"name":"mute_graph","type":"StatsGraph","comment":"Muted users graph (relative)"},{"name":"top_hours_graph","type":"StatsGraph","comment":"Views per hour graph (absolute)"},{"name":"interactions_graph","type":"StatsGraph","comment":"Interactions graph (absolute)"},{"name":"iv_interactions_graph","type":"StatsGraph","comment":"IV interactions graph (absolute)"},{"name":"views_by_source_graph","type":"StatsGraph","comment":"Views by source graph (absolute)"},{"name":"new_followers_by_source_graph","type":"StatsGraph","comment":"New followers by source graph (absolute)"},{"name":"languages_graph","type":"StatsGraph","comment":"Subscriber language graph (pie chart)"},{"name":"reactions_by_emotion_graph","type":"StatsGraph","comment":"A graph containing the number of reactions on posts categorized by emotion"},{"name":"story_interactions_graph","type":"StatsGraph","comment":"A graph containing the number of story views and shares"},{"name":"story_reactions_by_emotion_graph","type":"StatsGraph","comment":"A graph containing the number of reactions on stories categorized by emotion"},{"name":"recent_posts_interactions","type":"PostInteractionCounters","typeModifiers":{"isVector":true},"comment":"Detailed statistics about number of views and shares of recently sent messages and stories"}]},{"kind":"class","name":"help.promoDataEmpty","type":"help.PromoData","id":2566302837,"comment":"No PSA/MTProxy info is available","arguments":[{"name":"expires","type":"int","comment":"Re-fetch PSA/MTProxy info after the specified number of seconds"}]},{"kind":"class","name":"help.promoData","type":"help.PromoData","id":2352576831,"comment":"MTProxy/Public Service Announcement information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"proxy","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"MTProxy-related channel"},{"name":"expires","type":"int","comment":"Expiry of PSA/MTProxy info"},{"name":"peer","type":"Peer","comment":"MTProxy/PSA peer"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chat info"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"User info"},{"name":"psa_type","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"PSA type"},{"name":"psa_message","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"PSA message"}]},{"kind":"class","name":"videoSize","type":"VideoSize","id":3727929492,"comment":"An animated profile picture in MPEG4 format","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"type","type":"string","comment":"u for animated profile pictures, and v for trimmed and downscaled video previews"},{"name":"w","type":"int","comment":"Video width"},{"name":"h","type":"int","comment":"Video height"},{"name":"size","type":"int","comment":"File size"},{"name":"video_start_ts","type":"double","typeModifiers":{"predicate":"flags.0"},"comment":"Timestamp that should be shown as static preview to the user (seconds)"}]},{"kind":"class","name":"videoSizeEmojiMarkup","type":"VideoSize","id":4166795580,"comment":"An animated profile picture based on a custom emoji sticker.","arguments":[{"name":"emoji_id","type":"long","comment":"Custom emoji ID: the custom emoji sticker is shown at the center of the profile picture and occupies at most 67% of it."},{"name":"background_colors","type":"int","typeModifiers":{"isVector":true},"comment":"1, 2, 3 or 4 RBG-24 colors used to generate a solid (1), gradient (2) or freeform gradient (3, 4) background, similar to how fill wallpapers are generated. The rotation angle for gradient backgrounds is 0."}]},{"kind":"class","name":"videoSizeStickerMarkup","type":"VideoSize","id":228623102,"comment":"An animated profile picture based on a sticker.","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset"},{"name":"sticker_id","type":"long","comment":"Sticker ID"},{"name":"background_colors","type":"int","typeModifiers":{"isVector":true},"comment":"1, 2, 3 or 4 RBG-24 colors used to generate a solid (1), gradient (2) or freeform gradient (3, 4) background, similar to how fill wallpapers are generated. The rotation angle for gradient backgrounds is 0."}]},{"kind":"class","name":"statsGroupTopPoster","type":"StatsGroupTopPoster","id":2634330011,"comment":"Information about an active user in a supergroup","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"messages","type":"int","comment":"Number of messages for statistics period in consideration"},{"name":"avg_chars","type":"int","comment":"Average number of characters per message"}]},{"kind":"class","name":"statsGroupTopAdmin","type":"StatsGroupTopAdmin","id":3612888199,"comment":"Information about an active admin in a supergroup","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"deleted","type":"int","comment":"Number of deleted messages for statistics period in consideration"},{"name":"kicked","type":"int","comment":"Number of kicked users for statistics period in consideration"},{"name":"banned","type":"int","comment":"Number of banned users for statistics period in consideration"}]},{"kind":"class","name":"statsGroupTopInviter","type":"StatsGroupTopInviter","id":1398765469,"comment":"Information about an active supergroup inviter","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"invitations","type":"int","comment":"Number of invitations for statistics period in consideration"}]},{"kind":"class","name":"stats.megagroupStats","type":"stats.MegagroupStats","id":4018141462,"comment":"Supergroup statistics","arguments":[{"name":"period","type":"StatsDateRangeDays","comment":"Period in consideration"},{"name":"members","type":"StatsAbsValueAndPrev","comment":"Member count change for period in consideration"},{"name":"messages","type":"StatsAbsValueAndPrev","comment":"Message number change for period in consideration"},{"name":"viewers","type":"StatsAbsValueAndPrev","comment":"Number of users that viewed messages, for range in consideration"},{"name":"posters","type":"StatsAbsValueAndPrev","comment":"Number of users that posted messages, for range in consideration"},{"name":"growth_graph","type":"StatsGraph","comment":"Supergroup growth graph (absolute subscriber count)"},{"name":"members_graph","type":"StatsGraph","comment":"Members growth (relative subscriber count)"},{"name":"new_members_by_source_graph","type":"StatsGraph","comment":"New members by source graph"},{"name":"languages_graph","type":"StatsGraph","comment":"Subscriber language graph (pie chart)"},{"name":"messages_graph","type":"StatsGraph","comment":"Message activity graph (stacked bar graph, message type)"},{"name":"actions_graph","type":"StatsGraph","comment":"Group activity graph (deleted, modified messages, blocked users)"},{"name":"top_hours_graph","type":"StatsGraph","comment":"Activity per hour graph (absolute)"},{"name":"weekdays_graph","type":"StatsGraph","comment":"Activity per day of week graph (absolute)"},{"name":"top_posters","type":"StatsGroupTopPoster","typeModifiers":{"isVector":true},"comment":"Info about most active group members"},{"name":"top_admins","type":"StatsGroupTopAdmin","typeModifiers":{"isVector":true},"comment":"Info about most active group admins"},{"name":"top_inviters","type":"StatsGroupTopInviter","typeModifiers":{"isVector":true},"comment":"Info about most active group inviters"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about users mentioned in statistics"}]},{"kind":"class","name":"globalPrivacySettings","type":"GlobalPrivacySettings","id":1934380235,"comment":"Global privacy settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"archive_and_mute_new_noncontact_peers","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to archive and mute new chats from non-contacts"},{"name":"keep_archived_unmuted","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether unmuted chats will be kept in the Archive chat list when they get a new message."},{"name":"keep_archived_folders","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether unmuted chats that are always included or pinned in a folder, will be kept in the Archive chat list when they get a new message. Ignored if keep_archived_unmuted is set."},{"name":"hide_read_marks","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If this flag is set, the {@link RawInputPrivacyKeyStatusTimestamp} key will also apply to the ability to use {@link messages.RawGetOutboxReadDateRequest} on messages sent to us.
Meaning, users that cannot see our exact last online date due to the current value of the {@link RawInputPrivacyKeyStatusTimestamp} key will receive a 403 USER_PRIVACY_RESTRICTED error when invoking {@link messages.RawGetOutboxReadDateRequest} to fetch the exact read date of a message they sent to us.
The {@link RawUserFull}.read_dates_private flag will be set for users that have this flag enabled."},{"name":"new_noncontact_peers_require_premium","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, only users that have a premium account, are in our contact list, or already have a private chat with us can write to us; a 403 PRIVACY_PREMIUM_REQUIRED error will be emitted otherwise.
The {@link RawUserFull}.contact_require_premium flag will be set for users that have this flag enabled.
To check whether we can write to a user with this flag enabled, if we haven't yet cached all the required information (for example we don't have the {@link RawUserFull} or history of all users while displaying the chat list in the sharing UI) the {@link users.RawGetIsPremiumRequiredToContactRequest} method may be invoked, passing the list of users currently visible in the UI, returning a list of booleans that directly specify whether we can or cannot write to each user.
Premium users only, non-Premium users will receive a PREMIUM_ACCOUNT_REQUIRED error when trying to enable this flag."}]},{"kind":"class","name":"help.countryCode","type":"help.CountryCode","id":1107543535,"comment":"Country code and phone number pattern of a specific country","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"country_code","type":"string","comment":"ISO country code"},{"name":"prefixes","type":"string","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Possible phone prefixes"},{"name":"patterns","type":"string","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Phone patterns: for example, XXX XXX XXX"}]},{"kind":"class","name":"help.country","type":"help.Country","id":3280440867,"comment":"Name, ISO code, localized name and phone codes/patterns of a specific country","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"hidden","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this country should not be shown in the list"},{"name":"iso2","type":"string","comment":"ISO code of country"},{"name":"default_name","type":"string","comment":"Name of the country in the country's language"},{"name":"name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Name of the country in the user's language, if different from the original name"},{"name":"country_codes","type":"help.CountryCode","typeModifiers":{"isVector":true},"comment":"Phone codes/patterns"}]},{"kind":"class","name":"help.countriesListNotModified","type":"help.CountriesList","id":2479628082,"comment":"The country list has not changed","arguments":[]},{"kind":"class","name":"help.countriesList","type":"help.CountriesList","id":2278585758,"comment":"Name, ISO code, localized name and phone codes/patterns of all available countries","arguments":[{"name":"countries","type":"help.Country","typeModifiers":{"isVector":true},"comment":"Name, ISO code, localized name and phone codes/patterns of all available countries"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"}]},{"kind":"class","name":"messageViews","type":"MessageViews","id":1163625789,"comment":"View, forward counter + info about replies of a specific message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"views","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"View count of message"},{"name":"forwards","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Forward count of message"},{"name":"replies","type":"MessageReplies","typeModifiers":{"predicate":"flags.2"},"comment":"Reply and thread information of message"}]},{"kind":"class","name":"messages.messageViews","type":"messages.MessageViews","id":3066361155,"comment":"View, forward counter + info about replies","arguments":[{"name":"views","type":"MessageViews","typeModifiers":{"isVector":true},"comment":"View, forward counter + info about replies"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in constructor"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in constructor"}]},{"kind":"class","name":"messages.discussionMessage","type":"messages.DiscussionMessage","id":2788431746,"comment":"Information about a message thread","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"The messages from which the thread starts. The messages are returned in reverse chronological order (i.e., in order of decreasing message ID)."},{"name":"max_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Message ID of latest reply in this thread"},{"name":"read_inbox_max_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Message ID of latest read incoming message in this thread"},{"name":"read_outbox_max_id","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Message ID of latest read outgoing message in this thread"},{"name":"unread_count","type":"int","comment":"Number of unread messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in constructor"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in constructor"}]},{"kind":"class","name":"messageReplyHeader","type":"MessageReplyHeader","id":2948336091,"comment":"Message replies and thread information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reply_to_scheduled","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"This is a reply to a scheduled message."},{"name":"forum_topic","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this message was sent in a forum topic (except for the General topic)."},{"name":"quote","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether this message is quoting a part of another message."},{"name":"reply_to_msg_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"ID of message to which this message is replying"},{"name":"reply_to_peer_id","type":"Peer","typeModifiers":{"predicate":"flags.0"},"comment":"For replies sent in channel discussion threads of which the current user is not a member, the discussion group ID"},{"name":"reply_from","type":"MessageFwdHeader","typeModifiers":{"predicate":"flags.5"},"comment":"When replying to a message sent by a certain peer to another chat, contains info about the peer that originally sent the message to that other chat."},{"name":"reply_media","type":"MessageMedia","typeModifiers":{"predicate":"flags.8"},"comment":"When replying to a media sent by a certain peer to another chat, contains the media of the replied-to message."},{"name":"reply_to_top_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"ID of the message that started this message thread"},{"name":"quote_text","type":"string","typeModifiers":{"predicate":"flags.6"},"comment":"Used to quote-reply to only a certain section (specified here) of the original message."},{"name":"quote_entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.7","isVector":true},"comment":"Message entities for styled text from the quote_text field."},{"name":"quote_offset","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Offset of the message quote_text within the original message (in UTF-16 code units)."}]},{"kind":"class","name":"messageReplyStoryHeader","type":"MessageReplyHeader","id":240843065,"comment":"Represents a reply to a story","arguments":[{"name":"peer","type":"Peer","comment":"Sender of the story."},{"name":"story_id","type":"int","comment":"Story ID"}]},{"kind":"class","name":"messageReplies","type":"MessageReplies","id":2211844034,"comment":"Info about the comment section of a channel post, or a simple message thread","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"comments","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this constructor contains information about the comment section of a channel post, or a simple message thread"},{"name":"replies","type":"int","comment":"Contains the total number of replies in this thread or comment section."},{"name":"replies_pts","type":"int","comment":"PTS of the message that started this thread."},{"name":"recent_repliers","type":"Peer","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"For channel post comments, contains information about the last few comment posters for a specific thread, to show a small list of commenter profile pictures in client previews."},{"name":"channel_id","type":"int53","typeModifiers":{"predicate":"flags.0"},"comment":"For channel post comments, contains the ID of the associated discussion supergroup"},{"name":"max_id","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"ID of the latest message in this thread or comment section."},{"name":"read_max_id","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Contains the ID of the latest read message in this thread or comment section."}]},{"kind":"class","name":"peerBlocked","type":"PeerBlocked","id":3908927508,"comment":"Information about a blocked peer","arguments":[{"name":"peer_id","type":"Peer","comment":"Peer ID"},{"name":"date","type":"int","comment":"When was the peer blocked"}]},{"kind":"class","name":"stats.messageStats","type":"stats.MessageStats","id":2145983508,"comment":"Message statistics","arguments":[{"name":"views_graph","type":"StatsGraph","comment":"Message view graph"},{"name":"reactions_by_emotion_graph","type":"StatsGraph","comment":"A graph containing the number of reactions on stories categorized by emotion"}]},{"kind":"class","name":"groupCallDiscarded","type":"GroupCall","id":2004925620,"comment":"An ended group call","arguments":[{"name":"id","type":"long","comment":"Group call ID"},{"name":"access_hash","type":"long","comment":"Group call access hash"},{"name":"duration","type":"int","comment":"Group call duration"}]},{"kind":"class","name":"groupCall","type":"GroupCall","id":3583468812,"comment":"Info about a group call or livestream","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"join_muted","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the user should be muted upon joining the call"},{"name":"can_change_join_muted","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the current user can change the value of the join_muted flag using {@link phone.RawToggleGroupCallSettingsRequest}"},{"name":"join_date_asc","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Specifies the ordering to use when locally sorting by date and displaying in the UI group call participants."},{"name":"schedule_start_subscribed","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Whether we subscribed to the scheduled call"},{"name":"can_start_video","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether you can start streaming video into the call"},{"name":"record_video_active","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether the group call is currently being recorded"},{"name":"rtmp_stream","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether RTMP streams are allowed"},{"name":"listeners_hidden","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether the listeners list is hidden and cannot be fetched using {@link phone.RawGetGroupParticipantsRequest}. The phone.groupParticipants.count and groupCall.participants_count counters will still include listeners."},{"name":"id","type":"long","comment":"Group call ID"},{"name":"access_hash","type":"long","comment":"Group call access hash"},{"name":"participants_count","type":"int","comment":"Participant count"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Group call title"},{"name":"stream_dc_id","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"DC ID to be used for livestream chunks"},{"name":"record_start_date","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"When was the recording started"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.7"},"comment":"When is the call scheduled to start"},{"name":"unmuted_video_count","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Number of people currently streaming video into the call"},{"name":"unmuted_video_limit","type":"int","comment":"Maximum number of people allowed to stream video into the call"},{"name":"version","type":"int","comment":"Version"}]},{"kind":"class","name":"inputGroupCall","type":"InputGroupCall","id":3635053583,"comment":"Points to a specific group call","arguments":[{"name":"id","type":"long","comment":"Group call ID"},{"name":"access_hash","type":"long","comment":"Group call access hash"}]},{"kind":"class","name":"groupCallParticipant","type":"GroupCallParticipant","id":3953538814,"comment":"Info about a group call participant","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"muted","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the participant is muted"},{"name":"left","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the participant has left"},{"name":"can_self_unmute","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the participant can unmute themselves"},{"name":"just_joined","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether the participant has just joined"},{"name":"versioned","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, and {@link RawUpdateGroupCallParticipants}.version < locally stored call.version, info about this participant should be ignored. If (...), and {@link RawUpdateGroupCallParticipants}.version > call.version+1, the participant list should be refetched using {@link phone.RawGetGroupParticipantsRequest}."},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"If not set, the volume and muted_by_you fields can be safely used to overwrite locally cached information; otherwise, volume will contain valid information only if volume_by_admin is set both in the cache and in the received constructor."},{"name":"muted_by_you","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Whether this participant was muted by the current user"},{"name":"volume_by_admin","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Whether our volume can only changed by an admin"},{"name":"self","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether this participant is the current user"},{"name":"video_joined","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Whether this participant is currently broadcasting video"},{"name":"peer","type":"Peer","comment":"Peer information"},{"name":"date","type":"int","comment":"When did this participant join the group call"},{"name":"active_date","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"When was this participant last active in the group call"},{"name":"source","type":"int","comment":"Source ID"},{"name":"volume","type":"int","typeModifiers":{"predicate":"flags.7"},"comment":"Volume, if not set the volume is set to 100%."},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.11"},"comment":"Info about this participant"},{"name":"raise_hand_rating","type":"long","typeModifiers":{"predicate":"flags.13"},"comment":"Specifies the UI visualization order of peers with raised hands: peers with a higher rating should be showed first in the list."},{"name":"video","type":"GroupCallParticipantVideo","typeModifiers":{"predicate":"flags.6"},"comment":"Info about the video stream the participant is currently broadcasting"},{"name":"presentation","type":"GroupCallParticipantVideo","typeModifiers":{"predicate":"flags.14"},"comment":"Info about the screen sharing stream the participant is currently broadcasting"}]},{"kind":"class","name":"phone.groupCall","type":"phone.GroupCall","id":2658302637,"comment":"Contains info about a group call, and partial info about its participants.","arguments":[{"name":"call","type":"GroupCall","comment":"Info about the group call"},{"name":"participants","type":"GroupCallParticipant","typeModifiers":{"isVector":true},"comment":"A partial list of participants."},{"name":"participants_next_offset","type":"string","comment":"Next offset to use when fetching the remaining participants using {@link phone.RawGetGroupParticipantsRequest}"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in the participants vector"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the participants vector"}]},{"kind":"class","name":"phone.groupParticipants","type":"phone.GroupParticipants","id":4101460406,"comment":"Info about the participants of a group call or livestream","arguments":[{"name":"count","type":"int","comment":"Number of participants"},{"name":"participants","type":"GroupCallParticipant","typeModifiers":{"isVector":true},"comment":"List of participants"},{"name":"next_offset","type":"string","comment":"If not empty, the specified list of participants is partial, and more participants can be fetched specifying this parameter as offset in {@link phone.RawGetGroupParticipantsRequest}."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"},{"name":"version","type":"int","comment":"Version info"}]},{"kind":"class","name":"inlineQueryPeerTypeSameBotPM","type":"InlineQueryPeerType","id":813821341,"comment":"Peer type: private chat with the bot itself","arguments":[]},{"kind":"class","name":"inlineQueryPeerTypePM","type":"InlineQueryPeerType","id":2201751468,"comment":"Peer type: private chat","arguments":[]},{"kind":"class","name":"inlineQueryPeerTypeChat","type":"InlineQueryPeerType","id":3613836554,"comment":"Peer type: chat","arguments":[]},{"kind":"class","name":"inlineQueryPeerTypeMegagroup","type":"InlineQueryPeerType","id":1589952067,"comment":"Peer type: supergroup","arguments":[]},{"kind":"class","name":"inlineQueryPeerTypeBroadcast","type":"InlineQueryPeerType","id":1664413338,"comment":"Peer type: channel","arguments":[]},{"kind":"class","name":"inlineQueryPeerTypeBotPM","type":"InlineQueryPeerType","id":238759180,"comment":"Peer type: private chat with a bot.","arguments":[]},{"kind":"class","name":"messages.historyImport","type":"messages.HistoryImport","id":375566091,"comment":"ID of a specific chat import session, click here for more info ».","arguments":[{"name":"id","type":"long","comment":"History import ID"}]},{"kind":"class","name":"messages.historyImportParsed","type":"messages.HistoryImportParsed","id":1578088377,"comment":"Contains information about a chat export file generated by a foreign chat app, click here for more info.
\nIf neither the pm or group flags are set, the specified chat export was generated from a chat of unknown type.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pm","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"The chat export file was generated from a private chat."},{"name":"group","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"The chat export file was generated from a group chat."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Title of the chat."}]},{"kind":"class","name":"messages.affectedFoundMessages","type":"messages.AffectedFoundMessages","id":4019011180,"comment":"Messages found and affected by changes","arguments":[{"name":"pts","type":"int","comment":"Event count after generation"},{"name":"pts_count","type":"int","comment":"Number of events that were generated"},{"name":"offset","type":"int","comment":"If bigger than zero, the request must be repeated to remove more messages"},{"name":"messages","type":"int","typeModifiers":{"isVector":true},"comment":"Affected message IDs"}]},{"kind":"class","name":"chatInviteImporter","type":"ChatInviteImporter","id":2354765785,"comment":"When and which user joined the chat using a chat invite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"requested","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this user currently has a pending join request »"},{"name":"via_chatlist","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"The participant joined by importing a chat folder deep link »."},{"name":"user_id","type":"int53","comment":"The user"},{"name":"date","type":"int","comment":"When did the user join"},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"For users with pending requests, contains bio of the user that requested to join"},{"name":"approved_by","type":"int53","typeModifiers":{"predicate":"flags.1"},"comment":"The administrator that approved the join request » of the user"}]},{"kind":"class","name":"messages.exportedChatInvites","type":"messages.ExportedChatInvites","id":3183881676,"comment":"Info about chat invites exported by a certain admin.","arguments":[{"name":"count","type":"int","comment":"Number of invites exported by the admin"},{"name":"invites","type":"ExportedChatInvite","typeModifiers":{"isVector":true},"comment":"Exported invites"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about the admin"}]},{"kind":"class","name":"messages.exportedChatInvite","type":"messages.ExportedChatInvite","id":410107472,"comment":"Info about a chat invite","arguments":[{"name":"invite","type":"ExportedChatInvite","comment":"Info about the chat invite"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.exportedChatInviteReplaced","type":"messages.ExportedChatInvite","id":572915951,"comment":"The specified chat invite was replaced with another one","arguments":[{"name":"invite","type":"ExportedChatInvite","comment":"The replaced chat invite"},{"name":"new_invite","type":"ExportedChatInvite","comment":"The invite that replaces the previous invite"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.chatInviteImporters","type":"messages.ChatInviteImporters","id":2176233482,"comment":"Info about the users that joined the chat using a specific chat invite","arguments":[{"name":"count","type":"int","comment":"Number of users that joined"},{"name":"importers","type":"ChatInviteImporter","typeModifiers":{"isVector":true},"comment":"The users that joined"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"The users that joined"}]},{"kind":"class","name":"chatAdminWithInvites","type":"ChatAdminWithInvites","id":4075613987,"comment":"Info about chat invites generated by admins.","arguments":[{"name":"admin_id","type":"int53","comment":"The admin"},{"name":"invites_count","type":"int","comment":"Number of invites generated by the admin"},{"name":"revoked_invites_count","type":"int","comment":"Number of revoked invites"}]},{"kind":"class","name":"messages.chatAdminsWithInvites","type":"messages.ChatAdminsWithInvites","id":3063640791,"comment":"Info about chat invites generated by admins.","arguments":[{"name":"admins","type":"ChatAdminWithInvites","typeModifiers":{"isVector":true},"comment":"Info about chat invites generated by admins."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.checkedHistoryImportPeer","type":"messages.CheckedHistoryImportPeer","id":2723014423,"comment":"Contains a confirmation text to be shown to the user, upon importing chat history, click here for more info ».","arguments":[{"name":"confirm_text","type":"string","comment":"A confirmation text to be shown to the user, upon importing chat history »."}]},{"kind":"class","name":"phone.joinAsPeers","type":"phone.JoinAsPeers","id":2951045695,"comment":"A list of peers that can be used to join a group call, presenting yourself as a specific user/channel.","arguments":[{"name":"peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"Peers"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in the peers vector"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the peers vector"}]},{"kind":"class","name":"phone.exportedGroupCallInvite","type":"phone.ExportedGroupCallInvite","id":541839704,"comment":"An invite to a group call or livestream","arguments":[{"name":"link","type":"string","comment":"Invite link"}]},{"kind":"class","name":"groupCallParticipantVideoSourceGroup","type":"GroupCallParticipantVideoSourceGroup","id":3702593719,"comment":"Describes a group of video synchronization source identifiers","arguments":[{"name":"semantics","type":"string","comment":"SDP semantics"},{"name":"sources","type":"int","typeModifiers":{"isVector":true},"comment":"Source IDs"}]},{"kind":"class","name":"groupCallParticipantVideo","type":"GroupCallParticipantVideo","id":1735736008,"comment":"Info about a video stream","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"paused","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the stream is currently paused"},{"name":"endpoint","type":"string","comment":"Endpoint"},{"name":"source_groups","type":"GroupCallParticipantVideoSourceGroup","typeModifiers":{"isVector":true},"comment":"Source groups"},{"name":"audio_source","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Audio source ID"}]},{"kind":"class","name":"stickers.suggestedShortName","type":"stickers.SuggestedShortName","id":2248056895,"comment":"A suggested short name for a stickerpack","arguments":[{"name":"short_name","type":"string","comment":"Suggested short name"}]},{"kind":"class","name":"botCommandScopeDefault","type":"BotCommandScope","id":795652779,"comment":"The commands will be valid in all dialogs","arguments":[]},{"kind":"class","name":"botCommandScopeUsers","type":"BotCommandScope","id":1011811544,"comment":"The specified bot commands will only be valid in all private chats with users.","arguments":[]},{"kind":"class","name":"botCommandScopeChats","type":"BotCommandScope","id":1877059713,"comment":"The specified bot commands will be valid in all groups and supergroups.","arguments":[]},{"kind":"class","name":"botCommandScopeChatAdmins","type":"BotCommandScope","id":3114950762,"comment":"The specified bot commands will be valid only for chat administrators, in all groups and supergroups.","arguments":[]},{"kind":"class","name":"botCommandScopePeer","type":"BotCommandScope","id":3684534653,"comment":"The specified bot commands will be valid only in a specific dialog.","arguments":[{"name":"peer","type":"InputPeer","comment":"The dialog"}]},{"kind":"class","name":"botCommandScopePeerAdmins","type":"BotCommandScope","id":1071145937,"comment":"The specified bot commands will be valid for all admins of the specified group or supergroup.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat"}]},{"kind":"class","name":"botCommandScopePeerUser","type":"BotCommandScope","id":169026035,"comment":"The specified bot commands will be valid only for a specific user in the specified group or supergroup.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat"},{"name":"user_id","type":"InputUser","comment":"The user"}]},{"kind":"class","name":"account.resetPasswordFailedWait","type":"account.ResetPasswordResult","id":3816265825,"comment":"You recently requested a password reset that was canceled, please wait until the specified date before requesting another reset.","arguments":[{"name":"retry_date","type":"int","comment":"Wait until this date before requesting another reset."}]},{"kind":"class","name":"account.resetPasswordRequestedWait","type":"account.ResetPasswordResult","id":3924819069,"comment":"You successfully requested a password reset, please wait until the specified date before finalizing the reset.","arguments":[{"name":"until_date","type":"int","comment":"Wait until this date before finalizing the reset."}]},{"kind":"class","name":"account.resetPasswordOk","type":"account.ResetPasswordResult","id":3911636542,"comment":"The 2FA password was reset successfully.","arguments":[]},{"kind":"class","name":"sponsoredMessage","id":1301522832,"type":"SponsoredMessage","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"recommended","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the message needs to be labeled as \"recommended\" instead of \"sponsored\""},{"name":"can_report","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether this message can be reported as specified here »."},{"name":"random_id","type":"bytes","comment":"Message ID"},{"name":"url","type":"string","comment":"Contains the URL to open when the user clicks on the sponsored message."},{"name":"title","type":"string","comment":"Contains the title of the sponsored message."},{"name":"message","type":"string","comment":"Sponsored message"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text in message."},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.6"},"comment":"If set, contains a custom profile photo bubble that should be displayed for the sponsored message, like for messages sent in groups."},{"name":"media","type":"MessageMedia","typeModifiers":{"predicate":"flags.14"}},{"name":"color","type":"PeerColor","typeModifiers":{"predicate":"flags.13"},"comment":"If set, the sponsored message should use the message accent color » specified in color."},{"name":"button_text","type":"string","comment":"Label of the sponsored message button."},{"name":"sponsor_info","type":"string","typeModifiers":{"predicate":"flags.7"},"comment":"If set, contains additional information about the sponsor to be shown along with the message."},{"name":"additional_info","type":"string","typeModifiers":{"predicate":"flags.8"},"comment":"If set, contains additional information about the sponsored message to be shown along with the message."}],"comment":"A sponsored message."},{"kind":"class","name":"messages.sponsoredMessages","type":"messages.SponsoredMessages","id":3387825543,"comment":"A set of sponsored messages associated to a channel","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"posts_between","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, specifies the minimum number of messages between shown sponsored messages; otherwise, only one sponsored message must be shown after all ordinary messages."},{"name":"messages","type":"SponsoredMessage","typeModifiers":{"isVector":true},"comment":"Sponsored messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in the sponsored messages"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the sponsored messages"}]},{"kind":"class","name":"messages.sponsoredMessagesEmpty","type":"messages.SponsoredMessages","id":406407439,"comment":"No sponsored messages are available.","arguments":[]},{"kind":"class","name":"searchResultsCalendarPeriod","type":"SearchResultsCalendarPeriod","id":3383776159,"comment":"Information about found messages sent on a specific day, used to split the messages in {@link messages.RawSearchResultsCalendar} constructors by days.\n\nMultiple searchResultsCalendarPeriod constructors are returned in {@link messages.RawSearchResultsCalendar}, each containing information about the first, last and total number of messages matching the filter that were sent on a specific day.","arguments":[{"name":"date","type":"int","comment":"The day this object is referring to."},{"name":"min_msg_id","type":"int","comment":"First message ID that was sent on this day."},{"name":"max_msg_id","type":"int","comment":"Last message ID that was sent on this day."},{"name":"count","type":"int","comment":"All messages that were sent on this day."}]},{"kind":"class","name":"messages.searchResultsCalendar","type":"messages.SearchResultsCalendar","id":343859772,"comment":"Information about found messages sent on a specific day","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inexact","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the results may be inexact"},{"name":"count","type":"int","comment":"Total number of results matching query"},{"name":"min_date","type":"int","comment":"Starting timestamp of attached messages"},{"name":"min_msg_id","type":"int","comment":"Ending timestamp of attached messages"},{"name":"offset_id_offset","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}."},{"name":"periods","type":"SearchResultsCalendarPeriod","typeModifiers":{"isVector":true},"comment":"Used to split the messages by days: multiple SearchResultsCalendarPeriod constructors are returned, each containing information about the first, last and total number of messages matching the filter that were sent on a specific day.
This information can be easily used to split the returned messages by day."},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"Messages"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"searchResultPosition","type":"SearchResultsPosition","id":2137295719,"comment":"Information about a message in a specific position","arguments":[{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"date","type":"int","comment":"When was the message sent"},{"name":"offset","type":"int","comment":"0-based message position in the full list of suitable messages"}]},{"kind":"class","name":"messages.searchResultsPositions","type":"messages.SearchResultsPositions","id":1404185519,"comment":"Information about sparse positions of messages","arguments":[{"name":"count","type":"int","comment":"Total number of found messages"},{"name":"positions","type":"SearchResultsPosition","typeModifiers":{"isVector":true},"comment":"List of message positions"}]},{"kind":"class","name":"channels.sendAsPeers","type":"channels.SendAsPeers","id":4103516358,"comment":"A list of peers that can be used to send messages in a specific group","arguments":[{"name":"peers","type":"SendAsPeer","typeModifiers":{"isVector":true},"comment":"Peers that can be used to send messages to the group"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"users.userFull","type":"users.UserFull","id":997004590,"comment":"Full user information","arguments":[{"name":"full_user","type":"UserFull","comment":"Full user information"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.peerSettings","type":"messages.PeerSettings","id":1753266509,"comment":"Peer settings","arguments":[{"name":"settings","type":"PeerSettings","comment":"Peer settings"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"auth.loggedOut","type":"auth.LoggedOut","id":3282207583,"comment":"Future auth token » to be used on subsequent authorizations","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"future_auth_token","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Future auth token » to be used on subsequent authorizations"}]},{"kind":"class","name":"reactionCount","type":"ReactionCount","id":2748435328,"comment":"Reactions","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chosen_order","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the current user also sent this reaction.
The integer value indicates when was the reaction added: the bigger the value, the newer the reaction."},{"name":"reaction","type":"Reaction","comment":"The reaction."},{"name":"count","type":"int","comment":"Number of users that reacted with this emoji."}]},{"kind":"class","name":"messageReactions","id":171155211,"type":"MessageReactions","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Similar to min objects, used for message reaction » constructors that are the same for all users so they don't have the reactions sent by the current user (you can use {@link messages.RawGetMessagesReactionsRequest} to get the full reaction info)."},{"name":"can_see_list","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether {@link messages.RawGetMessageReactionsListRequest} can be used to see how each specific peer reacted to the message"},{"name":"reactions_as_tags","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set or if there are no reactions, all present and future reactions should be treated as message tags, see here » for more info."},{"name":"results","type":"ReactionCount","typeModifiers":{"isVector":true},"comment":"Reactions"},{"name":"recent_reactions","type":"MessagePeerReaction","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"List of recent peers and their reactions"},{"name":"top_reactors","type":"MessageReactor","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Paid Telegram Star reactions leaderboard » for this message."}],"comment":"Message reactions »"},{"kind":"class","name":"messages.messageReactionsList","type":"messages.MessageReactionsList","id":834488621,"comment":"List of peers that reacted to a specific message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of reactions matching query"},{"name":"reactions","type":"MessagePeerReaction","typeModifiers":{"isVector":true},"comment":"List of peers that reacted to a specific message"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates the next offset to use to load more results by invoking {@link messages.RawGetMessageReactionsListRequest}."}]},{"kind":"class","name":"availableReaction","type":"AvailableReaction","id":3229084673,"comment":"Animations associated with a message reaction","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inactive","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If not set, the reaction can be added to new messages and enabled in chats."},{"name":"premium","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this reaction can only be used by Telegram Premium users"},{"name":"reaction","type":"string","comment":"Reaction emoji"},{"name":"title","type":"string","comment":"Reaction description"},{"name":"static_icon","type":"Document","comment":"Static icon for the reaction"},{"name":"appear_animation","type":"Document","comment":"The animated sticker to show when the user opens the reaction dropdown"},{"name":"select_animation","type":"Document","comment":"The animated sticker to show when the user hovers over the reaction"},{"name":"activate_animation","type":"Document","comment":"The animated sticker to show when the reaction is chosen and activated"},{"name":"effect_animation","type":"Document","comment":"The background effect (still an animated sticker) to play under the activate_animation, when the reaction is chosen and activated"},{"name":"around_animation","type":"Document","typeModifiers":{"predicate":"flags.1"},"comment":"The animation that plays around the button when you press an existing reaction (played together with center_icon)."},{"name":"center_icon","type":"Document","typeModifiers":{"predicate":"flags.1"},"comment":"The animation of the emoji inside the button when you press an existing reaction (played together with around_animation)."}]},{"kind":"class","name":"messages.availableReactionsNotModified","type":"messages.AvailableReactions","id":2668042583,"comment":"No new reactions are available","arguments":[]},{"kind":"class","name":"messages.availableReactions","type":"messages.AvailableReactions","id":1989032621,"comment":"Animations and metadata associated with message reactions »","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"reactions","type":"AvailableReaction","typeModifiers":{"isVector":true},"comment":"Animations and metadata associated with message reactions »"}]},{"kind":"class","name":"messagePeerReaction","type":"MessagePeerReaction","id":2356786748,"comment":"How a certain peer reacted to the message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"big","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the specified message reaction » should elicit a bigger and longer reaction"},{"name":"unread","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the reaction wasn't yet marked as read by the current user"},{"name":"my","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Starting from layer 159, {@link messages.RawSendReactionRequest} will send reactions from the peer (user or channel) specified using {@link messages.RawSaveDefaultSendAsRequest}.
If set, this flag indicates that this reaction was sent by us, even if the peer doesn't point to the current account."},{"name":"peer_id","type":"Peer","comment":"Peer that reacted to the message"},{"name":"date","type":"int","comment":"When was this reaction added"},{"name":"reaction","type":"Reaction","comment":"Reaction emoji"}]},{"kind":"class","name":"groupCallStreamChannel","type":"GroupCallStreamChannel","id":2162903215,"comment":"Info about an RTMP stream in a group call or livestream","arguments":[{"name":"channel","type":"int","comment":"Channel ID"},{"name":"scale","type":"int","comment":"Specifies the duration of the video segment to fetch in milliseconds, by bitshifting 1000 to the right scale times: duration_ms := 1000 >> scale."},{"name":"last_timestamp_ms","type":"long","comment":"Last seen timestamp to easily start fetching livestream chunks using {@link RawInputGroupCallStream}"}]},{"kind":"class","name":"phone.groupCallStreamChannels","type":"phone.GroupCallStreamChannels","id":3504636594,"comment":"Info about RTMP streams in a group call or livestream","arguments":[{"name":"channels","type":"GroupCallStreamChannel","typeModifiers":{"isVector":true},"comment":"RTMP streams"}]},{"kind":"class","name":"phone.groupCallStreamRtmpUrl","type":"phone.GroupCallStreamRtmpUrl","id":767505458,"comment":"RTMP URL and stream key to be used in streaming software","arguments":[{"name":"url","type":"string","comment":"RTMP URL"},{"name":"key","type":"string","comment":"Stream key"}]},{"kind":"class","name":"attachMenuBotIconColor","type":"AttachMenuBotIconColor","id":1165423600,"comment":"Represents an attachment menu icon color for bot mini apps »","arguments":[{"name":"name","type":"string","comment":"One of the following values:
light_icon - Color of the attachment menu icon (light mode)
light_text - Color of the attachment menu label, once selected (light mode)
dark_icon - Color of the attachment menu icon (dark mode)
dark_text - Color of the attachment menu label, once selected (dark mode)"},{"name":"color","type":"int","comment":"Color in RGB24 format"}]},{"kind":"class","name":"attachMenuBotIcon","type":"AttachMenuBotIcon","id":2997303403,"comment":"Represents an attachment menu icon for bot mini apps »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"name","type":"string","comment":"One of the following values: note that animated icons must be played when the user clicks on the button, activating the bot mini app.

default_static - Default attachment menu icon in SVG format
placeholder_static - Default placeholder for opened Web Apps in SVG format
ios_static - Attachment menu icon in SVG format for the official iOS app
ios_animated - Animated attachment menu icon in TGS format for the official iOS app
android_animated - Animated attachment menu icon in TGS format for the official Android app
macos_animated - Animated attachment menu icon in TGS format for the official native Mac OS app
ios_side_menu_static - Side menu icon in PNG format for the official iOS app
android_side_menu_static - Side menu icon in SVG format for the official android app
macos_side_menu_static - Side menu icon in PNG format for the official native Mac OS app"},{"name":"icon","type":"Document","comment":"The actual icon file."},{"name":"colors","type":"AttachMenuBotIconColor","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Attachment menu icon colors."}]},{"kind":"class","name":"attachMenuBot","type":"AttachMenuBot","id":3641544190,"comment":"Represents a bot mini app that can be launched from the attachment/side menu »\n\nAt least one of the show_in_attach_menu or the show_in_side_menu flags will always be set.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inactive","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, before launching the mini app the client should ask the user to add the mini app to the attachment/side menu, and only if the user accepts, after invoking {@link messages.RawToggleBotInAttachMenuRequest} the app should be opened."},{"name":"has_settings","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Deprecated flag, can be ignored."},{"name":"request_write_access","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the bot would like to send messages to the user."},{"name":"show_in_attach_menu","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether, when installed, an attachment menu entry should be shown for the Mini App."},{"name":"show_in_side_menu","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether, when installed, an entry in the main view side menu should be shown for the Mini App."},{"name":"side_menu_disclaimer_needed","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If inactive if set and the user hasn't previously accepted the third-party mini apps Terms of Service for this bot, when showing the mini app installation prompt, an additional mandatory checkbox to accept the mini apps TOS and a disclaimer indicating that this Mini App is not affiliated to Telegram should be shown."},{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"short_name","type":"string","comment":"Attachment menu item name"},{"name":"peer_types","type":"AttachMenuPeerType","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"List of dialog types where this attachment menu entry should be shown"},{"name":"icons","type":"AttachMenuBotIcon","typeModifiers":{"isVector":true},"comment":"List of platform-specific static icons and animations to use for the attachment menu button"}]},{"kind":"class","name":"attachMenuBotsNotModified","type":"AttachMenuBots","id":4057500252,"comment":"The list of bot mini apps hasn't changed","arguments":[]},{"kind":"class","name":"attachMenuBots","type":"AttachMenuBots","id":1011024320,"comment":"Represents a list of bot mini apps that can be launched from the attachment menu »","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"bots","type":"AttachMenuBot","typeModifiers":{"isVector":true},"comment":"List of bot mini apps that can be launched from the attachment menu »"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about related users/bots"}]},{"kind":"class","name":"attachMenuBotsBot","type":"AttachMenuBotsBot","id":2478794367,"comment":"Represents a bot mini app that can be launched from the attachment menu »","arguments":[{"name":"bot","type":"AttachMenuBot","comment":"Represents a bot mini app that can be launched from the attachment menu »
"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Info about related users and bots"}]},{"kind":"class","name":"webViewResultUrl","type":"WebViewResult","id":1294139288,"comment":"Contains the webview URL with appropriate theme and user info parameters added","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"fullsize","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, the app must be opened in fullsize mode instead of compact mode."},{"name":"fullscreen","type":"true","typeModifiers":{"predicate":"flags.2"}},{"name":"query_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"Webview session ID (only returned by inline button mini apps, menu button mini apps, attachment menu mini apps)."},{"name":"url","type":"string","comment":"Webview URL to open"}]},{"kind":"class","name":"webViewMessageSent","type":"WebViewMessageSent","id":211046684,"comment":"Info about a sent inline webview message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"msg_id","type":"InputBotInlineMessageID","typeModifiers":{"predicate":"flags.0"},"comment":"Message ID"}]},{"kind":"class","name":"botMenuButtonDefault","type":"BotMenuButton","id":1966318984,"comment":"Placeholder bot menu button never returned to users: see the docs for more info.","arguments":[]},{"kind":"class","name":"botMenuButtonCommands","type":"BotMenuButton","id":1113113093,"comment":"Bot menu button that opens the bot command list when clicked.","arguments":[]},{"kind":"class","name":"botMenuButton","type":"BotMenuButton","id":3350559974,"comment":"Bot menu button that opens a web app when clicked.","arguments":[{"name":"text","type":"string","comment":"Title to be displayed on the menu button instead of 'Menu'"},{"name":"url","type":"string","comment":"URL of a web app to open when the user clicks on the button"}]},{"kind":"class","name":"account.savedRingtonesNotModified","type":"account.SavedRingtones","id":4227262641,"comment":"The notification sound list hasn't changed.","arguments":[]},{"kind":"class","name":"account.savedRingtones","type":"account.SavedRingtones","id":3253284037,"comment":"A list of saved notification sounds","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"ringtones","type":"Document","typeModifiers":{"isVector":true},"comment":"Saved notification sounds"}]},{"kind":"class","name":"notificationSoundDefault","type":"NotificationSound","id":2548612798,"comment":"Indicates the default notification sound should be used","arguments":[]},{"kind":"class","name":"notificationSoundNone","type":"NotificationSound","id":1863070943,"comment":"No notification sound should be used","arguments":[]},{"kind":"class","name":"notificationSoundLocal","type":"NotificationSound","id":2198575844,"comment":"Indicates a specific local notification sound should be used","arguments":[{"name":"title","type":"string","comment":"Notification sound title"},{"name":"data","type":"string","comment":"Notification sound identifier (arbitrary data used by the client to identify a specific local notification sound)"}]},{"kind":"class","name":"notificationSoundRingtone","type":"NotificationSound","id":4285300809,"comment":"A specific previously uploaded notification sound should be used","arguments":[{"name":"id","type":"long","comment":"Document ID of notification sound uploaded using {@link account.RawUploadRingtoneRequest}"}]},{"kind":"class","name":"account.savedRingtone","type":"account.SavedRingtone","id":3072737133,"comment":"The notification sound was already in MP3 format and was saved without any modification","arguments":[]},{"kind":"class","name":"account.savedRingtoneConverted","type":"account.SavedRingtone","id":523271863,"comment":"The notification sound was not in MP3 format and was successfully converted and saved, use the returned Document to refer to the notification sound from now on","arguments":[{"name":"document","type":"Document","comment":"The converted notification sound"}]},{"kind":"class","name":"attachMenuPeerTypeSameBotPM","type":"AttachMenuPeerType","id":2104224014,"comment":"The bot attachment menu entry is available in the chat with the bot that offers it","arguments":[]},{"kind":"class","name":"attachMenuPeerTypeBotPM","type":"AttachMenuPeerType","id":3274439194,"comment":"The bot attachment menu entry is available in private chats with other bots (excluding the bot that offers the current attachment menu)","arguments":[]},{"kind":"class","name":"attachMenuPeerTypePM","type":"AttachMenuPeerType","id":4047950623,"comment":"The bot attachment menu entry is available in private chats with other users (not bots)","arguments":[]},{"kind":"class","name":"attachMenuPeerTypeChat","type":"AttachMenuPeerType","id":84480319,"comment":"The bot attachment menu entry is available in groups and supergroups","arguments":[]},{"kind":"class","name":"attachMenuPeerTypeBroadcast","type":"AttachMenuPeerType","id":2080104188,"comment":"The bot attachment menu entry is available in channels","arguments":[]},{"kind":"class","name":"inputInvoiceMessage","type":"InputInvoice","id":3317000281,"comment":"An invoice contained in a {@link RawMessageMediaInvoice} message or paid media ».","arguments":[{"name":"peer","type":"InputPeer","comment":"Chat where the invoice/paid media was sent"},{"name":"msg_id","type":"int","comment":"Message ID"}]},{"kind":"class","name":"inputInvoiceSlug","type":"InputInvoice","id":3274099439,"comment":"An invoice slug taken from an invoice deep link or from the premium_invoice_slug app config parameter »","arguments":[{"name":"slug","type":"string","comment":"The invoice slug"}]},{"kind":"class","name":"inputInvoicePremiumGiftCode","type":"InputInvoice","id":2560125965,"comment":"Used if the user wishes to start a channel/supergroup giveaway or send some giftcodes to members of a channel/supergroup, in exchange for boosts.","arguments":[{"name":"purpose","type":"InputStorePaymentPurpose","comment":"Should be populated with {@link RawInputStorePaymentPremiumGiveaway} for giveaways and {@link RawInputStorePaymentPremiumGiftCode} for gifts."},{"name":"option","type":"PremiumGiftCodeOption","comment":"Should be populated with one of the giveaway options returned by {@link payments.RawGetPremiumGiftCodeOptionsRequest}, see the giveaways » documentation for more info."}]},{"kind":"class","name":"inputInvoiceStars","type":"InputInvoice","id":1710230755,"comment":"Used to top up the Telegram Stars balance of the current account or someone else's account, or to start a Telegram Star giveaway ».","arguments":[{"name":"purpose","type":"InputStorePaymentPurpose","comment":"An {@link RawInputStorePaymentStarsGiveaway}, {@link RawInputStorePaymentStarsTopup} or {@link RawInputStorePaymentStarsGift}."}]},{"kind":"class","name":"inputInvoiceChatInviteSubscription","type":"InputInvoice","id":887591921,"comment":"Used to pay for a Telegram Star subscription ».","arguments":[{"name":"hash","type":"string","comment":"The invitation link of the Telegram Star subscription »"}]},{"kind":"class","name":"inputInvoiceStarGift","type":"InputInvoice","id":634962392,"comment":"Used to buy a Telegram Star Gift, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"hide_name","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, your name will be hidden if the destination user decides to display the gift on their profile (they will still see that you sent the gift)"},{"name":"user_id","type":"InputUser","comment":"Identifier of the user that will receive the gift"},{"name":"gift_id","type":"long","comment":"Identifier of the gift, from {@link RawStartGift}.id"},{"name":"message","type":"TextWithEntities","typeModifiers":{"predicate":"flags.1"},"comment":"Optional message, attached with the gift"}]},{"kind":"class","name":"payments.exportedInvoice","type":"payments.ExportedInvoice","id":2932919257,"comment":"Exported invoice deep link","arguments":[{"name":"url","type":"string","comment":"Exported invoice deep link"}]},{"kind":"class","name":"messages.transcribedAudio","type":"messages.TranscribedAudio","id":3485063511,"comment":"Transcribed text from a voice message »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pending","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the transcription is partial because audio transcription is still in progress, if set the user may receive further {@link RawUpdateTranscribedAudio} updates with the updated transcription."},{"name":"transcription_id","type":"long","comment":"Transcription ID"},{"name":"text","type":"string","comment":"Transcripted text"},{"name":"trial_remains_num","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For non-Premium users, this flag will be set, indicating the remaining transcriptions in the free trial period."},{"name":"trial_remains_until_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For non-Premium users, this flag will be set, indicating the date when the trial_remains_num counter will be reset to the maximum value of transcribe_audio_trial_weekly_number."}]},{"kind":"class","name":"help.premiumPromo","type":"help.PremiumPromo","id":1395946908,"comment":"Telegram Premium promotion information\n\nNote that the video_sections+videos fields are a list of videos, and the corresponding premium feature identifiers.
\nThey're equivalent to a section => video dictionary, with keys from video_section and values from videos.
\nThe keys in video_sections correspond to a specific feature identifier, and the associated promotional video should be shown when the associated feature row is clicked.","arguments":[{"name":"status_text","type":"string","comment":"Description of the current state of the user's Telegram Premium subscription"},{"name":"status_entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"},{"name":"video_sections","type":"string","typeModifiers":{"isVector":true},"comment":"A list of premium feature identifiers », associated to each video"},{"name":"videos","type":"Document","typeModifiers":{"isVector":true},"comment":"A list of videos"},{"name":"period_options","type":"PremiumSubscriptionOption","typeModifiers":{"isVector":true},"comment":"Telegram Premium subscription options"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related user information"}]},{"kind":"class","name":"inputStorePaymentPremiumSubscription","type":"InputStorePaymentPurpose","id":2792693350,"comment":"Info about a Telegram Premium purchase","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"restore","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Pass true if this is a restore of a Telegram Premium purchase; only for the App Store"},{"name":"upgrade","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Pass true if this is an upgrade from a monthly subscription to a yearly subscription; only for App Store"}]},{"kind":"class","name":"inputStorePaymentGiftPremium","type":"InputStorePaymentPurpose","id":1634697192,"comment":"Info about a gifted Telegram Premium purchase","arguments":[{"name":"user_id","type":"InputUser","comment":"The user to which the Telegram Premium subscription was gifted"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"inputStorePaymentPremiumGiftCode","id":4219011987,"type":"InputStorePaymentPurpose","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"The users that will receive the Telegram Premium subscriptions."},{"name":"boost_peer","type":"InputPeer","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the gifts will be sent on behalf of a channel/supergroup we are an admin of, which will also assign some boosts to it. Otherwise, the gift will be sent directly from the currently logged in user, and we will gain some extra boost slots. See here » for more info on giveaways and gifts."},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"message","type":"TextWithEntities","typeModifiers":{"predicate":"flags.1"}}],"comment":"Used to gift Telegram Premium subscriptions only to some specific subscribers of a channel/supergroup or to some of our contacts, see here » for more info on giveaways and gifts."},{"kind":"class","name":"inputStorePaymentPremiumGiveaway","type":"InputStorePaymentPurpose","id":369444042,"comment":"Used to pay for a giveaway, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"only_new_subscribers","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, only new subscribers starting from the giveaway creation date will be able to participate to the giveaway."},{"name":"winners_are_visible","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, giveaway winners are public and will be listed in a {@link RawMessageMediaGiveawayResults} message that will be automatically sent to the channel once the giveaway ends."},{"name":"boost_peer","type":"InputPeer","comment":"The channel/supergroup starting the giveaway, that the user must join to participate, that will receive the giveaway boosts; see here » for more info on giveaways."},{"name":"additional_peers","type":"InputPeer","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Additional channels that the user must join to participate to the giveaway can be specified here."},{"name":"countries_iso2","type":"string","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"The set of users that can participate to the giveaway can be restricted by passing here an explicit whitelist of up to giveaway_countries_max countries, specified as two-letter ISO 3166-1 alpha-2 country codes."},{"name":"prize_description","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Can contain a textual description of additional giveaway prizes."},{"name":"random_id","type":"long","comment":"Random ID to avoid resending the giveaway"},{"name":"until_date","type":"int","comment":"The end date of the giveaway, must be at most giveaway_period_max seconds in the future; see here » for more info on giveaways."},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"inputStorePaymentStarsTopup","type":"InputStorePaymentPurpose","id":3722252118,"comment":"Used to top up the Telegram Stars balance of the current account.","arguments":[{"name":"stars","type":"long","comment":"Amount of stars to topup"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"inputStorePaymentStarsGift","type":"InputStorePaymentPurpose","id":494149367,"comment":"Used to gift Telegram Stars to a friend.","arguments":[{"name":"user_id","type":"InputUser","comment":"The user to which the stars should be gifted."},{"name":"stars","type":"long","comment":"Amount of stars to gift"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"inputStorePaymentStarsGiveaway","type":"InputStorePaymentPurpose","id":1964968186,"comment":"Used to pay for a star giveaway, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"only_new_subscribers","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, only new subscribers starting from the giveaway creation date will be able to participate to the giveaway."},{"name":"winners_are_visible","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, giveaway winners are public and will be listed in a {@link RawMessageMediaGiveawayResults} message that will be automatically sent to the channel once the giveaway ends."},{"name":"stars","type":"long","comment":"Total number of Telegram Stars being given away (each user will receive stars/users stars)."},{"name":"boost_peer","type":"InputPeer","comment":"The channel/supergroup starting the giveaway, that the user must join to participate, that will receive the giveaway boosts; see here » for more info on giveaways."},{"name":"additional_peers","type":"InputPeer","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Additional channels that the user must join to participate to the giveaway can be specified here."},{"name":"countries_iso2","type":"string","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"The set of users that can participate to the giveaway can be restricted by passing here an explicit whitelist of up to giveaway_countries_max countries, specified as two-letter ISO 3166-1 alpha-2 country codes."},{"name":"prize_description","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Can contain a textual description of additional giveaway prizes."},{"name":"random_id","type":"long","comment":"Random ID to avoid resending the giveaway"},{"name":"until_date","type":"int","comment":"The end date of the giveaway, must be at most giveaway_period_max seconds in the future; see here » for more info on giveaways."},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"users","type":"int","comment":"Number of winners."}]},{"kind":"class","name":"premiumGiftOption","type":"PremiumGiftOption","id":1958953753,"comment":"Telegram Premium gift option","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"months","type":"int","comment":"Duration of gifted Telegram Premium subscription"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"bot_url","type":"string","comment":"An invoice deep link » to an invoice for in-app payment, using the official Premium bot; may be empty if direct payment isn't available."},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"An identifier for the App Store/Play Store product associated with the Premium gift."}]},{"kind":"class","name":"paymentFormMethod","type":"PaymentFormMethod","id":2298016283,"comment":"Represents an additional payment method","arguments":[{"name":"url","type":"string","comment":"URL to open in a webview to process the payment"},{"name":"title","type":"string","comment":"Payment method description"}]},{"kind":"class","name":"emojiStatusEmpty","type":"EmojiStatus","id":769727150,"comment":"No emoji status is set","arguments":[]},{"kind":"class","name":"emojiStatus","type":"EmojiStatus","id":2459656605,"comment":"An emoji status","arguments":[{"name":"document_id","type":"long","comment":"Custom emoji document ID"}]},{"kind":"class","name":"emojiStatusUntil","type":"EmojiStatus","id":4197492935,"comment":"An emoji status valid until the specified date","arguments":[{"name":"document_id","type":"long","comment":"Custom emoji document ID"},{"name":"until","type":"int","comment":"This status is valid until this date"}]},{"kind":"class","name":"account.emojiStatusesNotModified","type":"account.EmojiStatuses","id":3498894917,"comment":"The server-side list of emoji statuses hasn't changed","arguments":[]},{"kind":"class","name":"account.emojiStatuses","type":"account.EmojiStatuses","id":2428790737,"comment":"A list of emoji statuses","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"statuses","type":"EmojiStatus","typeModifiers":{"isVector":true},"comment":"Emoji statuses"}]},{"kind":"class","name":"reactionEmpty","type":"Reaction","id":2046153753,"comment":"No reaction","arguments":[]},{"kind":"class","name":"reactionEmoji","type":"Reaction","id":455247544,"comment":"Normal emoji message reaction","arguments":[{"name":"emoticon","type":"string","comment":"Emoji"}]},{"kind":"class","name":"reactionCustomEmoji","type":"Reaction","id":2302016627,"comment":"Custom emoji message reaction","arguments":[{"name":"document_id","type":"long","comment":"Custom emoji document ID"}]},{"kind":"class","name":"reactionPaid","type":"Reaction","id":1379771627,"comment":"Represents a paid Telegram Star reaction ».","arguments":[]},{"kind":"class","name":"chatReactionsNone","type":"ChatReactions","id":3942396604,"comment":"No reactions are allowed","arguments":[]},{"kind":"class","name":"chatReactionsAll","type":"ChatReactions","id":1385335754,"comment":"All reactions or all non-custom reactions are allowed","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"allow_custom","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow custom reactions"}]},{"kind":"class","name":"chatReactionsSome","type":"ChatReactions","id":1713193015,"comment":"Some reactions are allowed","arguments":[{"name":"reactions","type":"Reaction","typeModifiers":{"isVector":true},"comment":"Allowed set of reactions: the reactions_in_chat_max configuration field indicates the maximum number of reactions that can be specified in this field."}]},{"kind":"class","name":"messages.reactionsNotModified","type":"messages.Reactions","id":2960120799,"comment":"The server-side list of message reactions hasn't changed","arguments":[]},{"kind":"class","name":"messages.reactions","type":"messages.Reactions","id":3942512406,"comment":"List of message reactions","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"reactions","type":"Reaction","typeModifiers":{"isVector":true},"comment":"Reactions"}]},{"kind":"class","name":"emailVerifyPurposeLoginSetup","type":"EmailVerifyPurpose","id":1128644211,"comment":"Email verification purpose: setup login email","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash as specified by the documentation"}]},{"kind":"class","name":"emailVerifyPurposeLoginChange","type":"EmailVerifyPurpose","id":1383932651,"comment":"Email verification purpose: change login email","arguments":[]},{"kind":"class","name":"emailVerifyPurposePassport","type":"EmailVerifyPurpose","id":3153401477,"comment":"Verify an email for use in telegram passport","arguments":[]},{"kind":"class","name":"emailVerificationCode","type":"EmailVerification","id":2452510121,"comment":"Email verification code","arguments":[{"name":"code","type":"string","comment":"Received verification code"}]},{"kind":"class","name":"emailVerificationGoogle","type":"EmailVerification","id":3683688130,"comment":"Google ID email verification token","arguments":[{"name":"token","type":"string","comment":"Token"}]},{"kind":"class","name":"emailVerificationApple","type":"EmailVerification","id":2530243837,"comment":"Apple ID email verification token","arguments":[{"name":"token","type":"string","comment":"Token"}]},{"kind":"class","name":"account.emailVerified","type":"account.EmailVerified","id":731303195,"comment":"The email was verified correctly.","arguments":[{"name":"email","type":"string","comment":"The verified email address."}]},{"kind":"class","name":"account.emailVerifiedLogin","type":"account.EmailVerified","id":3787132257,"comment":"The email was verified correctly, and a login code was just sent to it.","arguments":[{"name":"email","type":"string","comment":"The verified email address."},{"name":"sent_code","type":"auth.SentCode","comment":"Info about the sent login code"}]},{"kind":"class","name":"premiumSubscriptionOption","type":"PremiumSubscriptionOption","id":1596792306,"comment":"Describes a Telegram Premium subscription option","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"current","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this subscription option is currently in use."},{"name":"can_purchase_upgrade","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this subscription option can be used to upgrade the existing Telegram Premium subscription. When upgrading Telegram Premium subscriptions bought through stores, make sure that the store transaction ID is equal to transaction, to avoid upgrading someone else's account, if the client is currently logged into multiple accounts."},{"name":"transaction","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Identifier of the last in-store transaction for the currently used subscription on the current account."},{"name":"months","type":"int","comment":"Duration of subscription in months"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"bot_url","type":"string","comment":"Deep link used to initiate payment"},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Store product ID, only for official apps"}]},{"kind":"class","name":"sendAsPeer","type":"SendAsPeer","id":3088871476,"comment":"Indicates a peer that can be used to send messages","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"premium_required","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether a Telegram Premium account is required to send messages as this peer"},{"name":"peer","type":"Peer","comment":"Peer"}]},{"kind":"class","name":"messageExtendedMediaPreview","type":"MessageExtendedMedia","id":2908916936,"comment":"Paid media preview for not yet purchased paid media, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"w","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Width"},{"name":"h","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Height"},{"name":"thumb","type":"PhotoSize","typeModifiers":{"predicate":"flags.1"},"comment":"Extremely low resolution thumbnail."},{"name":"video_duration","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Video duration for videos."}]},{"kind":"class","name":"messageExtendedMedia","type":"MessageExtendedMedia","id":3997670500,"comment":"Already purchased paid media, see here » for more info.","arguments":[{"name":"media","type":"MessageMedia","comment":"The media we purchased."}]},{"kind":"class","name":"stickerKeyword","type":"StickerKeyword","id":4244550300,"comment":"Keywords for a certain sticker","arguments":[{"name":"document_id","type":"long","comment":"Sticker ID"},{"name":"keyword","type":"string","typeModifiers":{"isVector":true},"comment":"Keywords"}]},{"kind":"class","name":"username","type":"Username","id":3020371527,"comment":"Contains information about a username.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"editable","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the username is editable, meaning it wasn't bought on fragment."},{"name":"active","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the username is active."},{"name":"username","type":"string","comment":"The username."}]},{"kind":"class","name":"forumTopicDeleted","type":"ForumTopic","id":37687451,"comment":"Represents a deleted forum topic.","arguments":[{"name":"id","type":"int","comment":"The ID of the deleted forum topic."}]},{"kind":"class","name":"forumTopic","type":"ForumTopic","id":1903173033,"comment":"Represents a forum topic.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the topic was created by the current user"},{"name":"closed","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the topic is closed (no messages can be sent to it)"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the topic is pinned"},{"name":"short","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this constructor is a reduced version of the full topic information.
If set, only the my, closed, id, date, title, icon_color, icon_emoji_id and from_id parameters will contain valid information.
Reduced info is usually only returned in topic-related admin log events » and in the {@link messages.RawChannelMessages} constructor: if needed, full information can be fetched using {@link channels.RawGetForumTopicsByIDRequest}."},{"name":"hidden","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether the topic is hidden (only valid for the \"General\" topic, id=1)"},{"name":"id","type":"int","comment":"Topic ID"},{"name":"date","type":"int","comment":"Topic creation date"},{"name":"title","type":"string","comment":"Topic title"},{"name":"icon_color","type":"int","comment":"If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F."},{"name":"icon_emoji_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the custom emoji used as topic icon."},{"name":"top_message","type":"int","comment":"ID of the last message that was sent to this topic"},{"name":"read_inbox_max_id","type":"int","comment":"Position up to which all incoming messages are read."},{"name":"read_outbox_max_id","type":"int","comment":"Position up to which all outgoing messages are read."},{"name":"unread_count","type":"int","comment":"Number of unread messages"},{"name":"unread_mentions_count","type":"int","comment":"Number of unread mentions"},{"name":"unread_reactions_count","type":"int","comment":"Number of unread reactions to messages you sent"},{"name":"from_id","type":"Peer","comment":"ID of the peer that created the topic"},{"name":"notify_settings","type":"PeerNotifySettings","comment":"Notification settings"},{"name":"draft","type":"DraftMessage","typeModifiers":{"predicate":"flags.4"},"comment":"Message draft"}]},{"kind":"class","name":"messages.forumTopics","type":"messages.ForumTopics","id":913709011,"comment":"Contains information about multiple forum topics","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"order_by_create_date","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the returned topics are ordered by creation date; if set, pagination by offset_date should use {@link RawForumTopic}.date; otherwise topics are ordered by the last message date, so paginate by the date of the message referenced by {@link RawForumTopic}.top_message."},{"name":"count","type":"int","comment":"Total number of topics matching query; may be more than the topics contained in topics, in which case pagination is required."},{"name":"topics","type":"ForumTopic","typeModifiers":{"isVector":true},"comment":"Forum topics"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"Related messages (contains the messages mentioned by {@link RawForumTopic}.top_message)."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Related chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related users"},{"name":"pts","type":"int","comment":"Event count after generation"}]},{"kind":"class","name":"defaultHistoryTTL","type":"DefaultHistoryTTL","id":1135897376,"comment":"Contains info about the default value of the Time-To-Live setting, applied to all new chats.","arguments":[{"name":"period","type":"int","comment":"Time-To-Live setting applied to all new chats."}]},{"kind":"class","name":"exportedContactToken","type":"ExportedContactToken","id":1103040667,"comment":"Describes a temporary profile link.","arguments":[{"name":"url","type":"string","comment":"The temporary profile link."},{"name":"expires","type":"int","comment":"Its expiration date"}]},{"kind":"class","name":"requestPeerTypeUser","type":"RequestPeerType","id":1597737472,"comment":"Choose a user.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bot","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow choosing only bots."},{"name":"premium","type":"Bool","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to allow choosing only Premium users."}]},{"kind":"class","name":"requestPeerTypeChat","type":"RequestPeerType","id":3387977243,"comment":"Choose a chat or supergroup","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow only choosing chats or supergroups that were created by the current user."},{"name":"bot_participant","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to allow only choosing chats or supergroups where the bot is a participant."},{"name":"has_username","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"If specified, allows only choosing channels with or without a username, according to the value of Bool."},{"name":"forum","type":"Bool","typeModifiers":{"predicate":"flags.4"},"comment":"If specified, allows only choosing chats or supergroups that are or aren't forums, according to the value of Bool."},{"name":"user_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.1"},"comment":"If specified, allows only choosing chats or supergroups where the current user is an admin with at least the specified admin rights."},{"name":"bot_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.2"},"comment":"If specified, allows only choosing chats or supergroups where the bot is an admin with at least the specified admin rights."}]},{"kind":"class","name":"requestPeerTypeBroadcast","type":"RequestPeerType","id":865857388,"comment":"Choose a channel","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"creator","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to allow only choosing channels that were created by the current user."},{"name":"has_username","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"If specified, allows only choosing channels with or without a username, according to the value of Bool."},{"name":"user_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.1"},"comment":"If specified, allows only choosing channels where the current user is an admin with at least the specified admin rights."},{"name":"bot_admin_rights","type":"ChatAdminRights","typeModifiers":{"predicate":"flags.2"},"comment":"If specified, allows only choosing channels where the bot is an admin with at least the specified admin rights."}]},{"kind":"class","name":"emojiListNotModified","type":"EmojiList","id":1209970170,"comment":"The list of custom emojis hasn't changed.","arguments":[]},{"kind":"class","name":"emojiList","type":"EmojiList","id":2048790993,"comment":"Represents a list of custom emojis.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"},{"name":"document_id","type":"long","typeModifiers":{"isVector":true},"comment":"Custom emoji IDs"}]},{"kind":"class","name":"emojiGroup","type":"EmojiGroup","id":2056961449,"comment":"Represents an emoji category.","arguments":[{"name":"title","type":"string","comment":"Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on..."},{"name":"icon_emoji_id","type":"long","comment":"A single custom emoji used as preview for the category."},{"name":"emoticons","type":"string","typeModifiers":{"isVector":true},"comment":"A list of UTF-8 emojis, matching the category."}]},{"kind":"class","name":"emojiGroupGreeting","type":"EmojiGroup","id":2161274055,"comment":"Represents an emoji category, that should be moved to the top of the list when choosing a sticker for a business introduction","arguments":[{"name":"title","type":"string","comment":"Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on..."},{"name":"icon_emoji_id","type":"long","comment":"A single custom emoji used as preview for the category."},{"name":"emoticons","type":"string","typeModifiers":{"isVector":true},"comment":"A list of UTF-8 emojis, matching the category."}]},{"kind":"class","name":"emojiGroupPremium","type":"EmojiGroup","id":154914612,"comment":"An emoji category, used to select all Premium-only stickers (i.e. those with a Premium effect »)/Premium-only custom emojis (i.e. those where the {@link RawDocumentAttributeCustomEmoji}.free flag is not set)","arguments":[{"name":"title","type":"string","comment":"Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on..."},{"name":"icon_emoji_id","type":"long","comment":"A single custom emoji used as preview for the category."}]},{"kind":"class","name":"messages.emojiGroupsNotModified","type":"messages.EmojiGroups","id":1874111879,"comment":"The list of emoji categories hasn't changed.","arguments":[]},{"kind":"class","name":"messages.emojiGroups","type":"messages.EmojiGroups","id":2283780427,"comment":"Represents a list of emoji categories.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"groups","type":"EmojiGroup","typeModifiers":{"isVector":true},"comment":"A list of emoji categories."}]},{"kind":"class","name":"textWithEntities","type":"TextWithEntities","id":1964978502,"comment":"Styled text with message entities","arguments":[{"name":"text","type":"string","comment":"Text"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"}]},{"kind":"class","name":"messages.translateResult","type":"messages.TranslatedText","id":870003448,"comment":"Translated text with entities","arguments":[{"name":"result","type":"TextWithEntities","typeModifiers":{"isVector":true},"comment":"Text+entities, for each input message."}]},{"kind":"class","name":"autoSaveSettings","type":"AutoSaveSettings","id":3360175310,"comment":"Media autosave settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"photos","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether photos should be autosaved to the gallery."},{"name":"videos","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether videos should be autosaved to the gallery."},{"name":"video_max_size","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"If set, specifies a size limit for autosavable videos"}]},{"kind":"class","name":"autoSaveException","type":"AutoSaveException","id":2170563911,"comment":"Peer-specific media autosave settings","arguments":[{"name":"peer","type":"Peer","comment":"The peer"},{"name":"settings","type":"AutoSaveSettings","comment":"Media autosave settings"}]},{"kind":"class","name":"account.autoSaveSettings","type":"account.AutoSaveSettings","id":1279133341,"comment":"Contains media autosave settings","arguments":[{"name":"users_settings","type":"AutoSaveSettings","comment":"Default media autosave settings for private chats"},{"name":"chats_settings","type":"AutoSaveSettings","comment":"Default media autosave settings for groups and supergroups"},{"name":"broadcasts_settings","type":"AutoSaveSettings","comment":"Default media autosave settings for channels"},{"name":"exceptions","type":"AutoSaveException","typeModifiers":{"isVector":true},"comment":"Peer-specific granular autosave settings"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in the peer-specific granular autosave settings"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the peer-specific granular autosave settings"}]},{"kind":"class","name":"help.appConfigNotModified","type":"help.AppConfig","id":2094949405,"comment":"The client configuration parameters haven't changed","arguments":[]},{"kind":"class","name":"help.appConfig","type":"help.AppConfig","id":3709368366,"comment":"Contains various client configuration parameters","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"config","type":"JSONValue","comment":"Client configuration parameters"}]},{"kind":"class","name":"inputBotAppID","type":"InputBotApp","id":2837495162,"comment":"Used to fetch information about a direct link Mini App by its ID","arguments":[{"name":"id","type":"long","comment":"direct link Mini App ID."},{"name":"access_hash","type":"long","comment":"Access hash, obtained from the {@link RawBotApp} constructor."}]},{"kind":"class","name":"inputBotAppShortName","type":"InputBotApp","id":2425095175,"comment":"Used to fetch information about a direct link Mini App by its short name","arguments":[{"name":"bot_id","type":"InputUser","comment":"ID of the bot that owns the bot mini app"},{"name":"short_name","type":"string","comment":"Short name, obtained from a Direct Mini App deep link"}]},{"kind":"class","name":"botAppNotModified","type":"BotApp","id":1571189943,"comment":"Bot app info hasn't changed.","arguments":[]},{"kind":"class","name":"botApp","type":"BotApp","id":2516373974,"comment":"Contains information about a direct link Mini App.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"long","comment":"bot mini app ID"},{"name":"access_hash","type":"long","comment":"bot mini app access hash"},{"name":"short_name","type":"string","comment":"bot mini app short name, used to generate Direct Mini App deep links."},{"name":"title","type":"string","comment":"bot mini app title."},{"name":"description","type":"string","comment":"bot mini app description."},{"name":"photo","type":"Photo","comment":"bot mini app photo."},{"name":"document","type":"Document","typeModifiers":{"predicate":"flags.0"},"comment":"bot mini app animation."},{"name":"hash","type":"long","comment":"Hash to pass to {@link messages.RawGetBotAppRequest}, to avoid refetching bot app info if it hasn't changed."}]},{"kind":"class","name":"messages.botApp","type":"messages.BotApp","id":3947933173,"comment":"Contains information about a direct link Mini App","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inactive","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the web app was never used by the user, and confirmation must be asked from the user before opening it."},{"name":"request_write_access","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"The bot is asking permission to send messages to the user: if the user agrees, set the write_allowed flag when invoking {@link messages.RawRequestAppWebViewRequest}."},{"name":"has_settings","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Deprecated flag, can be ignored."},{"name":"app","type":"BotApp","comment":"Bot app information"}]},{"kind":"class","name":"inlineBotWebView","type":"InlineBotWebView","id":3044185557,"comment":"Specifies an inline mode mini app button, shown on top of the inline query results list.","arguments":[{"name":"text","type":"string","comment":"Text of the button"},{"name":"url","type":"string","comment":"Webapp URL"}]},{"kind":"class","name":"readParticipantDate","type":"ReadParticipantDate","id":1246753138,"comment":"Contains info about when a certain participant has read a message","arguments":[{"name":"user_id","type":"int53","comment":"User ID"},{"name":"date","type":"int","comment":"When the user read the message"}]},{"kind":"class","name":"inputChatlistDialogFilter","type":"InputChatlist","id":4091599411,"comment":"Folder ID","arguments":[{"name":"filter_id","type":"int","comment":"Folder ID"}]},{"kind":"class","name":"exportedChatlistInvite","type":"ExportedChatlistInvite","id":206668204,"comment":"Exported chat folder deep link ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Name of the link"},{"name":"url","type":"string","comment":"The chat folder deep link »."},{"name":"peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"Peers to import"}]},{"kind":"class","name":"chatlists.exportedChatlistInvite","type":"chatlists.ExportedChatlistInvite","id":283567014,"comment":"Info about an exported chat folder deep link ».","arguments":[{"name":"filter","type":"DialogFilter","comment":"Folder ID"},{"name":"invite","type":"ExportedChatlistInvite","comment":"The exported chat folder deep link »."}]},{"kind":"class","name":"chatlists.exportedInvites","type":"chatlists.ExportedInvites","id":279670215,"comment":"Info about multiple chat folder deep links ».","arguments":[{"name":"invites","type":"ExportedChatlistInvite","typeModifiers":{"isVector":true},"comment":"The chat folder deep links »."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Related chat information"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related user information"}]},{"kind":"class","name":"chatlists.chatlistInviteAlready","type":"chatlists.ChatlistInvite","id":4203214425,"comment":"Updated info about a chat folder deep link » we already imported.","arguments":[{"name":"filter_id","type":"int","comment":"ID of the imported folder"},{"name":"missing_peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"New peers to be imported"},{"name":"already_peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"Peers that were already imported"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Related chat information"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related user information"}]},{"kind":"class","name":"chatlists.chatlistInvite","type":"chatlists.ChatlistInvite","id":500007837,"comment":"Info about a chat folder deep link ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Name of the link"},{"name":"emoticon","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Emoji to use as icon for the folder."},{"name":"peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"Supergroups and channels to join"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Related chat information"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related user information"}]},{"kind":"class","name":"chatlists.chatlistUpdates","type":"chatlists.ChatlistUpdates","id":2478671757,"comment":"Updated information about a chat folder deep link ».","arguments":[{"name":"missing_peers","type":"Peer","typeModifiers":{"isVector":true},"comment":"New peers to join"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Related chat information"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Related user information"}]},{"kind":"class","name":"bots.botInfo","type":"bots.BotInfo","id":3903288752,"comment":"Localized information about a bot.","arguments":[{"name":"name","type":"string","comment":"Bot name"},{"name":"about","type":"string","comment":"Bot about text"},{"name":"description","type":"string","comment":"Bot description"}]},{"kind":"class","name":"messagePeerVote","type":"MessagePeerVote","id":3066834268,"comment":"How a peer voted in a poll","arguments":[{"name":"peer","type":"Peer","comment":"Peer ID"},{"name":"option","type":"bytes","comment":"The option chosen by the peer"},{"name":"date","type":"int","comment":"When did the peer cast the vote"}]},{"kind":"class","name":"messagePeerVoteInputOption","type":"MessagePeerVote","id":1959634180,"comment":"How a peer voted in a poll (reduced constructor, returned if an option was provided to {@link messages.RawGetPollVotesRequest})","arguments":[{"name":"peer","type":"Peer","comment":"The peer that voted for the queried option"},{"name":"date","type":"int","comment":"When did the peer cast the vote"}]},{"kind":"class","name":"messagePeerVoteMultiple","type":"MessagePeerVote","id":1177089766,"comment":"How a peer voted in a multiple-choice poll","arguments":[{"name":"peer","type":"Peer","comment":"Peer ID"},{"name":"options","type":"bytes","typeModifiers":{"isVector":true},"comment":"Options chosen by the peer"},{"name":"date","type":"int","comment":"When did the peer cast their votes"}]},{"kind":"class","name":"storyViews","type":"StoryViews","id":2371443926,"comment":"Aggregated view and reaction information of a story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_viewers","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, indicates that the viewers list is currently viewable, and was not yet deleted because the story has expired while the user didn't have a Premium account."},{"name":"views_count","type":"int","comment":"View counter of the story"},{"name":"forwards_count","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Forward counter of the story"},{"name":"reactions","type":"ReactionCount","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"All reactions sent to this story"},{"name":"reactions_count","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Number of reactions added to the story"},{"name":"recent_viewers","type":"int53","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"User IDs of some recent viewers of the story"}]},{"kind":"class","name":"storyItemDeleted","type":"StoryItem","id":1374088783,"comment":"Represents a previously active story, that was deleted","arguments":[{"name":"id","type":"int","comment":"Story ID"}]},{"kind":"class","name":"storyItemSkipped","type":"StoryItem","id":4289579283,"comment":"Represents an active story, whose full information was omitted for space and performance reasons; use {@link stories.RawGetStoriesByIDRequest} to fetch full info about the skipped story when and if needed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"close_friends","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Whether this story can only be viewed by our close friends, see here » for more info"},{"name":"id","type":"int","comment":"Story ID"},{"name":"date","type":"int","comment":"When was the story posted."},{"name":"expire_date","type":"int","comment":"When does the story expire."}]},{"kind":"class","name":"storyItem","type":"StoryItem","id":2041735716,"comment":"Represents a story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this story is pinned on the user's profile"},{"name":"public","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether this story is public and can be viewed by everyone"},{"name":"close_friends","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"Whether this story can only be viewed by our close friends, see here » for more info"},{"name":"min","type":"true","typeModifiers":{"predicate":"flags.9"},"comment":"Full information about this story was omitted for space and performance reasons; use {@link stories.RawGetStoriesByIDRequest} to fetch full info about this story when and if needed."},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Whether this story is protected and thus cannot be forwarded; clients should also prevent users from saving attached media (i.e. videos should only be streamed, photos should be kept in RAM, et cetera)."},{"name":"edited","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Indicates whether the story was edited."},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether this story can only be viewed by our contacts"},{"name":"selected_contacts","type":"true","typeModifiers":{"predicate":"flags.13"},"comment":"Whether this story can only be viewed by a select list of our contacts"},{"name":"out","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"indicates whether we sent this story."},{"name":"id","type":"int","comment":"ID of the story."},{"name":"date","type":"int","comment":"When was the story posted."},{"name":"from_id","type":"Peer","typeModifiers":{"predicate":"flags.18"},"comment":"Sender of the story."},{"name":"fwd_from","type":"StoryFwdHeader","typeModifiers":{"predicate":"flags.17"},"comment":"For reposted stories », contains info about the original story."},{"name":"expire_date","type":"int","comment":"When does the story expire."},{"name":"caption","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Story caption."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text"},{"name":"media","type":"MessageMedia","comment":"Story media."},{"name":"media_areas","type":"MediaArea","typeModifiers":{"predicate":"flags.14","isVector":true},"comment":"List of media areas, see here » for more info on media areas."},{"name":"privacy","type":"PrivacyRule","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"Privacy rules indicating who can and can't view this story"},{"name":"views","type":"StoryViews","typeModifiers":{"predicate":"flags.3"},"comment":"View date and reaction information"},{"name":"sent_reaction","type":"Reaction","typeModifiers":{"predicate":"flags.15"},"comment":"The reaction we sent."}]},{"kind":"class","name":"stories.allStoriesNotModified","type":"stories.AllStories","id":291044926,"comment":"The list of active (or active and hidden) stories has not changed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"state","type":"string","comment":"State to use to ask for updates"},{"name":"stealth_mode","type":"StoriesStealthMode","comment":"Current stealth mode information"}]},{"kind":"class","name":"stories.allStories","type":"stories.AllStories","id":1862033025,"comment":"Full list of active (or active and hidden) stories.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"has_more","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether more results can be fetched as described here »."},{"name":"count","type":"int","comment":"Total number of active (or active and hidden) stories"},{"name":"state","type":"string","comment":"State to use for pagination"},{"name":"peer_stories","type":"PeerStories","typeModifiers":{"isVector":true},"comment":"Stories"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"},{"name":"stealth_mode","type":"StoriesStealthMode","comment":"Current stealth mode information"}]},{"kind":"class","name":"stories.stories","type":"stories.Stories","id":1673780490,"comment":"List of stories","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of stories that can be fetched"},{"name":"stories","type":"StoryItem","typeModifiers":{"isVector":true},"comment":"Stories"},{"name":"pinned_to_top","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"IDs of pinned stories."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"storyView","type":"StoryView","id":2965236421,"comment":"Story view date and reaction information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we have completely blocked this user, including from viewing more of our stories."},{"name":"blocked_my_stories_from","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether we have blocked this user from viewing more of our stories."},{"name":"user_id","type":"int53","comment":"The user that viewed the story"},{"name":"date","type":"int","comment":"When did the user view the story"},{"name":"reaction","type":"Reaction","typeModifiers":{"predicate":"flags.2"},"comment":"If present, contains the reaction that the user left on the story"}]},{"kind":"class","name":"storyViewPublicForward","type":"StoryView","id":2424530699,"comment":"A certain peer has forwarded the story as a message to a public chat or channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we have completely blocked this user, including from viewing more of our stories."},{"name":"blocked_my_stories_from","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether we have blocked this user from viewing more of our stories."},{"name":"message","type":"Message","comment":"The message with the forwarded story."}]},{"kind":"class","name":"storyViewPublicRepost","type":"StoryView","id":3178549065,"comment":"A certain peer has reposted the story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"blocked","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we have completely blocked this user, including from viewing more of our stories."},{"name":"blocked_my_stories_from","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether we have blocked this user from viewing more of our stories."},{"name":"peer_id","type":"Peer","comment":"The peer that reposted the story."},{"name":"story","type":"StoryItem","comment":"The reposted story."}]},{"kind":"class","name":"stories.storyViewsList","type":"stories.StoryViewsList","id":1507299269,"comment":"Reaction and view counters for a story","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of results that can be fetched"},{"name":"views_count","type":"int","comment":"Total number of story views"},{"name":"forwards_count","type":"int","comment":"Total number of story forwards/reposts"},{"name":"reactions_count","type":"int","comment":"Number of reactions that were added to the story"},{"name":"views","type":"StoryView","typeModifiers":{"isVector":true},"comment":"Story view date and reaction information"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset for pagination"}]},{"kind":"class","name":"stories.storyViews","type":"stories.StoryViews","id":3734957341,"comment":"Reaction and view counters for a list of stories","arguments":[{"name":"views","type":"StoryViews","typeModifiers":{"isVector":true},"comment":"View date and reaction information of multiple stories"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"inputReplyToMessage","type":"InputReplyTo","id":583071445,"comment":"Reply to a message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reply_to_msg_id","type":"int","comment":"The message ID to reply to."},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"This field must contain the topic ID only when replying to messages in forum topics different from the \"General\" topic (i.e. reply_to_msg_id is set and reply_to_msg_id != topicID and topicID != 1).
If the replied-to message is deleted before the method finishes execution, the value in this field will be used to send the message to the correct topic, instead of the \"General\" topic."},{"name":"reply_to_peer_id","type":"InputPeer","typeModifiers":{"predicate":"flags.1"},"comment":"Used to reply to messages sent to another chat (specified here), can only be used for non-protected chats and messages."},{"name":"quote_text","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Used to quote-reply to only a certain section (specified here) of the original message. The maximum UTF-8 length for quotes is specified in the quote_length_max config key."},{"name":"quote_entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text from the quote_text field."},{"name":"quote_offset","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Offset of the message quote_text within the original message (in UTF-16 code units)."}]},{"kind":"class","name":"inputReplyToStory","type":"InputReplyTo","id":1484862010,"comment":"Reply to a story.","arguments":[{"name":"peer","type":"InputPeer","comment":"Sender of the story"},{"name":"story_id","type":"int","comment":"ID of the story to reply to."}]},{"kind":"class","name":"exportedStoryLink","type":"ExportedStoryLink","id":1070138683,"comment":"Represents a story deep link.","arguments":[{"name":"link","type":"string","comment":"The story deep link."}]},{"kind":"class","name":"storiesStealthMode","type":"StoriesStealthMode","id":1898850301,"comment":"Information about the current stealth mode session.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"active_until_date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"The date up to which stealth mode will be active."},{"name":"cooldown_until_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"The date starting from which the user will be allowed to re-enable stealth mode again."}]},{"kind":"class","name":"mediaAreaCoordinates","type":"MediaAreaCoordinates","id":3486113794,"comment":"Coordinates and size of a clicable rectangular area on top of a story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"x","type":"double","comment":"The abscissa of the rectangle's center, as a percentage of the media width (0-100)."},{"name":"y","type":"double","comment":"The ordinate of the rectangle's center, as a percentage of the media height (0-100)."},{"name":"w","type":"double","comment":"The width of the rectangle, as a percentage of the media width (0-100)."},{"name":"h","type":"double","comment":"The height of the rectangle, as a percentage of the media height (0-100)."},{"name":"rotation","type":"double","comment":"Clockwise rotation angle of the rectangle, in degrees (0-360)."},{"name":"radius","type":"double","typeModifiers":{"predicate":"flags.0"},"comment":"The radius of the rectangle corner rounding, as a percentage of the media width."}]},{"kind":"class","name":"mediaAreaVenue","type":"MediaArea","id":3196246940,"comment":"Represents a location tag attached to a story, with additional venue information.","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the location sticker on top of the story media."},{"name":"geo","type":"GeoPoint","comment":"Coordinates of the venue"},{"name":"title","type":"string","comment":"Venue name"},{"name":"address","type":"string","comment":"Address"},{"name":"provider","type":"string","comment":"Venue provider: currently only \"foursquare\" and \"gplaces\" need to be supported."},{"name":"venue_id","type":"string","comment":"Venue ID in the provider's database"},{"name":"venue_type","type":"string","comment":"Venue type in the provider's database"}]},{"kind":"class","name":"inputMediaAreaVenue","type":"MediaArea","id":2994872703,"comment":"Represents a location tag attached to a story, with additional venue information.","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the location sticker on top of the story media."},{"name":"query_id","type":"long","comment":"The query_id from {@link messages.RawBotResults}, see here » for more info."},{"name":"result_id","type":"string","comment":"The id of the chosen result, see here » for more info."}]},{"kind":"class","name":"mediaAreaGeoPoint","type":"MediaArea","id":3402974509,"comment":"Represents a geolocation tag attached to a story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and position of the media area corresponding to the location sticker on top of the story media."},{"name":"geo","type":"GeoPoint","comment":"Coordinates of the geolocation tag."},{"name":"address","type":"GeoPointAddress","typeModifiers":{"predicate":"flags.0"},"comment":"Optional textual representation of the address."}]},{"kind":"class","name":"mediaAreaSuggestedReaction","type":"MediaArea","id":340088945,"comment":"Represents a reaction bubble.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the reaction bubble has a dark background."},{"name":"flipped","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the reaction bubble is mirrored (see here » for more info)."},{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The coordinates of the media area corresponding to the reaction button."},{"name":"reaction","type":"Reaction","comment":"The reaction that should be sent when this area is clicked."}]},{"kind":"class","name":"mediaAreaChannelPost","type":"MediaArea","id":1996756655,"comment":"Represents a channel post.","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the location sticker on top of the story media."},{"name":"channel_id","type":"int53","comment":"The channel that posted the message"},{"name":"msg_id","type":"int","comment":"ID of the channel message"}]},{"kind":"class","name":"inputMediaAreaChannelPost","type":"MediaArea","id":577893055,"comment":"Represents a channel post","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the location sticker on top of the story media."},{"name":"channel","type":"InputChannel","comment":"The channel that posted the message"},{"name":"msg_id","type":"int","comment":"ID of the channel message"}]},{"kind":"class","name":"mediaAreaUrl","type":"MediaArea","id":926421125,"comment":"Represents a URL media area.","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the URL button on top of the story media."},{"name":"url","type":"string","comment":"URL to open when clicked."}]},{"kind":"class","name":"mediaAreaWeather","type":"MediaArea","id":1235637404,"comment":"Represents a weather widget ».","arguments":[{"name":"coordinates","type":"MediaAreaCoordinates","comment":"The size and location of the media area corresponding to the widget on top of the story media."},{"name":"emoji","type":"string","comment":"Weather emoji, should be rendered as an animated emoji."},{"name":"temperature_c","type":"double","comment":"Temperature in degrees Celsius."},{"name":"color","type":"int","comment":"ARGB background color."}]},{"kind":"class","name":"peerStories","type":"PeerStories","id":2587224473,"comment":"Stories associated to a peer","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"The peer"},{"name":"max_read_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, contains the ID of the maximum read story"},{"name":"stories","type":"StoryItem","typeModifiers":{"isVector":true},"comment":"Stories"}]},{"kind":"class","name":"stories.peerStories","type":"stories.PeerStories","id":3404105576,"comment":"Active story list of a specific peer.","arguments":[{"name":"stories","type":"PeerStories","comment":"Stories"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.webPage","type":"messages.WebPage","id":4250800829,"comment":"Represents an Instant View webpage.","arguments":[{"name":"webpage","type":"WebPage","comment":"The instant view webpage."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in the webpage."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the webpage."}]},{"kind":"class","name":"premiumGiftCodeOption","type":"PremiumGiftCodeOption","id":629052971,"comment":"Contains info about a giveaway/gift option.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"users","type":"int","comment":"Number of users which will be able to activate the gift codes."},{"name":"months","type":"int","comment":"Duration in months of each gifted Telegram Premium subscription."},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Identifier of the store product associated with the option, official apps only."},{"name":"store_quantity","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Number of times the store product must be paid"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"payments.checkedGiftCode","type":"payments.CheckedGiftCode","id":675942550,"comment":"Contains info about a Telegram Premium giftcode link.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"via_giveaway","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this giftcode was created by a giveaway."},{"name":"from_id","type":"Peer","typeModifiers":{"predicate":"flags.4"},"comment":"The peer that created the gift code."},{"name":"giveaway_msg_id","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Message ID of the giveaway in the channel specified in from_id."},{"name":"to_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"The destination user of the gift."},{"name":"date","type":"int","comment":"Creation date of the gift code."},{"name":"months","type":"int","comment":"Duration in months of the gifted Telegram Premium subscription."},{"name":"used_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"When was the giftcode imported, if it was imported."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"payments.giveawayInfo","type":"payments.GiveawayInfo","id":1130879648,"comment":"Contains info about an ongoing giveaway.\n\nIf neither the participating, joined_too_early_date, admin_disallowed_chat_id or disallowed_country flags are set, the user is not currently participating in the giveaway but could participate by joining all the channels specified in the {@link RawMessageMediaGiveaway}.channels field.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"participating","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"The current user is participating in the giveaway."},{"name":"preparing_results","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, the giveaway has ended and the results are being prepared."},{"name":"start_date","type":"int","comment":"When was the giveaway started"},{"name":"joined_too_early_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"The current user can't participate in the giveaway, because they were already a member of the channel when the giveaway started, and the only_new_subscribers was set when starting the giveaway."},{"name":"admin_disallowed_chat_id","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the current user can't participate in the giveaway, because they are an administrator in one of the channels (ID specified in this flag) that created the giveaway."},{"name":"disallowed_country","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"If set, the current user can't participate in this giveaway, because their phone number is from the specified disallowed country (specified as a two-letter ISO 3166-1 alpha-2 country code)."}]},{"kind":"class","name":"payments.giveawayInfoResults","id":3782600303,"type":"payments.GiveawayInfo","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"winner","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether we're one of the winners of this giveaway."},{"name":"refunded","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the giveaway was canceled and was fully refunded."},{"name":"start_date","type":"int","comment":"Start date of the giveaway"},{"name":"gift_code_slug","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"If we're one of the winners of this giveaway, contains the Premium gift code, see here » for more info on the full giveaway flow."},{"name":"stars_prize","type":"long","typeModifiers":{"predicate":"flags.4"}},{"name":"finish_date","type":"int","comment":"End date of the giveaway. May be bigger than the end date specified in parameters of the giveaway."},{"name":"winners_count","type":"int","comment":"Number of winners in the giveaway"},{"name":"activated_count","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Number of winners, which activated their gift codes."}],"comment":"A giveaway has ended."},{"kind":"class","name":"prepaidGiveaway","type":"PrepaidGiveaway","id":2991824212,"comment":"Contains info about a prepaid giveaway ».","arguments":[{"name":"id","type":"long","comment":"Prepaid giveaway ID."},{"name":"months","type":"int","comment":"Duration in months of each gifted Telegram Premium subscription."},{"name":"quantity","type":"int","comment":"Number of given away Telegram Premium subscriptions."},{"name":"date","type":"int","comment":"Payment date."}]},{"kind":"class","name":"prepaidStarsGiveaway","type":"PrepaidGiveaway","id":2594011104,"comment":"Contains info about a prepaid Telegram Star giveaway ».","arguments":[{"name":"id","type":"long","comment":"Prepaid giveaway ID."},{"name":"stars","type":"long","comment":"Number of given away Telegram Stars »"},{"name":"quantity","type":"int","comment":"Number of giveaway winners"},{"name":"boosts","type":"int","comment":"Number of boosts the channel will gain by launching the giveaway."},{"name":"date","type":"int","comment":"When was the giveaway paid for"}]},{"kind":"class","name":"boost","id":1262359766,"type":"Boost","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"gift","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this boost was applied because the channel/supergroup directly gifted a subscription to the user."},{"name":"giveaway","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this boost was applied because the user was chosen in a giveaway started by the channel/supergroup."},{"name":"unclaimed","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, the user hasn't yet invoked {@link payments.RawApplyGiftCodeRequest} to claim a subscription gifted directly or in a giveaway by the channel."},{"name":"id","type":"string","comment":"Unique ID for this set of boosts."},{"name":"user_id","type":"int53","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the user that applied the boost."},{"name":"giveaway_msg_id","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"The message ID of the giveaway"},{"name":"date","type":"int","comment":"When was the boost applied"},{"name":"expires","type":"int","comment":"When does the boost expire"},{"name":"used_gift_slug","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"The created Telegram Premium gift code, only set if either gift or giveaway are set AND it is either a gift code for the currently logged in user or if it was already claimed."},{"name":"multiplier","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"If set, this boost counts as multiplier boosts, otherwise it counts as a single boost."},{"name":"stars","type":"long","typeModifiers":{"predicate":"flags.6"}}],"comment":"Info about one or more boosts applied by a specific user."},{"kind":"class","name":"premium.boostsList","type":"premium.BoostsList","id":2264424764,"comment":"List of boosts that were applied to a peer by multiple users.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of results"},{"name":"boosts","type":"Boost","typeModifiers":{"isVector":true},"comment":"Boosts"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset that can be used for pagination."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"myBoost","type":"MyBoost","id":3293069660,"comment":"Contains information about a single boost slot ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"slot","type":"int","comment":"Boost slot ID »"},{"name":"peer","type":"Peer","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates this slot is currently occupied, i.e. we are boosting this peer.
Note that we can assign multiple boost slots to the same peer."},{"name":"date","type":"int","comment":"When (unixtime) we started boosting the peer, 0 otherwise."},{"name":"expires","type":"int","comment":"Indicates the (unixtime) expiration date of the boost in peer (0 if peer is not set)."},{"name":"cooldown_until_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"If peer is set, indicates the (unixtime) date after which this boost can be reassigned to another channel."}]},{"kind":"class","name":"premium.myBoosts","type":"premium.MyBoosts","id":2598512866,"comment":"A list of peers we are currently boosting, and how many boost slots we have left.","arguments":[{"name":"my_boosts","type":"MyBoost","typeModifiers":{"isVector":true},"comment":"Info about boosted peers and remaining boost slots."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Referenced chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Referenced users"}]},{"kind":"class","name":"premium.boostsStatus","type":"premium.BoostsStatus","id":1230586490,"comment":"Contains info about the current boost status of a peer.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my_boost","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether we're currently boosting this channel/supergroup, my_boost_slots will also be set."},{"name":"level","type":"int","comment":"The current boost level of the channel/supergroup."},{"name":"current_level_boosts","type":"int","comment":"The number of boosts acquired so far in the current level."},{"name":"boosts","type":"int","comment":"Total number of boosts acquired so far."},{"name":"gift_boosts","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"The number of boosts acquired from created Telegram Premium gift codes and giveaways; only returned to channel/supergroup admins."},{"name":"next_level_boosts","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Total number of boosts needed to reach the next level; if absent, the next level isn't available."},{"name":"premium_audience","type":"StatsPercentValue","typeModifiers":{"predicate":"flags.1"},"comment":"Only returned to channel/supergroup admins: contains the approximated number of Premium users subscribed to the channel/supergroup, related to the total number of subscribers."},{"name":"boost_url","type":"string","comment":"Boost deep link » that can be used to boost the chat."},{"name":"prepaid_giveaways","type":"PrepaidGiveaway","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"A list of prepaid giveaways available for the chat; only returned to channel/supergroup admins."},{"name":"my_boost_slots","type":"int","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"Indicates which of our boost slots we've assigned to this peer (populated if my_boost is set)."}]},{"kind":"class","name":"storyFwdHeader","type":"StoryFwdHeader","id":3089555792,"comment":"Contains info about the original poster of a reposted story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"modified","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the story media was modified before reposting it (for example by overlaying a round video with a reaction)."},{"name":"from","type":"Peer","typeModifiers":{"predicate":"flags.0"},"comment":"Peer that originally posted the story; will be empty for stories forwarded from a user with forwards privacy enabled, in which case from_name will be set, instead."},{"name":"from_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Will be set for stories forwarded from a user with forwards privacy enabled, in which case from will also be empty."},{"name":"story_id","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":", contains the story ID"}]},{"kind":"class","name":"postInteractionCountersMessage","type":"PostInteractionCounters","id":3875901055,"comment":"Interaction counters for a message.","arguments":[{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"views","type":"int","comment":"Number of views"},{"name":"forwards","type":"int","comment":"Number of forwards to public channels"},{"name":"reactions","type":"int","comment":"Number of reactions"}]},{"kind":"class","name":"postInteractionCountersStory","type":"PostInteractionCounters","id":2319978023,"comment":"Interaction counters for a story.","arguments":[{"name":"story_id","type":"int","comment":"Story ID"},{"name":"views","type":"int","comment":"Number of views"},{"name":"forwards","type":"int","comment":"Number of forwards and reposts to public chats and channels"},{"name":"reactions","type":"int","comment":"Number of reactions"}]},{"kind":"class","name":"stats.storyStats","type":"stats.StoryStats","id":1355613820,"comment":"Contains statistics about a story.","arguments":[{"name":"views_graph","type":"StatsGraph","comment":"A graph containing the number of story views and shares"},{"name":"reactions_by_emotion_graph","type":"StatsGraph","comment":"A bar graph containing the number of story reactions categorized by \"emotion\" (i.e. Positive, Negative, Other, etc...)"}]},{"kind":"class","name":"publicForwardMessage","type":"PublicForward","id":32685898,"comment":"Contains info about a forward of a story as a message.","arguments":[{"name":"message","type":"Message","comment":"Info about the message with the reposted story."}]},{"kind":"class","name":"publicForwardStory","type":"PublicForward","id":3992169936,"comment":"Contains info about a forward of a story as a repost by a public channel.","arguments":[{"name":"peer","type":"Peer","comment":"The channel that reposted the story."},{"name":"story","type":"StoryItem","comment":"The reposted story (may be different from the original story)."}]},{"kind":"class","name":"stats.publicForwards","type":"stats.PublicForwards","id":2466479648,"comment":"Contains info about the forwards of a story as a message to public chats and reposts by public channels.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of results"},{"name":"forwards","type":"PublicForward","typeModifiers":{"isVector":true},"comment":"Info about the forwards of a story."},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset used for pagination."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"peerColor","type":"PeerColor","id":3041614543,"comment":"Represents a color palette ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"color","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Color palette ID, see here » for more info; if not set, the default palette should be used."},{"name":"background_emoji_id","type":"long","typeModifiers":{"predicate":"flags.1"},"comment":"Optional custom emoji ID used to generate the pattern."}]},{"kind":"class","name":"help.peerColorSet","type":"help.PeerColorSet","id":639736408,"comment":"Represents a color palette that can be used in message accents ».","arguments":[{"name":"colors","type":"int","typeModifiers":{"isVector":true},"comment":"A list of 1-3 colors in RGB format, describing the accent color."}]},{"kind":"class","name":"help.peerColorProfileSet","type":"help.PeerColorSet","id":1987928555,"comment":"Represents a color palette that can be used in profile pages ».","arguments":[{"name":"palette_colors","type":"int","typeModifiers":{"isVector":true},"comment":"A list of 1-2 colors in RGB format, shown in the color palette settings to describe the current palette."},{"name":"bg_colors","type":"int","typeModifiers":{"isVector":true},"comment":"A list of 1-2 colors in RGB format describing the colors used to generate the actual background used in the profile page."},{"name":"story_colors","type":"int","typeModifiers":{"isVector":true},"comment":"A list of 2 colors in RGB format describing the colors of the gradient used for the unread active story indicator around the profile photo."}]},{"kind":"class","name":"help.peerColorOption","type":"help.PeerColorOption","id":2917953214,"comment":"Contains info about a color palette ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"hidden","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this palette should not be displayed as an option to the user when choosing a palette to apply to profile pages or message accents."},{"name":"color_id","type":"int","comment":"Palette ID."},{"name":"colors","type":"help.PeerColorSet","typeModifiers":{"predicate":"flags.1"},"comment":"Light mode palette.
Will be empty for IDs 0 to 6 inclusive, in which case a palette containing a single color from the following colors should be used: red, orange, violet, green, cyan, blue, pink for indexes 0 to 6 (i.e. the same colors used for randomized fallback message accent colors)."},{"name":"dark_colors","type":"help.PeerColorSet","typeModifiers":{"predicate":"flags.2"},"comment":"Dark mode palette. Optional, defaults to the palette in colors (or the autogenerated palette for IDs 0 to 6) if absent."},{"name":"channel_min_level","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Channels can use this palette only after reaching at least the boost level specified in this field."},{"name":"group_min_level","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Supergroups can use this palette only after reaching at least the boost level specified in this field."}]},{"kind":"class","name":"help.peerColorsNotModified","type":"help.PeerColors","id":732034510,"comment":"The list of color palettes has not changed.","arguments":[]},{"kind":"class","name":"help.peerColors","type":"help.PeerColors","id":16313608,"comment":"Contains info about multiple color palettes ».","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"colors","type":"help.PeerColorOption","typeModifiers":{"isVector":true},"comment":"Usable color palettes."}]},{"kind":"class","name":"storyReaction","type":"StoryReaction","id":1620104917,"comment":"How a certain peer reacted to a story","arguments":[{"name":"peer_id","type":"Peer","comment":"The peer"},{"name":"date","type":"int","comment":"Reaction date"},{"name":"reaction","type":"Reaction","comment":"The reaction"}]},{"kind":"class","name":"storyReactionPublicForward","type":"StoryReaction","id":3148555843,"comment":"A certain peer has forwarded the story as a message to a public chat or channel.","arguments":[{"name":"message","type":"Message","comment":"The message with the forwarded story."}]},{"kind":"class","name":"storyReactionPublicRepost","type":"StoryReaction","id":3486322451,"comment":"A certain peer has reposted the story.","arguments":[{"name":"peer_id","type":"Peer","comment":"The peer that reposted the story."},{"name":"story","type":"StoryItem","comment":"The reposted story."}]},{"kind":"class","name":"stories.storyReactionsList","type":"stories.StoryReactionsList","id":2858383516,"comment":"List of peers that reacted to or intercated with a specific story","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of reactions matching query"},{"name":"reactions","type":"StoryReaction","typeModifiers":{"isVector":true},"comment":"List of peers that reacted to or interacted with a specific story"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates the next offset to use to load more results by invoking {@link stories.RawGetStoryReactionsListRequest}."}]},{"kind":"class","name":"savedDialog","type":"SavedDialog","id":3179793260,"comment":"Represents a saved dialog ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Is the dialog pinned"},{"name":"peer","type":"Peer","comment":"The dialog"},{"name":"top_message","type":"int","comment":"The latest message ID"}]},{"kind":"class","name":"messages.savedDialogs","type":"messages.SavedDialogs","id":4164608545,"comment":"Represents some saved message dialogs ».","arguments":[{"name":"dialogs","type":"SavedDialog","typeModifiers":{"isVector":true},"comment":"Saved message dialogs »."},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of last messages from each saved dialog"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.savedDialogsSlice","type":"messages.SavedDialogs","id":1153080793,"comment":"Incomplete list of saved message dialogs » with messages and auxiliary data.","arguments":[{"name":"count","type":"int","comment":"Total number of saved message dialogs"},{"name":"dialogs","type":"SavedDialog","typeModifiers":{"isVector":true},"comment":"List of saved message dialogs"},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"List of last messages from dialogs"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.savedDialogsNotModified","type":"messages.SavedDialogs","id":3223285736,"comment":"The saved dialogs haven't changed","arguments":[{"name":"count","type":"int","comment":"Number of saved dialogs found server-side by the query"}]},{"kind":"class","name":"savedReactionTag","type":"SavedReactionTag","id":3413112872,"comment":"Info about a saved message reaction tag ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reaction","type":"Reaction","comment":"Reaction associated to the tag."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Custom tag name assigned by the user (max 12 UTF-8 chars)."},{"name":"count","type":"int","comment":"Number of messages tagged with this tag."}]},{"kind":"class","name":"messages.savedReactionTagsNotModified","type":"messages.SavedReactionTags","id":2291882479,"comment":"The list of reaction tag » names assigned by the user hasn't changed.","arguments":[]},{"kind":"class","name":"messages.savedReactionTags","type":"messages.SavedReactionTags","id":844731658,"comment":"List of reaction tag » names assigned by the user.","arguments":[{"name":"tags","type":"SavedReactionTag","typeModifiers":{"isVector":true},"comment":"Saved reaction tags."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}]},{"kind":"class","name":"outboxReadDate","type":"OutboxReadDate","id":1001931436,"comment":"Exact read date of a private message we sent to another user.","arguments":[{"name":"date","type":"int","comment":"UNIX timestamp with the read date."}]},{"kind":"class","name":"smsjobs.eligibleToJoin","type":"smsjobs.EligibilityToJoin","id":3700114639,"comment":"SMS jobs eligibility","arguments":[{"name":"terms_url","type":"string","comment":"Terms of service URL"},{"name":"monthly_sent_sms","type":"int","comment":"Monthly sent SMSes"}]},{"kind":"class","name":"smsjobs.status","type":"smsjobs.Status","id":720277905,"comment":"Status","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"allow_international","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Allow international numbers"},{"name":"recent_sent","type":"int","comment":"Recently sent"},{"name":"recent_since","type":"int","comment":"Since"},{"name":"recent_remains","type":"int","comment":"Remaining"},{"name":"total_sent","type":"int","comment":"Total sent"},{"name":"total_since","type":"int","comment":"Total since"},{"name":"last_gift_slug","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Last gift deep link"},{"name":"terms_url","type":"string","comment":"Terms of service URL"}]},{"kind":"class","name":"smsJob","type":"SmsJob","id":3869372088,"comment":"Info about an SMS job.","arguments":[{"name":"job_id","type":"string","comment":"Job ID"},{"name":"phone_number","type":"string","comment":"Destination phone number"},{"name":"text","type":"string","comment":"Text"}]},{"kind":"class","name":"businessWeeklyOpen","type":"BusinessWeeklyOpen","id":302717625,"comment":"A time interval, indicating the opening hours of a business.\n\nNote that opening hours specified by the user must be appropriately validated and transformed before uploading them to the server, as specified here ».","arguments":[{"name":"start_minute","type":"int","comment":"Start minute in minutes of the week, 0 to 7*24*60 inclusively."},{"name":"end_minute","type":"int","comment":"End minute in minutes of the week, 1 to 8*24*60 inclusively (8 and not 7 because this allows to specify intervals that, for example, start on Sunday 21:00 and end on Monday 04:00 (6*24*60+21*60 to 7*24*60+4*60) without passing an invalid end_minute < start_minute). See here » for more info."}]},{"kind":"class","name":"businessWorkHours","type":"BusinessWorkHours","id":2358423704,"comment":"Specifies a set of Telegram Business opening hours.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"open_now","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Ignored if set while invoking {@link account.RawUpdateBusinessWorkHoursRequest}, only returned by the server in {@link RawUserFull}.business_work_hours, indicating whether the business is currently open according to the current time and the values in weekly_open and timezone."},{"name":"timezone_id","type":"string","comment":"An ID of one of the timezones returned by {@link help.RawGetTimezonesListRequest}.
The timezone ID is contained {@link RawTimezone}.id, a human-readable, localized name of the timezone is available in {@link RawTimezone}.name and the {@link RawTimezone}.utc_offset field contains the UTC offset in seconds, which may be displayed in hh:mm format by the client together with the human-readable name (i.e. $name UTC -01:00)."},{"name":"weekly_open","type":"BusinessWeeklyOpen","typeModifiers":{"isVector":true},"comment":"A list of time intervals (max 28) represented by {@link RawBusinessWeeklyOpen}, indicating the opening hours of their business."}]},{"kind":"class","name":"businessLocation","type":"BusinessLocation","id":2891717367,"comment":"Represents the location of a Telegram Business ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo_point","type":"GeoPoint","typeModifiers":{"predicate":"flags.0"},"comment":"Geographical coordinates (optional)."},{"name":"address","type":"string","comment":"Textual description of the address (mandatory)."}]},{"kind":"class","name":"inputBusinessRecipients","type":"InputBusinessRecipients","id":1871393450,"comment":"Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"existing_chats","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"All existing private chats."},{"name":"new_chats","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"All new private chats."},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"All private chats with contacts."},{"name":"non_contacts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"All private chats with non-contacts."},{"name":"exclude_selected","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, inverts the selection."},{"name":"users","type":"InputUser","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Only private chats with the specified users."}]},{"kind":"class","name":"businessRecipients","type":"BusinessRecipients","id":554733559,"comment":"Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"existing_chats","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"All existing private chats."},{"name":"new_chats","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"All new private chats."},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"All private chats with contacts."},{"name":"non_contacts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"All private chats with non-contacts."},{"name":"exclude_selected","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, inverts the selection."},{"name":"users","type":"int53","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Only private chats with the specified users."}]},{"kind":"class","name":"businessAwayMessageScheduleAlways","type":"BusinessAwayMessageSchedule","id":3384402617,"comment":"Always send Telegram Business away messages to users writing to us in private.","arguments":[]},{"kind":"class","name":"businessAwayMessageScheduleOutsideWorkHours","type":"BusinessAwayMessageSchedule","id":3287479553,"comment":"Send Telegram Business away messages to users writing to us in private outside of the configured Telegram Business working hours.","arguments":[]},{"kind":"class","name":"businessAwayMessageScheduleCustom","type":"BusinessAwayMessageSchedule","id":3427638988,"comment":"Send Telegram Business away messages to users writing to us in private in the specified time span.","arguments":[{"name":"start_date","type":"int","comment":"Start date (UNIX timestamp)."},{"name":"end_date","type":"int","comment":"End date (UNIX timestamp)."}]},{"kind":"class","name":"inputBusinessGreetingMessage","type":"InputBusinessGreetingMessage","id":26528571,"comment":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","arguments":[{"name":"shortcut_id","type":"int","comment":"ID of a quick reply shorcut, containing the greeting messages to send, see here » for more info."},{"name":"recipients","type":"InputBusinessRecipients","comment":"Allowed recipients for the greeting messages."},{"name":"no_activity_days","type":"int","comment":"The number of days after which a private chat will be considered as inactive; currently, must be one of 7, 14, 21, or 28."}]},{"kind":"class","name":"businessGreetingMessage","type":"BusinessGreetingMessage","id":3843664811,"comment":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","arguments":[{"name":"shortcut_id","type":"int","comment":"ID of a quick reply shorcut, containing the greeting messages to send, see here » for more info."},{"name":"recipients","type":"BusinessRecipients","comment":"Allowed recipients for the greeting messages."},{"name":"no_activity_days","type":"int","comment":"The number of days after which a private chat will be considered as inactive; currently, must be one of 7, 14, 21, or 28."}]},{"kind":"class","name":"inputBusinessAwayMessage","type":"InputBusinessAwayMessage","id":2200008160,"comment":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"offline_only","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the messages will not be sent if the account was online in the last 10 minutes."},{"name":"shortcut_id","type":"int","comment":"ID of a quick reply shorcut, containing the away messages to send, see here » for more info."},{"name":"schedule","type":"BusinessAwayMessageSchedule","comment":"Specifies when should the away messages be sent."},{"name":"recipients","type":"InputBusinessRecipients","comment":"Allowed recipients for the away messages."}]},{"kind":"class","name":"businessAwayMessage","type":"BusinessAwayMessage","id":4011158108,"comment":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"offline_only","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the messages will not be sent if the account was online in the last 10 minutes."},{"name":"shortcut_id","type":"int","comment":"ID of a quick reply shorcut, containing the away messages to send, see here » for more info."},{"name":"schedule","type":"BusinessAwayMessageSchedule","comment":"Specifies when should the away messages be sent."},{"name":"recipients","type":"BusinessRecipients","comment":"Allowed recipients for the away messages."}]},{"kind":"class","name":"timezone","type":"Timezone","id":4287793653,"comment":"Timezone information.","arguments":[{"name":"id","type":"string","comment":"Unique timezone ID."},{"name":"name","type":"string","comment":"Human-readable and localized timezone name."},{"name":"utc_offset","type":"int","comment":"UTC offset in seconds, which may be displayed in hh:mm format by the client together with the human-readable name (i.e. $name UTC -01:00)."}]},{"kind":"class","name":"help.timezonesListNotModified","type":"help.TimezonesList","id":2533820620,"comment":"The timezone list has not changed.","arguments":[]},{"kind":"class","name":"help.timezonesList","type":"help.TimezonesList","id":2071260529,"comment":"Timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».","arguments":[{"name":"timezones","type":"Timezone","typeModifiers":{"isVector":true},"comment":"Timezones"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"}]},{"kind":"class","name":"quickReply","type":"QuickReply","id":110563371,"comment":"A quick reply shortcut.","arguments":[{"name":"shortcut_id","type":"int","comment":"Unique shortcut ID."},{"name":"shortcut","type":"string","comment":"Shortcut name."},{"name":"top_message","type":"int","comment":"ID of the last message in the shortcut."},{"name":"count","type":"int","comment":"Total number of messages in the shortcut."}]},{"kind":"class","name":"inputQuickReplyShortcut","type":"InputQuickReplyShortcut","id":609840449,"comment":"Selects a quick reply shortcut by name.","arguments":[{"name":"shortcut","type":"string","comment":"Shortcut name."}]},{"kind":"class","name":"inputQuickReplyShortcutId","type":"InputQuickReplyShortcut","id":18418929,"comment":"Selects a quick reply shortcut by its numeric ID.","arguments":[{"name":"shortcut_id","type":"int","comment":"Shortcut ID."}]},{"kind":"class","name":"messages.quickReplies","type":"messages.QuickReplies","id":3331155605,"comment":"Info about quick reply shortcuts ».","arguments":[{"name":"quick_replies","type":"QuickReply","typeModifiers":{"isVector":true},"comment":"Quick reply shortcuts."},{"name":"messages","type":"Message","typeModifiers":{"isVector":true},"comment":"Messages mentioned in quick_replies."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"messages.quickRepliesNotModified","type":"messages.QuickReplies","id":1603398491,"comment":"Info about quick reply shortcuts » hasn't changed.","arguments":[]},{"kind":"class","name":"connectedBot","type":"ConnectedBot","id":3171321345,"comment":"Contains info about a connected business bot ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_reply","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the the bot can reply to messages it receives through the connection"},{"name":"bot_id","type":"int53","comment":"ID of the connected bot"},{"name":"recipients","type":"BusinessBotRecipients","comment":"Specifies the private chats that a connected business bot » may receive messages and interact with.
"}]},{"kind":"class","name":"account.connectedBots","type":"account.ConnectedBots","id":400029819,"comment":"Info about currently connected business bots.","arguments":[{"name":"connected_bots","type":"ConnectedBot","typeModifiers":{"isVector":true},"comment":"Info about the connected bots"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Bot information"}]},{"kind":"class","name":"messages.dialogFilters","type":"messages.DialogFilters","id":718878489,"comment":"Folder and folder tags information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"tags_enabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether folder tags are enabled."},{"name":"filters","type":"DialogFilter","typeModifiers":{"isVector":true},"comment":"Folders."}]},{"kind":"class","name":"birthday","type":"Birthday","id":1821253126,"comment":"Birthday information for a user.\n\nAlso used to invite users to gift Telegram Premium subscriptions » to other users with birthdays within a +1/-1 day time range, related to the current day.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"day","type":"int","comment":"Birth day"},{"name":"month","type":"int","comment":"Birth month"},{"name":"year","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"(Optional) birth year."}]},{"kind":"class","name":"botBusinessConnection","type":"BotBusinessConnection","id":2305045428,"comment":"Contains info about a bot business connection.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_reply","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the bot can reply on behalf of the user to messages it receives through the business connection"},{"name":"disabled","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this business connection is currently disabled"},{"name":"connection_id","type":"string","comment":"Business connection ID, used to identify messages coming from the connection and to reply to them as specified here »."},{"name":"user_id","type":"int53","comment":"ID of the user that the bot is connected to via this connection."},{"name":"dc_id","type":"int","comment":"ID of the datacenter where to send queries wrapped in a {@link RawInvokeWithBusinessConnectionRequest} as specified here »."},{"name":"date","type":"int","comment":"When was the connection created."}]},{"kind":"class","name":"inputBusinessIntro","type":"InputBusinessIntro","id":163867085,"comment":"Telegram Business introduction ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Title of the introduction message"},{"name":"description","type":"string","comment":"Profile introduction"},{"name":"sticker","type":"InputDocument","typeModifiers":{"predicate":"flags.0"},"comment":"Optional introduction sticker."}]},{"kind":"class","name":"businessIntro","type":"BusinessIntro","id":1510606445,"comment":"Telegram Business introduction ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"title","type":"string","comment":"Title of the introduction message (max intro_title_length_limit » UTF-8 characters)."},{"name":"description","type":"string","comment":"Profile introduction (max intro_description_length_limit » UTF-8 characters)."},{"name":"sticker","type":"Document","typeModifiers":{"predicate":"flags.0"},"comment":"Optional introduction sticker."}]},{"kind":"class","name":"messages.myStickers","type":"messages.MyStickers","id":4211040925,"comment":"The list of stickersets owned by the current account ».","arguments":[{"name":"count","type":"int","comment":"Total number of owned stickersets."},{"name":"sets","type":"StickerSetCovered","typeModifiers":{"isVector":true},"comment":"Stickersets"}]},{"kind":"class","name":"inputCollectibleUsername","type":"InputCollectible","id":3818152105,"comment":"Represents a username fragment collectible","arguments":[{"name":"username","type":"string","comment":"Username"}]},{"kind":"class","name":"inputCollectiblePhone","type":"InputCollectible","id":2732725412,"comment":"Represents a phone number fragment collectible","arguments":[{"name":"phone","type":"string","comment":"Phone number"}]},{"kind":"class","name":"fragment.collectibleInfo","type":"fragment.CollectibleInfo","id":1857945489,"comment":"Info about a fragment collectible.","arguments":[{"name":"purchase_date","type":"int","comment":"Purchase date (unixtime)"},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code for amount"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"crypto_currency","type":"string","comment":"Cryptocurrency name."},{"name":"crypto_amount","type":"long","comment":"Price, in the smallest units of the cryptocurrency."},{"name":"url","type":"string","comment":"Fragment URL with more info about the collectible"}]},{"kind":"class","name":"inputBusinessBotRecipients","type":"InputBusinessBotRecipients","id":3303379486,"comment":"Specifies the private chats that a connected business bot » may interact with.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"existing_chats","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Selects all existing private chats."},{"name":"new_chats","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Selects all new private chats."},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Selects all private chats with contacts."},{"name":"non_contacts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Selects all private chats with non-contacts."},{"name":"exclude_selected","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, then all private chats except the ones selected by existing_chats, new_chats, contacts, non_contacts and users are chosen.
Note that if this flag is set, any values passed in exclude_users will be merged and moved into users by the server."},{"name":"users","type":"InputUser","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Explicitly selected private chats."},{"name":"exclude_users","type":"InputUser","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Identifiers of private chats that are always excluded."}]},{"kind":"class","name":"businessBotRecipients","type":"BusinessBotRecipients","id":3096245107,"comment":"Specifies the private chats that a connected business bot » may receive messages and interact with.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"existing_chats","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Selects all existing private chats."},{"name":"new_chats","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Selects all new private chats."},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Selects all private chats with contacts."},{"name":"non_contacts","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Selects all private chats with non-contacts."},{"name":"exclude_selected","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, then all private chats except the ones selected by existing_chats, new_chats, contacts, non_contacts and users are chosen.
Note that if this flag is set, any values passed in exclude_users will be merged and moved into users by the server, thus exclude_users will always be empty."},{"name":"users","type":"int53","typeModifiers":{"predicate":"flags.4","isVector":true},"comment":"Explicitly selected private chats."},{"name":"exclude_users","type":"int53","typeModifiers":{"predicate":"flags.6","isVector":true},"comment":"Identifiers of private chats that are always excluded."}]},{"kind":"class","name":"contactBirthday","type":"ContactBirthday","id":496600883,"comment":"Birthday information of a contact.","arguments":[{"name":"contact_id","type":"int53","comment":"User ID."},{"name":"birthday","type":"Birthday","comment":"Birthday information."}]},{"kind":"class","name":"contacts.contactBirthdays","type":"contacts.ContactBirthdays","id":290452237,"comment":"Birthday information of our contacts.","arguments":[{"name":"contacts","type":"ContactBirthday","typeModifiers":{"isVector":true},"comment":"Birthday info"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"User information"}]},{"kind":"class","name":"missingInvitee","type":"MissingInvitee","id":1653379620,"comment":"Info about why a specific user could not be invited ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"premium_would_allow_invite","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, we could not add the user only because the current account needs to purchase a Telegram Premium subscription to complete the operation."},{"name":"premium_required_for_pm","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, we could not add the user because of their privacy settings, and additionally, the current account needs to purchase a Telegram Premium subscription to directly share an invite link with the user via a private message."},{"name":"user_id","type":"int53","comment":"ID of the user. If neither of the flags below are set, we could not add the user because of their privacy settings, and we can create and directly share an invite link with them using a normal message, instead."}]},{"kind":"class","name":"messages.invitedUsers","type":"messages.InvitedUsers","id":2136862630,"comment":"Contains info about successfully or unsuccessfully invited » users.","arguments":[{"name":"updates","type":"Updates","comment":"List of updates about successfully invited users (and eventually info about the created group)"},{"name":"missing_invitees","type":"MissingInvitee","typeModifiers":{"isVector":true},"comment":"A list of users that could not be invited, along with the reason why they couldn't be invited."}]},{"kind":"class","name":"inputBusinessChatLink","type":"InputBusinessChatLink","id":292003751,"comment":"Contains info about a business chat deep link » to be created by the current account.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message","type":"string","comment":"Message to pre-fill in the message input field."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Message entities for styled text"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Human-readable name of the link, to simplify management in the UI (only visible to the creator of the link)."}]},{"kind":"class","name":"businessChatLink","type":"BusinessChatLink","id":3031328367,"comment":"Contains info about a business chat deep link » created by the current account.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"link","type":"string","comment":"Business chat deep link."},{"name":"message","type":"string","comment":"Message to pre-fill in the message input field."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Message entities for styled text"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Human-readable name of the link, to simplify management in the UI (only visible to the creator of the link)."},{"name":"views","type":"int","comment":"Number of times the link was resolved (clicked/scanned/etc...)."}]},{"kind":"class","name":"account.businessChatLinks","type":"account.BusinessChatLinks","id":3963855569,"comment":"Contains info about business chat deep links » created by the current account.","arguments":[{"name":"links","type":"BusinessChatLink","typeModifiers":{"isVector":true},"comment":"Links"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"account.resolvedBusinessChatLinks","type":"account.ResolvedBusinessChatLinks","id":2586029857,"comment":"Contains info about a single resolved business chat deep link ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"Peer","comment":"Destination peer"},{"name":"message","type":"string","comment":"Message to pre-fill in the message input field."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Message entities for styled text"},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"requestedPeerUser","type":"RequestedPeer","id":3593466986,"comment":"Info about a user, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen user, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"user_id","type":"int53","comment":"User ID."},{"name":"first_name","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"First name."},{"name":"last_name","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Last name."},{"name":"username","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Username."},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.2"},"comment":"Profile photo."}]},{"kind":"class","name":"requestedPeerChat","type":"RequestedPeer","id":1929860175,"comment":"Info about a chat, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen chat, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chat_id","type":"int53","comment":"Chat ID."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Chat title."},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.2"},"comment":"Chat photo."}]},{"kind":"class","name":"requestedPeerChannel","type":"RequestedPeer","id":2342781924,"comment":"Info about a channel/supergroup, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen channel/supergroup, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel_id","type":"int53","comment":"Channel/supergroup ID."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Channel/supergroup title."},{"name":"username","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Channel/supergroup username."},{"name":"photo","type":"Photo","typeModifiers":{"predicate":"flags.2"},"comment":"Channel/supergroup photo."}]},{"kind":"class","name":"sponsoredMessageReportOption","type":"SponsoredMessageReportOption","id":1124938064,"comment":"A report option for a sponsored message ».","arguments":[{"name":"text","type":"string","comment":"Localized description of the option."},{"name":"option","type":"bytes","comment":"Option identifier to pass to {@link channels.RawReportSponsoredMessageRequest}."}]},{"kind":"class","name":"channels.sponsoredMessageReportResultChooseOption","type":"channels.SponsoredMessageReportResult","id":2221907522,"comment":"The user must choose a report option from the localized options available in options, and after selection, {@link channels.RawReportSponsoredMessageRequest} must be invoked again, passing the option's option field to the option param of the method.","arguments":[{"name":"title","type":"string","comment":"Title of the option selection popup."},{"name":"options","type":"SponsoredMessageReportOption","typeModifiers":{"isVector":true},"comment":"Localized list of options."}]},{"kind":"class","name":"channels.sponsoredMessageReportResultAdsHidden","type":"channels.SponsoredMessageReportResult","id":1044107055,"comment":"Sponsored messages were hidden for the user in all chats.","arguments":[]},{"kind":"class","name":"channels.sponsoredMessageReportResultReported","type":"channels.SponsoredMessageReportResult","id":2910423113,"comment":"The sponsored message was reported successfully.","arguments":[]},{"kind":"class","name":"stats.broadcastRevenueStats","type":"stats.BroadcastRevenueStats","id":1409802903,"comment":"Channel revenue ad statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in the smallest unit of the chosen cryptocurrency (currently nanotons for TONs, so to obtain a value in USD divide the chosen amount by 10^9, and then divide by usd_rate).","arguments":[{"name":"top_hours_graph","type":"StatsGraph","comment":"Ad impressions graph"},{"name":"revenue_graph","type":"StatsGraph","comment":"Ad revenue graph (in the smallest unit of the cryptocurrency in which revenue is calculated)"},{"name":"balances","type":"BroadcastRevenueBalances","comment":"Current balance, current withdrawable balance and overall revenue"},{"name":"usd_rate","type":"double","comment":"Current conversion rate of the cryptocurrency (not in the smallest unit) in which revenue is calculated to USD"}]},{"kind":"class","name":"stats.broadcastRevenueWithdrawalUrl","type":"stats.BroadcastRevenueWithdrawalUrl","id":3966080823,"comment":"Contains the URL to use to withdraw channel ad revenue.","arguments":[{"name":"url","type":"string","comment":"A unique URL to a Fragment page where the user will be able to specify and submit the address of the TON wallet where the funds will be sent."}]},{"kind":"class","name":"broadcastRevenueTransactionProceeds","type":"BroadcastRevenueTransaction","id":1434332356,"comment":"Describes earnings from sponsored messages in a channel in some time frame, see here » for more info.","arguments":[{"name":"amount","type":"long","comment":"Amount in the smallest unit of the cryptocurrency."},{"name":"from_date","type":"int","comment":"Start unixtime for the timeframe."},{"name":"to_date","type":"int","comment":"End unixtime for the timeframe."}]},{"kind":"class","name":"broadcastRevenueTransactionWithdrawal","type":"BroadcastRevenueTransaction","id":1515784568,"comment":"Describes a withdrawal of ad earnings »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pending","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the withdrawal is currently pending"},{"name":"failed","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the withdrawal has failed"},{"name":"amount","type":"long","comment":"Amount withdrawn"},{"name":"date","type":"int","comment":"Withdrawal date"},{"name":"provider","type":"string","comment":"Payment provider name"},{"name":"transaction_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain the point in time (UNIX timestamp in seconds) when the withdrawal was completed successfully."},{"name":"transaction_url","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain a URL where the withdrawal transaction can be viewed."}]},{"kind":"class","name":"broadcastRevenueTransactionRefund","type":"BroadcastRevenueTransaction","id":1121127726,"comment":"Describes a refund for failed withdrawal of ad earnings »","arguments":[{"name":"amount","type":"long","comment":"Amount refunded."},{"name":"date","type":"int","comment":"Date of refund."},{"name":"provider","type":"string","comment":"Payment provider name."}]},{"kind":"class","name":"stats.broadcastRevenueTransactions","type":"stats.BroadcastRevenueTransactions","id":2266334310,"comment":"Channel ad revenue transactions ».","arguments":[{"name":"count","type":"int","comment":"Total number of transactions."},{"name":"transactions","type":"BroadcastRevenueTransaction","typeModifiers":{"isVector":true},"comment":"Transactions"}]},{"kind":"class","name":"reactionNotificationsFromContacts","type":"ReactionNotificationsFrom","id":3133384218,"comment":"Receive notifications about reactions made only by our contacts.","arguments":[]},{"kind":"class","name":"reactionNotificationsFromAll","type":"ReactionNotificationsFrom","id":1268654752,"comment":"Receive notifications about reactions made by any user.","arguments":[]},{"kind":"class","name":"reactionsNotifySettings","type":"ReactionsNotifySettings","id":1457736048,"comment":"Reaction notification settings, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"messages_notify_from","type":"ReactionNotificationsFrom","typeModifiers":{"predicate":"flags.0"},"comment":"Message reaction notification settings, if not set completely disables notifications/updates about message reactions."},{"name":"stories_notify_from","type":"ReactionNotificationsFrom","typeModifiers":{"predicate":"flags.1"},"comment":"Story reaction notification settings, if not set completely disables notifications/updates about reactions to stories."},{"name":"sound","type":"NotificationSound","comment":"Notification sound for reactions »"},{"name":"show_previews","type":"Bool","comment":"If false, push notifications » about message/story reactions will only be of type REACT_HIDDEN/REACT_STORY_HIDDEN, without any information about the reacted-to story or the reaction itself."}]},{"kind":"class","name":"broadcastRevenueBalances","id":3288297959,"type":"BroadcastRevenueBalances","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"withdrawal_enabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the available balance can be withdrawn »."},{"name":"current_balance","type":"long","comment":"Amount of not-yet-withdrawn cryptocurrency."},{"name":"available_balance","type":"long","comment":"Amount of withdrawable cryptocurrency, out of the currently available balance (available_balance <= current_balance)."},{"name":"overall_revenue","type":"long","comment":"Total amount of earned cryptocurrency."}],"comment":"Describes channel ad revenue balances ».\n\nNote that all balances are in the smallest unit of the chosen cryptocurrency (currently nanotons for TONs, so to obtain a value in USD divide the chosen amount by 10^9, and then divide by usd_rate)."},{"kind":"class","name":"availableEffect","type":"AvailableEffect","id":2479088254,"comment":"Represents a message effect ».\n\nAll long IDs except for id are {@link RawDocument}.ids from the containing {@link messages.RawAvailableEffects} constructor.\n\nSee here » for more info on how to use following fields.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"premium_required","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether a Premium subscription is required to use this effect."},{"name":"id","type":"long","comment":"Unique effect ID."},{"name":"emoticon","type":"string","comment":"Emoji corresponding to the effect, to be used as icon for the effect if static_icon_id is not set."},{"name":"static_icon_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"ID of the document containing the static icon (WEBP) of the effect."},{"name":"effect_sticker_id","type":"long","comment":"Contains the preview animation (TGS format »), used for the effect selection menu."},{"name":"effect_animation_id","type":"long","typeModifiers":{"predicate":"flags.1"},"comment":"If set, contains the actual animated effect (TGS format »). If not set, the animated effect must be set equal to the premium animated sticker effect associated to the animated sticker specified in effect_sticker_id (always different from the preview animation, fetched thanks to the {@link RawVideoSize} of type f as specified here »)."}]},{"kind":"class","name":"messages.availableEffectsNotModified","type":"messages.AvailableEffects","id":3522009691,"comment":"The full list of usable animated message effects » hasn't changed.","arguments":[]},{"kind":"class","name":"messages.availableEffects","type":"messages.AvailableEffects","id":3185271150,"comment":"The full list of usable animated message effects ».","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"effects","type":"AvailableEffect","typeModifiers":{"isVector":true},"comment":"Message effects"},{"name":"documents","type":"Document","typeModifiers":{"isVector":true},"comment":"Documents specified in the effects constructors."}]},{"kind":"class","name":"factCheck","type":"FactCheck","id":3097230543,"comment":"Represents a fact-check » created by an independent fact-checker.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"need_check","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the country/text fields will not be set, and the fact check must be fetched manually by the client (if it isn't already cached with the key specified in hash) using bundled {@link messages.RawGetFactCheckRequest} requests, when the message with the factcheck scrolls into view."},{"name":"country","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"A two-letter ISO 3166-1 alpha-2 country code of the country for which the fact-check should be shown."},{"name":"text","type":"TextWithEntities","typeModifiers":{"predicate":"flags.1"},"comment":"The fact-check."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}]},{"kind":"class","name":"starsTransactionPeerUnsupported","type":"StarsTransactionPeer","id":2515714020,"comment":"Describes a Telegram Star transaction that cannot be described using the current layer.","arguments":[]},{"kind":"class","name":"starsTransactionPeerAppStore","type":"StarsTransactionPeer","id":3025646453,"comment":"Describes a Telegram Star transaction with the App Store, used when purchasing Telegram Stars through the App Store.","arguments":[]},{"kind":"class","name":"starsTransactionPeerPlayMarket","type":"StarsTransactionPeer","id":2069236235,"comment":"Describes a Telegram Star transaction with the Play Store, used when purchasing Telegram Stars through the Play Store.","arguments":[]},{"kind":"class","name":"starsTransactionPeerPremiumBot","type":"StarsTransactionPeer","id":621656824,"comment":"Describes a Telegram Star transaction made using @PremiumBot (i.e. using the {@link RawInputInvoiceStars} flow described here »).","arguments":[]},{"kind":"class","name":"starsTransactionPeerFragment","type":"StarsTransactionPeer","id":3912227074,"comment":"Describes a Telegram Star transaction with Fragment, used when purchasing Telegram Stars through Fragment.","arguments":[]},{"kind":"class","name":"starsTransactionPeer","type":"StarsTransactionPeer","id":3624771933,"comment":"Describes a Telegram Star transaction with another peer.","arguments":[{"name":"peer","type":"Peer","comment":"The peer."}]},{"kind":"class","name":"starsTransactionPeerAds","type":"StarsTransactionPeer","id":1617438738,"comment":"Describes a Telegram Star transaction used to pay for Telegram ads as specified here ».","arguments":[]},{"kind":"class","name":"starsTransactionPeerAPI","type":"StarsTransactionPeer","id":4184308397,"comment":"Describes a Telegram Star transaction used to pay for paid API usage, such as paid bot broadcasts.","arguments":[]},{"kind":"class","name":"starsTopupOption","type":"StarsTopupOption","id":198776256,"comment":"Telegram Stars topup option.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"extended","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, the option must only be shown in the full list of topup options."},{"name":"stars","type":"long","comment":"Amount of Telegram stars."},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Identifier of the store product associated with the option, official apps only."},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"starsTransaction","id":903148150,"type":"StarsTransaction","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"refund","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether this transaction is a refund."},{"name":"pending","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"The transaction is currently pending."},{"name":"failed","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"This transaction has failed."},{"name":"gift","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"This transaction was a gift from the user in peer.peer."},{"name":"reaction","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"This transaction is a paid reaction »."},{"name":"id","type":"string","comment":"Transaction ID."},{"name":"stars","type":"long","comment":"Amount of Stars (negative for outgoing transactions)."},{"name":"date","type":"int","comment":"Date of the transaction (unixtime)."},{"name":"peer","type":"StarsTransactionPeer","comment":"Source of the incoming transaction, or its recipient for outgoing transactions."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"For transactions with bots, title of the bought product."},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"For transactions with bots, description of the bought product."},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.2"},"comment":"For transactions with bots, photo of the bought product."},{"name":"transaction_date","type":"int","typeModifiers":{"predicate":"flags.5"},"comment":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain the point in time (UNIX timestamp in seconds) when the withdrawal was completed successfully."},{"name":"transaction_url","type":"string","typeModifiers":{"predicate":"flags.5"},"comment":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain a URL where the withdrawal transaction can be viewed."},{"name":"bot_payload","type":"bytes","typeModifiers":{"predicate":"flags.7"},"comment":"Bot specified invoice payload (i.e. the payload passed to {@link RawInputMediaInvoice} when creating the invoice)."},{"name":"msg_id","type":"int","typeModifiers":{"predicate":"flags.8"},"comment":"For paid media transactions », message ID of the paid media posted to peer.peer (can point to a deleted message; either way, extended_media will always contain the bought media)."},{"name":"extended_media","type":"MessageMedia","typeModifiers":{"predicate":"flags.9","isVector":true},"comment":"The purchased paid media »."},{"name":"subscription_period","type":"int","typeModifiers":{"predicate":"flags.12"},"comment":"The number of seconds between consecutive Telegram Star debiting for Telegram Star subscriptions »."},{"name":"giveaway_post_id","type":"int","typeModifiers":{"predicate":"flags.13"}},{"name":"stargift","type":"StarGift","typeModifiers":{"predicate":"flags.14"},"comment":"This transaction indicates a purchase or a sale (conversion back to Stars) of a gift »."},{"name":"floodskip_number","type":"int","typeModifiers":{"predicate":"flags.15"},"comment":"This transaction is payment for paid bot broadcasts.
Paid broadcasts are only allowed if the allow_paid_floodskip parameter of {@link messages.RawSendMessageRequest} and other message sending methods is set while trying to broadcast more than 30 messages per second to bot users.
The integer value returned by this flag indicates the number of billed API calls."}],"comment":"Represents a Telegram Stars transaction »."},{"kind":"class","name":"payments.starsStatus","id":3153736044,"type":"payments.StarsStatus","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"balance","type":"long","comment":"Current Telegram Star balance."},{"name":"subscriptions","type":"StarsSubscription","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Info about current Telegram Star subscriptions, only returned when invoking {@link payments.RawGetStarsTransactionsRequest} and {@link payments.RawGetStarsSubscriptionsRequest}."},{"name":"subscriptions_next_offset","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Offset for pagination of subscriptions: only usable with {@link payments.RawGetStarsSubscriptionsRequest}, returned when invoking {@link payments.RawGetStarsTransactionsRequest} and {@link payments.RawGetStarsSubscriptionsRequest}."},{"name":"subscriptions_missing_balance","type":"long","typeModifiers":{"predicate":"flags.4"},"comment":"The number of Telegram Stars the user should buy to be able to extend expired subscriptions soon (i.e. the current balance is not enough to extend all expired subscriptions)."},{"name":"history","type":"StarsTransaction","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"List of Telegram Star transactions (partial if next_offset is set)."},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset to use to fetch more transactions from the transaction history using {@link payments.RawGetStarsTransactionsRequest}."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Chats mentioned in history."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in history."}],"comment":"Info about the current Telegram Star subscriptions, balance and transaction history »."},{"kind":"class","name":"foundStory","type":"FoundStory","id":3900361664,"comment":"A story found using global story search ».","arguments":[{"name":"peer","type":"Peer","comment":"The peer that posted the story."},{"name":"story","type":"StoryItem","comment":"The story."}]},{"kind":"class","name":"stories.foundStories","type":"stories.FoundStories","id":3806230327,"comment":"Stories found using global story search ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of results found for the query."},{"name":"stories","type":"FoundStory","typeModifiers":{"isVector":true},"comment":"Matching stories."},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset used to fetch the next page, if not set this is the final page."},{"name":"chats","type":"Chat","typeModifiers":{"isVector":true},"comment":"Mentioned chats"},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Mentioned users"}]},{"kind":"class","name":"geoPointAddress","type":"GeoPointAddress","id":3729546643,"comment":"Address optionally associated to a {@link RawGeoPoint}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"country_iso2","type":"string","comment":"Two-letter ISO 3166-1 alpha-2 country code"},{"name":"state","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"State"},{"name":"city","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"City"},{"name":"street","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Street"}]},{"kind":"class","name":"starsRevenueStatus","type":"StarsRevenueStatus","id":2033461574,"comment":"Describes Telegram Star revenue balances ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"withdrawal_enabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the user may withdraw up to available_balance stars."},{"name":"current_balance","type":"long","comment":"Amount of not-yet-withdrawn Telegram Stars."},{"name":"available_balance","type":"long","comment":"Amount of withdrawable Telegram Stars."},{"name":"overall_revenue","type":"long","comment":"Total amount of earned Telegram Stars."},{"name":"next_withdrawal_at","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Unixtime indicating when will withdrawal be available to the user. If not set, withdrawal can be started now."}]},{"kind":"class","name":"payments.starsRevenueStats","type":"payments.StarsRevenueStats","id":3375085371,"comment":"Star revenue statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in Stars.","arguments":[{"name":"revenue_graph","type":"StatsGraph","comment":"Star revenue graph (number of earned stars)"},{"name":"status","type":"StarsRevenueStatus","comment":"Current balance, current withdrawable balance and overall earned Telegram Stars"},{"name":"usd_rate","type":"double","comment":"Current conversion rate of Telegram Stars to USD"}]},{"kind":"class","name":"payments.starsRevenueWithdrawalUrl","type":"payments.StarsRevenueWithdrawalUrl","id":497778871,"comment":"Contains the URL to use to withdraw Telegram Star revenue.","arguments":[{"name":"url","type":"string","comment":"Contains the URL to use to withdraw Telegram Star revenue."}]},{"kind":"class","name":"payments.starsRevenueAdsAccountUrl","type":"payments.StarsRevenueAdsAccountUrl","id":961445665,"comment":"Contains a URL leading to a page where the user will be able to place ads for the channel/bot, paying using Telegram Stars.","arguments":[{"name":"url","type":"string","comment":"URL to open."}]},{"kind":"class","name":"inputStarsTransaction","type":"InputStarsTransaction","id":543876817,"comment":"Used to fetch info about a Telegram Star transaction ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"refund","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, fetches info about the refund transaction for this transaction."},{"name":"id","type":"string","comment":"Transaction ID."}]},{"kind":"class","name":"starsGiftOption","type":"StarsGiftOption","id":1577421297,"comment":"Telegram Stars gift option.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"extended","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, the option must only be shown in the full list of topup options."},{"name":"stars","type":"long","comment":"Amount of Telegram stars."},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Identifier of the store product associated with the option, official apps only."},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}]},{"kind":"class","name":"bots.popularAppBots","type":"bots.PopularAppBots","id":428978491,"comment":"Popular Main Mini Apps, to be used in the apps tab of global search ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset for pagination."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"The bots associated to each Main Mini App, see here » for more info."}]},{"kind":"class","name":"botPreviewMedia","type":"BotPreviewMedia","id":602479523,"comment":"Represents a Main Mini App preview media, see here » for more info.","arguments":[{"name":"date","type":"int","comment":"When was this media last updated."},{"name":"media","type":"MessageMedia","comment":"The actual photo/video."}]},{"kind":"class","name":"bots.previewInfo","type":"bots.PreviewInfo","id":212278628,"comment":"Contains info about Main Mini App previews, see here » for more info.","arguments":[{"name":"media","type":"BotPreviewMedia","typeModifiers":{"isVector":true},"comment":"All preview medias for the language code passed to {@link bots.RawGetPreviewInfoRequest}."},{"name":"lang_codes","type":"string","typeModifiers":{"isVector":true},"comment":"All available language codes for which preview medias were uploaded (regardless of the language code passed to {@link bots.RawGetPreviewInfoRequest})."}]},{"kind":"class","name":"starsSubscriptionPricing","type":"StarsSubscriptionPricing","id":88173912,"comment":"Pricing of a Telegram Star subscription ».","arguments":[{"name":"period","type":"int","comment":"The user should pay amount stars every period seconds to gain and maintain access to the channel.
Currently the only allowed subscription period is 30*24*60*60, i.e. the user will be debited amount stars every month."},{"name":"amount","type":"long","comment":"Price of the subscription in Telegram Stars."}]},{"kind":"class","name":"starsSubscription","id":779004698,"type":"StarsSubscription","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"canceled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this subscription was cancelled."},{"name":"can_refulfill","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether we left the associated private channel, but we can still rejoin it using {@link payments.RawFulfillStarsSubscriptionRequest} because the current subscription period hasn't expired yet."},{"name":"missing_balance","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether this subscription has expired because there are not enough stars on the user's balance to extend it."},{"name":"bot_canceled","type":"true","typeModifiers":{"predicate":"flags.7"}},{"name":"id","type":"string","comment":"Subscription ID."},{"name":"peer","type":"Peer","comment":"Identifier of the associated private chat."},{"name":"until_date","type":"int","comment":"Expiration date of the current subscription period."},{"name":"pricing","type":"StarsSubscriptionPricing","comment":"Pricing of the subscription in Telegram Stars."},{"name":"chat_invite_hash","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Invitation link, used to renew the subscription after cancellation or expiration."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.4"}},{"name":"photo","type":"WebDocument","typeModifiers":{"predicate":"flags.5"}},{"name":"invoice_slug","type":"string","typeModifiers":{"predicate":"flags.6"}}],"comment":"Represents a Telegram Star subscription »."},{"kind":"class","name":"messageReactor","type":"MessageReactor","id":1269016922,"comment":"Info about a user in the paid Star reactions leaderboard for a message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"top","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the reactor is one of the most active reactors; may be unset if the reactor is the current user."},{"name":"my","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, this reactor is the current user."},{"name":"anonymous","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the reactor is anonymous."},{"name":"peer_id","type":"Peer","typeModifiers":{"predicate":"flags.3"},"comment":"Identifier of the peer that reacted: may be unset for anonymous reactors different from the current user (i.e. if the current user sent an anonymous reaction anonymous will be set but this field will also be set)."},{"name":"count","type":"int","comment":"The number of sent Telegram Stars."}]},{"kind":"class","name":"starsGiveawayOption","type":"StarsGiveawayOption","id":2496562474,"comment":"Contains info about a Telegram Star giveaway option.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"extended","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, this option must only be shown in the full list of giveaway options (i.e. they must be added to the list only when the user clicks on the expand button)."},{"name":"default","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, this option must be pre-selected by default in the option list."},{"name":"stars","type":"long","comment":"The number of Telegram Stars that will be distributed among winners"},{"name":"yearly_boosts","type":"int","comment":"Number of times the chat will be boosted for one year if the {@link RawInputStorePaymentStarsGiveaway}.boost_peer flag is populated"},{"name":"store_product","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Identifier of the store product associated with the option, official apps only."},{"name":"currency","type":"string","comment":"Three-letter ISO 4217 currency code"},{"name":"amount","type":"long","comment":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},{"name":"winners","type":"StarsGiveawayWinnersOption","typeModifiers":{"isVector":true},"comment":"Allowed options for the number of giveaway winners."}]},{"kind":"class","name":"starsGiveawayWinnersOption","type":"StarsGiveawayWinnersOption","id":1411605001,"comment":"","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"default","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, this option must be pre-selected by default in the option list."},{"name":"users","type":"int","comment":"The number of users that will be randomly chosen as winners."},{"name":"per_user_stars","type":"long","comment":"The number of Telegram Stars each winner will receive."}]},{"kind":"class","name":"starGift","type":"StarGift","id":1237678029,"comment":"Represents a star gift, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"limited","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a limited-supply gift."},{"name":"sold_out","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this gift sold out and cannot be bought anymore."},{"name":"birthday","type":"true","typeModifiers":{"predicate":"flags.2"}},{"name":"id","type":"long","comment":"Identifier of the gift"},{"name":"sticker","type":"Document","comment":"Sticker that represents the gift."},{"name":"stars","type":"long","comment":"Price of the gift in Telegram Stars."},{"name":"availability_remains","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"For limited-supply gifts: the remaining number of gifts that may be bought."},{"name":"availability_total","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"For limited-supply gifts: the total number of gifts that was available in the initial supply."},{"name":"convert_stars","type":"long","comment":"The receiver of this gift may convert it to this many Telegram Stars, instead of displaying it on their profile page.
convert_stars will be equal to stars only if the gift was bought using recently bought Telegram Stars, otherwise it will be less than stars."},{"name":"first_sale_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For sold out gifts only: when was the gift first bought."},{"name":"last_sale_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For sold out gifts only: when was the gift last bought."}]},{"kind":"class","name":"payments.starGiftsNotModified","type":"payments.StarGifts","id":2743640936,"comment":"The list of available gifts » hasn't changed.","arguments":[]},{"kind":"class","name":"payments.starGifts","type":"payments.StarGifts","id":2417396202,"comment":"Available gifts ».","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"},{"name":"gifts","type":"StarGift","typeModifiers":{"isVector":true},"comment":"List of available gifts."}]},{"kind":"class","name":"userStarGift","type":"UserStarGift","id":4003764846,"comment":"Represents a gift, displayed on a user's profile page.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"name_hidden","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, from_id will not be visible to users (it will still be visible to the receiver of the gift)."},{"name":"unsaved","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"If set, indicates this is a gift sent by from_id, received by the current user and currently hidden from our profile page."},{"name":"from_id","type":"int53","typeModifiers":{"predicate":"flags.1"},"comment":"Sender of the gift (may be empty for anonymous senders; will always be set if this gift was sent to us)."},{"name":"date","type":"int","comment":"When was this gift sent."},{"name":"gift","type":"StarGift","comment":"The gift."},{"name":"message","type":"TextWithEntities","typeModifiers":{"predicate":"flags.2"},"comment":"Message attached to the gift by the sender."},{"name":"msg_id","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Only visible to the receiver of the gift, contains the ID of the {@link RawMessageService} with the {@link RawMessageActionStarGift} in the chat with from_id."},{"name":"convert_stars","type":"long","typeModifiers":{"predicate":"flags.4"},"comment":"The receiver of this gift may convert it to this many Telegram Stars, instead of displaying it on their profile page.
convert_stars will be equal to the buying price of the gift only if the gift was bought using recently bought Telegram Stars, otherwise it will be less than stars."}]},{"kind":"class","name":"payments.userStarGifts","type":"payments.UserStarGifts","id":1801827607,"comment":"Gifts displayed on a user's profile.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"count","type":"int","comment":"Total number of gifts displayed on the profile."},{"name":"gifts","type":"UserStarGift","typeModifiers":{"isVector":true},"comment":"The gifts."},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Offset for pagination."},{"name":"users","type":"User","typeModifiers":{"isVector":true},"comment":"Users mentioned in the gifts vector."}]},{"kind":"class","name":"messageReportOption","type":"MessageReportOption","id":2030298073,"comment":"Report menu option","arguments":[{"name":"text","type":"string","comment":"Option title"},{"name":"option","type":"bytes","comment":"Option identifier: if the user selects this option, re-invoke {@link messages.RawReportRequest}, passing this option to option"}]},{"kind":"class","name":"reportResultChooseOption","type":"ReportResult","id":4041531574,"comment":"The user must choose one of the following options, and then {@link messages.RawReportRequest} must be re-invoked, passing the option's option identifier to {@link messages.RawReportRequest}.option.","arguments":[{"name":"title","type":"string","comment":"Title of the option popup"},{"name":"options","type":"MessageReportOption","typeModifiers":{"isVector":true},"comment":"Available options, rendered as menu entries."}]},{"kind":"class","name":"reportResultAddComment","type":"ReportResult","id":1862904881,"comment":"The user should enter an additional comment for the moderators, and then {@link messages.RawReportRequest} must be re-invoked, passing the comment to {@link messages.RawReportRequest}.message.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"optional","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this step can be skipped by the user, passing an empty message to {@link messages.RawReportRequest}, or if a non-empty message is mandatory."},{"name":"option","type":"bytes","comment":"The {@link messages.RawReportRequest} method must be re-invoked, passing this option to option"}]},{"kind":"class","name":"reportResultReported","type":"ReportResult","id":2377333835,"comment":"The report was sent successfully, no further actions are required.","arguments":[]},{"kind":"class","name":"messages.botPreparedInlineMessage","type":"messages.BotPreparedInlineMessage","id":2395931921,"arguments":[{"name":"id","type":"string"},{"name":"expire_date","type":"int"}]},{"kind":"class","name":"messages.preparedInlineMessage","type":"messages.PreparedInlineMessage","id":4283920525,"arguments":[{"name":"query_id","type":"long"},{"name":"result","type":"BotInlineResult"},{"name":"peer_types","type":"InlineQueryPeerType","typeModifiers":{"isVector":true}},{"name":"cache_time","type":"int"},{"name":"users","type":"User","typeModifiers":{"isVector":true}}]},{"kind":"class","name":"botAppSettings","type":"BotAppSettings","id":3382384976,"arguments":[{"name":"flags","type":"#"},{"name":"placeholder_path","type":"bytes","typeModifiers":{"predicate":"flags.0"}},{"name":"background_color","type":"int","typeModifiers":{"predicate":"flags.1"}},{"name":"background_dark_color","type":"int","typeModifiers":{"predicate":"flags.2"}},{"name":"header_color","type":"int","typeModifiers":{"predicate":"flags.3"}},{"name":"header_dark_color","type":"int","typeModifiers":{"predicate":"flags.4"}}]},{"kind":"class","name":"updateBotSubscriptionExpire","id":756270830,"type":"Update","arguments":[{"name":"user_id","type":"long"},{"name":"payload","type":"string"},{"name":"invoice_slug","type":"string"},{"name":"until_date","type":"int"},{"name":"qts","type":"int"}]},{"kind":"class","name":"mtcute.dummyUpdate","id":614906126,"type":"Update","arguments":[{"name":"pts","type":"int"},{"name":"pts_count","type":"int"},{"name":"channel_id","type":"int53"}]},{"kind":"class","name":"mtcute.dummyInputPeerMinUser","id":2240546338,"type":"InputPeer","arguments":[{"name":"user_id","type":"int"}]},{"kind":"class","name":"mtcute.dummyInputPeerMinChannel","id":1796171926,"type":"InputPeer","arguments":[{"name":"channel_id","type":"int"}]},{"kind":"method","name":"test.useConfigSimple","id":4189565501,"type":"help.ConfigSimple","arguments":[],"typeModifiers":{"constructorId":1515793004}},{"kind":"method","name":"test.parseInputAppEvent","id":3138226161,"type":"InputAppEvent","arguments":[],"typeModifiers":{"constructorId":488313413}},{"kind":"method","name":"invokeWithBusinessConnectionPrefix","id":3710427022,"type":"Error","arguments":[{"name":"connection_id","type":"string"}],"typeModifiers":{"constructorId":3300522427}},{"kind":"method","name":"invokeWithGooglePlayIntegrityPrefix","id":502868356,"type":"Error","arguments":[{"name":"nonce","type":"string"},{"name":"token","type":"string"}],"typeModifiers":{"constructorId":3300522427}},{"kind":"method","name":"invokeWithApnsSecretPrefix","id":229528824,"type":"Error","arguments":[{"name":"nonce","type":"string"},{"name":"secret","type":"string"}],"typeModifiers":{"constructorId":3300522427}},{"kind":"method","name":"invokeAfterMsg","type":"X","id":3416209197,"comment":"Invokes a query after successful completion of one of the previous queries.","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"msg_id","type":"long","comment":"Message identifier on which a current query depends"},{"name":"query","type":"!X","comment":"The query itself"}],"available":"both"},{"kind":"method","name":"invokeAfterMsgs","type":"X","id":1036301552,"comment":"Invokes a query after a successful completion of previous queries","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"msg_ids","type":"long","typeModifiers":{"isVector":true},"comment":"List of messages on which a current query depends"},{"name":"query","type":"!X","comment":"The query itself"}],"available":"both"},{"kind":"method","name":"initConnection","type":"X","id":3251461801,"comment":"Initialize connection","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"api_id","type":"int","comment":"Application identifier (see. App configuration)"},{"name":"device_model","type":"string","comment":"Device model"},{"name":"system_version","type":"string","comment":"Operation system version"},{"name":"app_version","type":"string","comment":"Application version"},{"name":"system_lang_code","type":"string","comment":"Code for the language used on the device's OS, ISO 639-1 standard"},{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."},{"name":"lang_code","type":"string","comment":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."},{"name":"proxy","type":"InputClientProxy","typeModifiers":{"predicate":"flags.0"},"comment":"Info about an MTProto proxy"},{"name":"params","type":"JSONValue","typeModifiers":{"predicate":"flags.1"},"comment":"Additional initConnection parameters.
For now, only the tz_offset field is supported, for specifying the timezone offset in seconds."},{"name":"query","type":"!X","comment":"The query itself"}],"throws":[{"code":400,"name":"CONNECTION_LAYER_INVALID","comment":"Layer invalid."}],"available":"both"},{"kind":"method","name":"invokeWithLayer","type":"X","id":3667594509,"comment":"Invoke the specified query using the specified API layer","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"layer","type":"int","comment":"The layer to use"},{"name":"query","type":"!X","comment":"The query"}],"throws":[{"code":400,"name":"AUTH_BYTES_INVALID","comment":"The provided authorization is invalid."},{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"CONNECTION_API_ID_INVALID","comment":"The provided API id is invalid."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."}],"available":"both"},{"kind":"method","name":"invokeWithoutUpdates","type":"X","id":3214170551,"comment":"Invoke a request without subscribing the used connection for updates (this is enabled by default for file queries).","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"query","type":"!X","comment":"The query"}],"available":"both"},{"kind":"method","name":"invokeWithMessagesRange","type":"X","id":911373810,"comment":"Invoke with the given message range","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"range","type":"MessageRange","comment":"Message range"},{"name":"query","type":"!X","comment":"Query"}],"available":"both"},{"kind":"method","name":"invokeWithTakeout","type":"X","id":2896821550,"comment":"Invoke a method within a takeout session, see here » for more info.","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"takeout_id","type":"long","comment":"Takeout session ID »"},{"name":"query","type":"!X","comment":"Query"}],"available":"both"},{"kind":"method","name":"invokeWithBusinessConnection","type":"X","id":3710427022,"comment":"Invoke a method using a Telegram Business Bot connection, see here » for more info, including a list of the methods that can be wrapped in this constructor.\n\nMake sure to always send queries wrapped in a invokeWithBusinessConnection to the datacenter ID, specified in the dc_id field of the {@link RawBotBusinessConnection} that is being used.","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"connection_id","type":"string","comment":"Business connection ID."},{"name":"query","type":"!X","comment":"The actual query."}],"available":"both"},{"kind":"method","name":"invokeWithGooglePlayIntegrity","type":"X","id":502868356,"comment":"Official clients only, invoke with Google Play Integrity token.","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"nonce","type":"string","comment":"Nonce."},{"name":"token","type":"string","comment":"Token."},{"name":"query","type":"!X","comment":"Query."}],"available":"both"},{"kind":"method","name":"invokeWithApnsSecret","type":"X","id":229528824,"comment":"Official clients only, invoke with Apple push verification.","generics":[{"name":"X","type":"Type"}],"arguments":[{"name":"nonce","type":"string","comment":"Nonce."},{"name":"secret","type":"string","comment":"Secret."},{"name":"query","type":"!X","comment":"Query."}],"available":"both"},{"kind":"method","name":"auth.sendCode","type":"auth.SentCode","id":2792825935,"comment":"Send the verification code for login","arguments":[{"name":"phone_number","type":"string","comment":"Phone number in international format"},{"name":"api_id","type":"int","comment":"Application identifier (see App configuration)"},{"name":"api_hash","type":"string","comment":"Application secret hash (see App configuration)"},{"name":"settings","type":"CodeSettings","comment":"Settings for the code type to send"}],"throws":[{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."},{"code":400,"name":"API_ID_PUBLISHED_FLOOD","comment":"This API id was published somewhere, you can't use it now."},{"code":500,"name":"AUTH_RESTART","comment":"Restart the authorization process."},{"code":400,"name":"PHONE_NUMBER_APP_SIGNUP_FORBIDDEN","comment":"You can't sign up using this app."},{"code":400,"name":"PHONE_NUMBER_BANNED","comment":"The provided phone number is banned from telegram."},{"code":400,"name":"PHONE_NUMBER_FLOOD","comment":"You asked for the code too many times."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":406,"name":"PHONE_PASSWORD_FLOOD","comment":"You have tried logging in too many times."},{"code":400,"name":"PHONE_PASSWORD_PROTECTED","comment":"This phone is password protected."},{"code":400,"name":"SMS_CODE_CREATE_FAILED","comment":"An error occurred while creating the SMS code."},{"code":406,"name":"UPDATE_APP_TO_LOGIN","comment":"Please update your client to login."}],"available":"user"},{"kind":"method","name":"auth.signUp","type":"auth.Authorization","id":2865215255,"comment":"Registers a validated phone number in the system.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_joined_notifications","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, users on Telegram that have already added phone_number to their contacts will not receive signup notifications about this user."},{"name":"phone_number","type":"string","comment":"Phone number in the international format"},{"name":"phone_code_hash","type":"string","comment":"SMS-message ID"},{"name":"first_name","type":"string","comment":"New user first name"},{"name":"last_name","type":"string","comment":"New user last name"}],"throws":[{"code":400,"name":"FIRSTNAME_INVALID","comment":"The first name is invalid."},{"code":400,"name":"LASTNAME_INVALID","comment":"The last name is invalid."},{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_CODE_INVALID","comment":"The provided phone code is invalid."},{"code":400,"name":"PHONE_NUMBER_FLOOD","comment":"You asked for the code too many times."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_OCCUPIED","comment":"The phone number is already in use."}],"available":"user"},{"kind":"method","name":"auth.signIn","type":"auth.Authorization","id":2371004753,"comment":"Signs in a user with a validated phone number.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"phone_number","type":"string","comment":"Phone number in the international format"},{"name":"phone_code_hash","type":"string","comment":"SMS-message ID, obtained from {@link auth.RawSendCodeRequest}"},{"name":"phone_code","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Valid numerical code from the SMS-message"},{"name":"email_verification","type":"EmailVerification","typeModifiers":{"predicate":"flags.1"},"comment":"Email verification code or token"}],"throws":[{"code":500,"name":"AUTH_RESTART","comment":"Restart the authorization process."},{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_CODE_INVALID","comment":"The provided phone code is invalid."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_UNOCCUPIED","comment":"The phone number is not yet being used."},{"code":500,"name":"SIGN_IN_FAILED","comment":"Failure while signing in."},{"code":406,"name":"UPDATE_APP_TO_LOGIN","comment":"Please update your client to login."}],"available":"user"},{"kind":"method","name":"auth.logOut","type":"auth.LoggedOut","typeModifiers":{"constructorId":3282207583},"id":1047706137,"comment":"Logs out the user.","arguments":[],"available":"both"},{"kind":"method","name":"auth.resetAuthorizations","type":"Bool","id":2678787354,"comment":"Terminates all user's authorized sessions except for the current one.\n\nAfter calling this method it is necessary to reregister the current device using the method {@link account.RawRegisterDeviceRequest}","arguments":[],"throws":[{"code":406,"name":"FRESH_RESET_AUTHORISATION_FORBIDDEN","comment":"You can't logout other sessions if less than 24 hours have passed since you logged on the current session."}],"available":"user"},{"kind":"method","name":"auth.exportAuthorization","type":"auth.ExportedAuthorization","typeModifiers":{"constructorId":3023364792},"id":3854565325,"comment":"Returns data for copying authorization to another data-center.","arguments":[{"name":"dc_id","type":"int","comment":"Number of a target data-center"}],"throws":[{"code":400,"name":"DC_ID_INVALID","comment":"The provided DC ID is invalid."}],"available":"both"},{"kind":"method","name":"auth.importAuthorization","type":"auth.Authorization","id":2776268205,"comment":"Logs in a user using a key transmitted from their native data-center.","arguments":[{"name":"id","type":"long","comment":"User ID"},{"name":"bytes","type":"bytes","comment":"Authorization key"}],"throws":[{"code":400,"name":"AUTH_BYTES_INVALID","comment":"The provided authorization is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"auth.bindTempAuthKey","type":"Bool","id":3453233669,"comment":"Binds a temporary authorization key temp_auth_key_id to the permanent authorization key perm_auth_key_id. Each permanent key may only be bound to one temporary key at a time, binding a new temporary key overwrites the previous one.\n\nFor more information, see Perfect Forward Secrecy.","arguments":[{"name":"perm_auth_key_id","type":"long","comment":"Permanent auth_key_id to bind to"},{"name":"nonce","type":"long","comment":"Random long from Binding message contents"},{"name":"expires_at","type":"int","comment":"UNIX timestamp in seconds to invalidate temporary key, see Binding message contents"},{"name":"encrypted_message","type":"bytes","comment":"See Generating encrypted_message"}],"throws":[{"code":400,"name":"ENCRYPTED_MESSAGE_INVALID","comment":"Encrypted message invalid."},{"code":400,"name":"TEMP_AUTH_KEY_ALREADY_BOUND","comment":"The passed temporary key is already bound to another perm_auth_key_id."},{"code":400,"name":"TEMP_AUTH_KEY_EMPTY","comment":"No temporary auth key provided."}],"available":"both"},{"kind":"method","name":"auth.importBotAuthorization","type":"auth.Authorization","id":1738800940,"comment":"Login as a bot","arguments":[{"name":"flags","type":"int","comment":"Reserved for future use"},{"name":"api_id","type":"int","comment":"Application identifier (see. App configuration)"},{"name":"api_hash","type":"string","comment":"Application identifier hash (see. App configuration)"},{"name":"bot_auth_token","type":"string","comment":"Bot token (see bots)"}],"throws":[{"code":400,"name":"ACCESS_TOKEN_EXPIRED","comment":"Access token expired."},{"code":400,"name":"ACCESS_TOKEN_INVALID","comment":"Access token invalid."},{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."},{"code":400,"name":"API_ID_PUBLISHED_FLOOD","comment":"This API id was published somewhere, you can't use it now."}],"available":"both"},{"kind":"method","name":"auth.checkPassword","type":"auth.Authorization","id":3515567382,"comment":"Try logging to an account protected by a 2FA password.","arguments":[{"name":"password","type":"InputCheckPasswordSRP","comment":"The account's password (see SRP)"}],"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"SRP_ID_INVALID","comment":"Invalid SRP ID provided."},{"code":400,"name":"SRP_PASSWORD_CHANGED","comment":"Password has changed."}],"available":"user"},{"kind":"method","name":"auth.requestPasswordRecovery","type":"auth.PasswordRecovery","typeModifiers":{"constructorId":326715557},"id":3633822822,"comment":"Request recovery code of a 2FA password, only for accounts with a recovery email configured.","arguments":[],"throws":[{"code":400,"name":"PASSWORD_EMPTY","comment":"The provided password is empty."},{"code":400,"name":"PASSWORD_RECOVERY_NA","comment":"No email was set, can't recover password via email."}],"available":"user"},{"kind":"method","name":"auth.recoverPassword","type":"auth.Authorization","id":923364464,"comment":"Reset the 2FA password using the recovery code sent using {@link auth.RawRequestPasswordRecoveryRequest}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"code","type":"string","comment":"Code received via email"},{"name":"new_settings","type":"account.PasswordInputSettings","typeModifiers":{"predicate":"flags.0"},"comment":"New password"}],"throws":[{"code":400,"name":"CODE_EMPTY","comment":"The provided code is empty."},{"code":400,"name":"NEW_SETTINGS_INVALID","comment":"The new password settings are invalid."}],"available":"user"},{"kind":"method","name":"auth.resendCode","type":"auth.SentCode","id":3403969827,"comment":"Resend the login code via another medium, the phone code type is determined by the return value of the previous auth.sendCode/auth.resendCode: see login for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"phone_number","type":"string","comment":"The phone number"},{"name":"phone_code_hash","type":"string","comment":"The phone code hash obtained from {@link auth.RawSendCodeRequest}"},{"name":"reason","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Official clients only, used if the device integrity verification failed, and no secret could be obtained to invoke {@link auth.RawRequestFirebaseSmsRequest}: in this case, the device integrity verification failure reason must be passed here."}],"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_CODE_HASH_EMPTY","comment":"phone_code_hash is missing."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":406,"name":"SEND_CODE_UNAVAILABLE","comment":"Returned when all available options for this type of number were already used (e.g. flash-call, then SMS, then this error might be returned to trigger a second resend)."}],"available":"user"},{"kind":"method","name":"auth.cancelCode","type":"Bool","id":520357240,"comment":"Cancel the login verification code","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash from {@link auth.RawSendCodeRequest}"}],"throws":[{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"auth.dropTempAuthKeys","type":"Bool","id":2387124616,"comment":"Delete all temporary authorization keys except for the ones specified","arguments":[{"name":"except_auth_keys","type":"long","typeModifiers":{"isVector":true},"comment":"The auth keys that shouldn't be dropped."}],"available":"both"},{"kind":"method","name":"auth.exportLoginToken","type":"auth.LoginToken","id":3084944894,"comment":"Generate a login token, for login via QR code.
\nThe generated login token should be encoded using base64url, then shown as a tg://login?token=base64encodedtoken deep link » in the QR code.\n\nFor more info, see login via QR code.","arguments":[{"name":"api_id","type":"int","comment":"Application identifier (see. App configuration)"},{"name":"api_hash","type":"string","comment":"Application identifier hash (see. App configuration)"},{"name":"except_ids","type":"long","typeModifiers":{"isVector":true},"comment":"List of already logged-in user IDs, to prevent logging in twice with the same user"}],"throws":[{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."},{"code":400,"name":"API_ID_PUBLISHED_FLOOD","comment":"This API id was published somewhere, you can't use it now."}],"available":"user"},{"kind":"method","name":"auth.importLoginToken","type":"auth.LoginToken","id":2511101156,"comment":"Login using a redirected login token, generated in case of DC mismatch during QR code login.\n\nFor more info, see login via QR code.","arguments":[{"name":"token","type":"bytes","comment":"Login token"}],"throws":[{"code":400,"name":"AUTH_TOKEN_ALREADY_ACCEPTED","comment":"The specified auth token was already accepted."},{"code":400,"name":"AUTH_TOKEN_EXPIRED","comment":"The authorization token has expired."},{"code":400,"name":"AUTH_TOKEN_INVALID","comment":"The specified auth token is invalid."},{"code":400,"name":"AUTH_TOKEN_INVALIDX","comment":"The specified auth token is invalid."}],"available":"user"},{"kind":"method","name":"auth.acceptLoginToken","type":"Authorization","typeModifiers":{"constructorId":2902578717},"id":3902057805,"comment":"Accept QR code login token, logging in the app that generated it.\n\nReturns info about the new session.\n\nFor more info, see login via QR code.","arguments":[{"name":"token","type":"bytes","comment":"Login token embedded in QR code, for more info, see login via QR code."}],"throws":[{"code":400,"name":"AUTH_TOKEN_ALREADY_ACCEPTED","comment":"The specified auth token was already accepted."},{"code":400,"name":"AUTH_TOKEN_EXCEPTION","comment":"An error occurred while importing the auth token."},{"code":400,"name":"AUTH_TOKEN_EXPIRED","comment":"The authorization token has expired."},{"code":400,"name":"AUTH_TOKEN_INVALIDX","comment":"The specified auth token is invalid."}],"available":"user"},{"kind":"method","name":"auth.checkRecoveryPassword","type":"Bool","id":221691769,"comment":"Check if the 2FA recovery code sent using {@link auth.RawRequestPasswordRecoveryRequest} is valid, before passing it to {@link auth.RawRecoverPasswordRequest}.","arguments":[{"name":"code","type":"string","comment":"Code received via email"}],"throws":[{"code":400,"name":"CODE_EMPTY","comment":"The provided code is empty."},{"code":400,"name":"PASSWORD_RECOVERY_EXPIRED","comment":"The recovery code has expired."}],"available":"user"},{"kind":"method","name":"auth.importWebTokenAuthorization","type":"auth.Authorization","id":767062953,"comment":"Login by importing an authorization token","arguments":[{"name":"api_id","type":"int","comment":"API ID"},{"name":"api_hash","type":"string","comment":"API hash"},{"name":"web_auth_token","type":"string","comment":"The authorization token"}],"throws":[{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."}],"available":"user"},{"kind":"method","name":"auth.requestFirebaseSms","type":"Bool","id":2386109982,"comment":"Request an SMS code via Firebase.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash returned by {@link auth.RawSendCodeRequest}"},{"name":"safety_net_token","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"On Android, a JWS object obtained as described in the auth documentation »"},{"name":"play_integrity_token","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"On Android, an object obtained as described in the auth documentation »"},{"name":"ios_push_secret","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Secret token received via an apple push notification"}],"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"auth.resetLoginEmail","type":"auth.SentCode","id":2123760019,"comment":"Reset the login email ».","arguments":[{"name":"phone_number","type":"string","comment":"Phone number of the account"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash, obtained as described in the documentation »"}],"throws":[{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"TASK_ALREADY_EXISTS","comment":"An email reset was already requested."}],"available":"user"},{"kind":"method","name":"auth.reportMissingCode","type":"Bool","id":3416125430,"comment":"Official apps only, reports that the SMS authentication code wasn't delivered.","arguments":[{"name":"phone_number","type":"string","comment":"Phone number where we were supposed to receive the code"},{"name":"phone_code_hash","type":"string","comment":"The phone code hash obtained from {@link auth.RawSendCodeRequest}"},{"name":"mnc","type":"string","comment":"MNC of the current network operator."}],"throws":[{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"account.registerDevice","type":"Bool","id":3968205178,"comment":"Register device to receive PUSH notifications","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_muted","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Avoid receiving (silent and invisible background) notifications. Useful to save battery."},{"name":"token_type","type":"int","comment":"Device token type, see PUSH updates for the possible values."},{"name":"token","type":"string","comment":"Device token, see PUSH updates for the possible values."},{"name":"app_sandbox","type":"Bool","comment":"If true is transmitted, a sandbox-certificate will be used during transmission."},{"name":"secret","type":"bytes","comment":"For FCM and APNS VoIP, optional encryption key used to encrypt push notifications"},{"name":"other_uids","type":"int53","typeModifiers":{"isVector":true},"comment":"List of user identifiers of other users currently using the client"}],"throws":[{"code":400,"name":"TOKEN_EMPTY","comment":"The specified token is empty."},{"code":400,"name":"TOKEN_INVALID","comment":"The provided token is invalid."},{"code":400,"name":"TOKEN_TYPE_INVALID","comment":"The specified token type is invalid."},{"code":400,"name":"WEBPUSH_AUTH_INVALID","comment":"The specified web push authentication secret is invalid."},{"code":400,"name":"WEBPUSH_KEY_INVALID","comment":"The specified web push elliptic curve Diffie-Hellman public key is invalid."},{"code":400,"name":"WEBPUSH_TOKEN_INVALID","comment":"The specified web push token is invalid."}],"available":"user"},{"kind":"method","name":"account.unregisterDevice","type":"Bool","id":1779249670,"comment":"Deletes a device by its token, stops sending PUSH-notifications to it.","arguments":[{"name":"token_type","type":"int","comment":"Device token type, see PUSH updates for the possible values."},{"name":"token","type":"string","comment":"Device token, see PUSH updates for the possible values."},{"name":"other_uids","type":"int53","typeModifiers":{"isVector":true},"comment":"List of user identifiers of other users currently using the client"}],"throws":[{"code":400,"name":"TOKEN_INVALID","comment":"The provided token is invalid."}],"available":"user"},{"kind":"method","name":"account.updateNotifySettings","type":"Bool","id":2227067795,"comment":"Edits notification settings from a given user/group, from all users/all groups.","arguments":[{"name":"peer","type":"InputNotifyPeer","comment":"Notification source"},{"name":"settings","type":"InputPeerNotifySettings","comment":"Notification settings"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SETTINGS_INVALID","comment":"Invalid settings were provided."}],"available":"user"},{"kind":"method","name":"account.getNotifySettings","type":"PeerNotifySettings","typeModifiers":{"constructorId":2573347852},"id":313765169,"comment":"Gets current notification settings for a given user/group, from all users/all groups.","arguments":[{"name":"peer","type":"InputNotifyPeer","comment":"Notification source"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.resetNotifySettings","type":"Bool","id":3682473799,"comment":"Resets all notification settings from users and groups.","arguments":[],"available":"user"},{"kind":"method","name":"account.updateProfile","type":"User","id":2018596725,"comment":"Updates user profile.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"first_name","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"New user first name"},{"name":"last_name","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"New user last name"},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"New bio"}],"throws":[{"code":400,"name":"ABOUT_TOO_LONG","comment":"About string too long."},{"code":400,"name":"FIRSTNAME_INVALID","comment":"The first name is invalid."}],"available":"user"},{"kind":"method","name":"account.updateStatus","type":"Bool","id":1713919532,"comment":"Updates online user status.","arguments":[{"name":"offline","type":"Bool","comment":"If true is transmitted, user status will change to {@link RawUserStatusOffline}."}],"available":"user"},{"kind":"method","name":"account.getWallPapers","type":"account.WallPapers","id":127302966,"comment":"Returns a list of available wallpapers.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.reportPeer","type":"Bool","id":3317316998,"comment":"Report a peer for violation of telegram's Terms of Service","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer to report"},{"name":"reason","type":"ReportReason","comment":"The reason why this peer is being reported"},{"name":"message","type":"string","comment":"Comment for report moderation"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.checkUsername","type":"Bool","id":655677548,"comment":"Validates a username and checks availability.","arguments":[{"name":"username","type":"string","comment":"username
Accepted characters: A-z (case-insensitive), 0-9 and underscores.
Length: 5-32 characters."}],"throws":[{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},{"kind":"method","name":"account.updateUsername","type":"User","id":1040964988,"comment":"Changes username for the current user.","arguments":[{"name":"username","type":"string","comment":"username or empty string if username is to be removed
Accepted characters: a-z (case-insensitive), 0-9 and underscores.
Length: 5-32 characters."}],"throws":[{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},{"kind":"method","name":"account.getPrivacy","type":"account.PrivacyRules","typeModifiers":{"constructorId":1352683077},"id":3671837008,"comment":"Get privacy settings of current account","arguments":[{"name":"key","type":"InputPrivacyKey","comment":"Peer category whose privacy settings should be fetched"}],"throws":[{"code":400,"name":"PRIVACY_KEY_INVALID","comment":"The privacy key is invalid."}],"available":"user"},{"kind":"method","name":"account.setPrivacy","type":"account.PrivacyRules","typeModifiers":{"constructorId":1352683077},"id":3388480744,"comment":"Change privacy settings of current account","arguments":[{"name":"key","type":"InputPrivacyKey","comment":"New privacy rule"},{"name":"rules","type":"InputPrivacyRule","typeModifiers":{"isVector":true},"comment":"Peers to which the privacy rule will apply."}],"throws":[{"code":400,"name":"PRIVACY_KEY_INVALID","comment":"The privacy key is invalid."},{"code":400,"name":"PRIVACY_TOO_LONG","comment":"Too many privacy rules were specified, the current limit is 1000."},{"code":400,"name":"PRIVACY_VALUE_INVALID","comment":"The specified privacy rule combination is invalid."}],"available":"user"},{"kind":"method","name":"account.deleteAccount","type":"Bool","id":2730545012,"comment":"Delete the user's account from the telegram servers.\n\nCan also be used to delete the account of a user that provided the login code, but forgot the 2FA password and no recovery method is configured, see here » for more info on password recovery, and here » for more info on account deletion.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reason","type":"string","comment":"Why is the account being deleted, can be empty"},{"name":"password","type":"InputCheckPasswordSRP","typeModifiers":{"predicate":"flags.0"},"comment":"2FA password: this field can be omitted even for accounts with 2FA enabled: in this case account account deletion will be delayed by 7 days as specified in the docs »"}],"throws":[{"code":420,"name":"2FA_CONFIRM_WAIT_%d","comment":"Since this account is active and protected by a 2FA password, we will delete it in 1 week for security purposes. You can cancel this process at any time, you'll be able to reset your account in %d seconds."}],"available":"user"},{"kind":"method","name":"account.getAccountTTL","type":"AccountDaysTTL","typeModifiers":{"constructorId":3100684255},"id":150761757,"comment":"Get days to live of account","arguments":[],"available":"user"},{"kind":"method","name":"account.setAccountTTL","type":"Bool","id":608323678,"comment":"Set account self-destruction period","arguments":[{"name":"ttl","type":"AccountDaysTTL","comment":"Time to live in days"}],"throws":[{"code":400,"name":"TTL_DAYS_INVALID","comment":"The provided TTL is invalid."}],"available":"user"},{"kind":"method","name":"account.sendChangePhoneCode","type":"auth.SentCode","id":2186758885,"comment":"Verify a new phone number to associate to the current account","arguments":[{"name":"phone_number","type":"string","comment":"New phone number"},{"name":"settings","type":"CodeSettings","comment":"Phone code settings"}],"throws":[{"code":406,"name":"FRESH_CHANGE_PHONE_FORBIDDEN","comment":"You can't change phone number right after logging in, please wait at least 24 hours."},{"code":400,"name":"PHONE_NUMBER_BANNED","comment":"The provided phone number is banned from telegram."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_OCCUPIED","comment":"The phone number is already in use."}],"available":"user"},{"kind":"method","name":"account.changePhone","type":"User","id":1891839707,"comment":"Change the phone number of the current account","arguments":[{"name":"phone_number","type":"string","comment":"New phone number"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash received when calling {@link account.RawSendChangePhoneCodeRequest}"},{"name":"phone_code","type":"string","comment":"Phone code received when calling {@link account.RawSendChangePhoneCodeRequest}"}],"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_OCCUPIED","comment":"The phone number is already in use."}],"available":"user"},{"kind":"method","name":"account.updateDeviceLocked","type":"Bool","id":954152242,"comment":"When client-side passcode lock feature is enabled, will not show message texts in incoming PUSH notifications.","arguments":[{"name":"period","type":"int","comment":"Inactivity period after which to start hiding message texts in PUSH notifications."}],"available":"user"},{"kind":"method","name":"account.getAuthorizations","type":"account.Authorizations","typeModifiers":{"constructorId":1275039392},"id":3810574680,"comment":"Get logged-in sessions","arguments":[],"available":"user"},{"kind":"method","name":"account.resetAuthorization","type":"Bool","id":3749180348,"comment":"Log out an active authorized session by its hash","arguments":[{"name":"hash","type":"long","comment":"Session hash"}],"throws":[{"code":406,"name":"FRESH_RESET_AUTHORISATION_FORBIDDEN","comment":"You can't logout other sessions if less than 24 hours have passed since you logged on the current session."},{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},{"kind":"method","name":"account.getPassword","type":"account.Password","typeModifiers":{"constructorId":2507886843},"id":1418342645,"comment":"Obtain configuration for two-factor authorization with password","arguments":[],"available":"user"},{"kind":"method","name":"account.getPasswordSettings","type":"account.PasswordSettings","typeModifiers":{"constructorId":2589733861},"id":2631199481,"comment":"Get private info associated to the password info (recovery email, telegram passport info & so on)","arguments":[{"name":"password","type":"InputCheckPasswordSRP","comment":"The password (see SRP)"}],"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."}],"available":"user"},{"kind":"method","name":"account.updatePasswordSettings","type":"Bool","id":2778402863,"comment":"Set a new 2FA password","arguments":[{"name":"password","type":"InputCheckPasswordSRP","comment":"The old password (see SRP)"},{"name":"new_settings","type":"account.PasswordInputSettings","comment":"The new password (see SRP)"}],"throws":[{"code":400,"name":"EMAIL_INVALID","comment":"The specified email is invalid."},{"code":400,"name":"EMAIL_UNCONFIRMED","comment":"Email unconfirmed."},{"code":400,"name":"EMAIL_UNCONFIRMED_%d","comment":"The provided email isn't confirmed, %d is the length of the verification code that was just sent to the email: use {@link account.RawVerifyEmailRequest} to enter the received verification code and enable the recovery email."},{"code":400,"name":"NEW_SALT_INVALID","comment":"The new salt is invalid."},{"code":400,"name":"NEW_SETTINGS_EMPTY","comment":"No password is set on the current account, and no new password was specified in new_settings."},{"code":400,"name":"NEW_SETTINGS_INVALID","comment":"The new password settings are invalid."},{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"SRP_ID_INVALID","comment":"Invalid SRP ID provided."},{"code":400,"name":"SRP_PASSWORD_CHANGED","comment":"Password has changed."}],"available":"user"},{"kind":"method","name":"account.sendConfirmPhoneCode","type":"auth.SentCode","id":457157256,"comment":"Send confirmation code to cancel account deletion, for more info click here »","arguments":[{"name":"hash","type":"string","comment":"The hash from the service notification, for more info click here »"},{"name":"settings","type":"CodeSettings","comment":"Phone code settings"}],"throws":[{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},{"kind":"method","name":"account.confirmPhone","type":"Bool","id":1596029123,"comment":"Confirm a phone number to cancel account deletion, for more info click here »","arguments":[{"name":"phone_code_hash","type":"string","comment":"Phone code hash, for more info click here »"},{"name":"phone_code","type":"string","comment":"SMS code, for more info click here »"}],"throws":[{"code":400,"name":"CODE_HASH_INVALID","comment":"Code hash invalid."},{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."}],"available":"user"},{"kind":"method","name":"account.getTmpPassword","type":"account.TmpPassword","typeModifiers":{"constructorId":3680828724},"id":1151208273,"comment":"Get temporary payment password","arguments":[{"name":"password","type":"InputCheckPasswordSRP","comment":"SRP password parameters"},{"name":"period","type":"int","comment":"Time during which the temporary password will be valid, in seconds; should be between 60 and 86400"}],"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"TMP_PASSWORD_DISABLED","comment":"The temporary password is disabled."}],"available":"user"},{"kind":"method","name":"account.getWebAuthorizations","type":"account.WebAuthorizations","typeModifiers":{"constructorId":3981887996},"id":405695855,"comment":"Get web login widget authorizations","arguments":[],"available":"user"},{"kind":"method","name":"account.resetWebAuthorization","type":"Bool","id":755087855,"comment":"Log out an active web telegram login session","arguments":[{"name":"hash","type":"long","comment":"{@link RawWebAuthorization} hash"}],"throws":[{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},{"kind":"method","name":"account.resetWebAuthorizations","type":"Bool","id":1747789204,"comment":"Reset all active web telegram login sessions","arguments":[],"available":"user"},{"kind":"method","name":"account.getAllSecureValues","type":"SecureValue","typeModifiers":{"isVector":true,"constructorId":411017418},"id":2995305597,"comment":"Get all saved Telegram Passport documents, for more info see the passport docs »","arguments":[],"available":"user"},{"kind":"method","name":"account.getSecureValue","type":"SecureValue","typeModifiers":{"isVector":true,"constructorId":411017418},"id":1936088002,"comment":"Get saved Telegram Passport document, for more info see the passport docs »","arguments":[{"name":"types","type":"SecureValueType","typeModifiers":{"isVector":true},"comment":"Requested value types"}],"available":"user"},{"kind":"method","name":"account.saveSecureValue","type":"SecureValue","typeModifiers":{"constructorId":411017418},"id":2308956957,"comment":"Securely save Telegram Passport document, for more info see the passport docs »","arguments":[{"name":"value","type":"InputSecureValue","comment":"Secure value, for more info see the passport docs »"},{"name":"secure_secret_id","type":"long","comment":"Passport secret hash, for more info see the passport docs »"}],"throws":[{"code":400,"name":"PASSWORD_REQUIRED","comment":"A 2FA password must be configured to use Telegram Passport."},{"code":400,"name":"SECURE_SECRET_REQUIRED","comment":"A secure secret is required."}],"available":"user"},{"kind":"method","name":"account.deleteSecureValue","type":"Bool","id":3095444555,"comment":"Delete stored Telegram Passport documents, for more info see the passport docs »","arguments":[{"name":"types","type":"SecureValueType","typeModifiers":{"isVector":true},"comment":"Document types to delete"}],"available":"user"},{"kind":"method","name":"account.getAuthorizationForm","type":"account.AuthorizationForm","typeModifiers":{"constructorId":2905480408},"id":2838059386,"comment":"Returns a Telegram Passport authorization form for sharing data with a service","arguments":[{"name":"bot_id","type":"int53","comment":"User identifier of the service's bot"},{"name":"scope","type":"string","comment":"Telegram Passport element types requested by the service"},{"name":"public_key","type":"string","comment":"Service's public key"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"PUBLIC_KEY_REQUIRED","comment":"A public key is required."}],"available":"user"},{"kind":"method","name":"account.acceptAuthorization","type":"Bool","id":4092415091,"comment":"Sends a Telegram Passport authorization form, effectively sharing data with the service","arguments":[{"name":"bot_id","type":"int53","comment":"Bot ID"},{"name":"scope","type":"string","comment":"Telegram Passport element types requested by the service"},{"name":"public_key","type":"string","comment":"Service's public key"},{"name":"value_hashes","type":"SecureValueHash","typeModifiers":{"isVector":true},"comment":"Types of values sent and their hashes"},{"name":"credentials","type":"SecureCredentialsEncrypted","comment":"Encrypted values"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"PUBLIC_KEY_REQUIRED","comment":"A public key is required."}],"available":"user"},{"kind":"method","name":"account.sendVerifyPhoneCode","type":"auth.SentCode","id":2778945273,"comment":"Send the verification phone code for telegram passport.","arguments":[{"name":"phone_number","type":"string","comment":"The phone number to verify"},{"name":"settings","type":"CodeSettings","comment":"Phone code settings"}],"throws":[{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"account.verifyPhone","type":"Bool","id":1305716726,"comment":"Verify a phone number for telegram passport.","arguments":[{"name":"phone_number","type":"string","comment":"Phone number"},{"name":"phone_code_hash","type":"string","comment":"Phone code hash received from the call to {@link account.RawSendVerifyPhoneCodeRequest}"},{"name":"phone_code","type":"string","comment":"Code received after the call to {@link account.RawSendVerifyPhoneCodeRequest}"}],"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"account.sendVerifyEmailCode","type":"account.SentEmailCode","typeModifiers":{"constructorId":2166326607},"id":2564831163,"comment":"Send an email verification code.","arguments":[{"name":"purpose","type":"EmailVerifyPurpose","comment":"Verification purpose."},{"name":"email","type":"string","comment":"The email where to send the code."}],"throws":[{"code":400,"name":"EMAIL_INVALID","comment":"The specified email is invalid."},{"code":400,"name":"EMAIL_NOT_ALLOWED","comment":"The specified email cannot be used to complete the operation."},{"code":400,"name":"EMAIL_NOT_SETUP","comment":"In order to change the login email with emailVerifyPurposeLoginChange, an existing login email must already be set using emailVerifyPurposeLoginSetup."},{"code":400,"name":"PHONE_HASH_EXPIRED","comment":"An invalid or expired phone_code_hash was provided."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"account.verifyEmail","type":"account.EmailVerified","id":53322959,"comment":"Verify an email address.","arguments":[{"name":"purpose","type":"EmailVerifyPurpose","comment":"Verification purpose"},{"name":"verification","type":"EmailVerification","comment":"Email verification code or token"}],"throws":[{"code":400,"name":"EMAIL_INVALID","comment":"The specified email is invalid."},{"code":400,"name":"EMAIL_NOT_ALLOWED","comment":"The specified email cannot be used to complete the operation."},{"code":400,"name":"EMAIL_VERIFY_EXPIRED","comment":"The verification email has expired."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},{"kind":"method","name":"account.initTakeoutSession","type":"account.Takeout","typeModifiers":{"constructorId":1304052993},"id":2398350000,"comment":"Initialize a takeout session, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"contacts","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to export contacts"},{"name":"message_users","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to export messages in private chats"},{"name":"message_chats","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to export messages in basic groups"},{"name":"message_megagroups","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether to export messages in supergroups"},{"name":"message_channels","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether to export messages in channels"},{"name":"files","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to export files"},{"name":"file_max_size","type":"int53","typeModifiers":{"predicate":"flags.5"},"comment":"Maximum size of files to export"}],"throws":[{"code":420,"name":"TAKEOUT_INIT_DELAY_%d","comment":"Sorry, for security reasons, you will be able to begin downloading your data in %d seconds. We have notified all your devices about the export request to make sure it's authorized and to give you time to react if it's not."}],"available":"user"},{"kind":"method","name":"account.finishTakeoutSession","type":"Bool","id":489050862,"comment":"Terminate a takeout session, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"success","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Data exported successfully"}],"throws":[{"code":403,"name":"TAKEOUT_REQUIRED","comment":"A takeout session needs to be initialized first, see here » for more info."}],"available":"user"},{"kind":"method","name":"account.confirmPasswordEmail","type":"Bool","id":2413762848,"comment":"Verify an email to use as 2FA recovery method.","arguments":[{"name":"code","type":"string","comment":"The phone code that was received after setting a recovery email"}],"throws":[{"code":400,"name":"CODE_INVALID","comment":"Code invalid."},{"code":400,"name":"EMAIL_HASH_EXPIRED","comment":"Email hash expired."}],"available":"user"},{"kind":"method","name":"account.resendPasswordEmail","type":"Bool","id":2055154197,"comment":"Resend the code to verify an email to use as 2FA recovery method.","arguments":[],"throws":[{"code":400,"name":"EMAIL_HASH_EXPIRED","comment":"Email hash expired."}],"available":"user"},{"kind":"method","name":"account.cancelPasswordEmail","type":"Bool","id":3251361206,"comment":"Cancel the code that was sent to verify an email to use as 2FA recovery method.","arguments":[],"throws":[{"code":400,"name":"EMAIL_HASH_EXPIRED","comment":"Email hash expired."}],"available":"user"},{"kind":"method","name":"account.getContactSignUpNotification","type":"Bool","id":2668087080,"comment":"Whether the user will receive notifications when contacts sign up","arguments":[],"available":"user"},{"kind":"method","name":"account.setContactSignUpNotification","type":"Bool","id":3488890721,"comment":"Toggle contact sign up notifications","arguments":[{"name":"silent","type":"Bool","comment":"Whether to disable contact sign up notifications"}],"available":"user"},{"kind":"method","name":"account.getNotifyExceptions","type":"Updates","id":1398240377,"comment":"Returns list of chats with non-default notification settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"compare_sound","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, chats with non-default sound will be returned"},{"name":"compare_stories","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, chats with non-default notification settings for stories will be returned"},{"name":"peer","type":"InputNotifyPeer","typeModifiers":{"predicate":"flags.0"},"comment":"If specified, only chats of the specified category will be returned"}],"available":"user"},{"kind":"method","name":"account.getWallPaper","type":"WallPaper","id":4237155306,"comment":"Get info about a certain wallpaper","arguments":[{"name":"wallpaper","type":"InputWallPaper","comment":"The wallpaper to get info about"}],"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},{"kind":"method","name":"account.uploadWallPaper","type":"WallPaper","id":3818557187,"comment":"Create and upload a new wallpaper","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"for_chat","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag when uploading wallpapers to be passed to {@link messages.RawSetChatWallPaperRequest}."},{"name":"file","type":"InputFile","comment":"The JPG/PNG wallpaper"},{"name":"mime_type","type":"string","comment":"MIME type of uploaded wallpaper"},{"name":"settings","type":"WallPaperSettings","comment":"Wallpaper settings"}],"throws":[{"code":400,"name":"WALLPAPER_FILE_INVALID","comment":"The specified wallpaper file is invalid."},{"code":400,"name":"WALLPAPER_MIME_INVALID","comment":"The specified wallpaper MIME type is invalid."}],"available":"user"},{"kind":"method","name":"account.saveWallPaper","type":"Bool","id":1817860919,"comment":"Install/uninstall wallpaper","arguments":[{"name":"wallpaper","type":"InputWallPaper","comment":"Wallpaper to install or uninstall"},{"name":"unsave","type":"Bool","comment":"Uninstall wallpaper?"},{"name":"settings","type":"WallPaperSettings","comment":"Wallpaper settings"}],"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},{"kind":"method","name":"account.installWallPaper","type":"Bool","id":4276967273,"comment":"Install wallpaper","arguments":[{"name":"wallpaper","type":"InputWallPaper","comment":"Wallpaper to install"},{"name":"settings","type":"WallPaperSettings","comment":"Wallpaper settings"}],"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},{"kind":"method","name":"account.resetWallPapers","type":"Bool","id":3141244932,"comment":"Delete all installed wallpapers, reverting to the default wallpaper set.","arguments":[],"available":"user"},{"kind":"method","name":"account.getAutoDownloadSettings","type":"account.AutoDownloadSettings","typeModifiers":{"constructorId":1674235686},"id":1457130303,"comment":"Get media autodownload settings","arguments":[],"available":"user"},{"kind":"method","name":"account.saveAutoDownloadSettings","type":"Bool","id":1995661875,"comment":"Change media autodownload settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"low","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to save media in the low data usage preset"},{"name":"high","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to save media in the high data usage preset"},{"name":"settings","type":"AutoDownloadSettings","comment":"Media autodownload settings"}],"available":"user"},{"kind":"method","name":"account.uploadTheme","type":"Document","id":473805619,"comment":"Upload theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"file","type":"InputFile","comment":"Previously uploaded theme file with platform-specific colors for UI components, can be left unset when creating themes that only modify the wallpaper or accent colors."},{"name":"thumb","type":"InputFile","typeModifiers":{"predicate":"flags.0"},"comment":"Thumbnail"},{"name":"file_name","type":"string","comment":"File name"},{"name":"mime_type","type":"string","comment":"MIME type, must be application/x-tgtheme-{format}, where format depends on the client"}],"throws":[{"code":400,"name":"THEME_FILE_INVALID","comment":"Invalid theme file provided."},{"code":400,"name":"THEME_MIME_INVALID","comment":"The theme's MIME type is invalid."}],"available":"user"},{"kind":"method","name":"account.createTheme","type":"Theme","typeModifiers":{"constructorId":2685298646},"id":1697530880,"comment":"Create a theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"slug","type":"string","comment":"Unique theme ID used to generate theme deep links, can be empty to autogenerate a random ID."},{"name":"title","type":"string","comment":"Theme name"},{"name":"document","type":"InputDocument","typeModifiers":{"predicate":"flags.2"},"comment":"Theme file"},{"name":"settings","type":"InputThemeSettings","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Theme settings, multiple values can be provided for the different base themes (day/night mode, etc)."}],"throws":[{"code":400,"name":"THEME_MIME_INVALID","comment":"The theme's MIME type is invalid."},{"code":400,"name":"THEME_TITLE_INVALID","comment":"The specified theme title is invalid."}],"available":"user"},{"kind":"method","name":"account.updateTheme","type":"Theme","typeModifiers":{"constructorId":2685298646},"id":737414348,"comment":"Update theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"format","type":"string","comment":"Theme format, a string that identifies the theming engines supported by the client"},{"name":"theme","type":"InputTheme","comment":"Theme to update"},{"name":"slug","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Unique theme ID"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Theme name"},{"name":"document","type":"InputDocument","typeModifiers":{"predicate":"flags.2"},"comment":"Theme file"},{"name":"settings","type":"InputThemeSettings","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Theme settings"}],"throws":[{"code":400,"name":"THEME_INVALID","comment":"Invalid theme provided."}],"available":"user"},{"kind":"method","name":"account.saveTheme","type":"Bool","id":4065792108,"comment":"Save a theme","arguments":[{"name":"theme","type":"InputTheme","comment":"Theme to save"},{"name":"unsave","type":"Bool","comment":"Unsave"}],"throws":[{"code":400,"name":"THEME_INVALID","comment":"Invalid theme provided."}],"available":"user"},{"kind":"method","name":"account.installTheme","type":"Bool","id":3341269819,"comment":"Install a theme","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to install the dark version"},{"name":"theme","type":"InputTheme","typeModifiers":{"predicate":"flags.1"},"comment":"Theme to install"},{"name":"format","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Theme format, a string that identifies the theming engines supported by the client"},{"name":"base_theme","type":"BaseTheme","typeModifiers":{"predicate":"flags.3"},"comment":"Indicates a basic theme provided by all clients"}],"available":"user"},{"kind":"method","name":"account.getTheme","type":"Theme","typeModifiers":{"constructorId":2685298646},"id":978872812,"comment":"Get theme information","arguments":[{"name":"format","type":"string","comment":"Theme format, a string that identifies the theming engines supported by the client"},{"name":"theme","type":"InputTheme","comment":"Theme"}],"throws":[{"code":400,"name":"THEME_FORMAT_INVALID","comment":"Invalid theme format provided."},{"code":400,"name":"THEME_INVALID","comment":"Invalid theme provided."}],"available":"user"},{"kind":"method","name":"account.getThemes","type":"account.Themes","id":1913054296,"comment":"Get installed themes","arguments":[{"name":"format","type":"string","comment":"Theme format, a string that identifies the theming engines supported by the client"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.setContentSettings","type":"Bool","id":3044323691,"comment":"Set sensitive content settings (for viewing or hiding NSFW content)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"sensitive_enabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Enable NSFW content"}],"throws":[{"code":403,"name":"SENSITIVE_CHANGE_FORBIDDEN","comment":"You can't change your sensitive content settings."}],"available":"user"},{"kind":"method","name":"account.getContentSettings","type":"account.ContentSettings","typeModifiers":{"constructorId":1474462241},"id":2342210990,"comment":"Get sensitive content settings","arguments":[],"available":"user"},{"kind":"method","name":"account.getMultiWallPapers","type":"WallPaper","typeModifiers":{"isVector":true},"id":1705865692,"comment":"Get info about multiple wallpapers","arguments":[{"name":"wallpapers","type":"InputWallPaper","typeModifiers":{"isVector":true},"comment":"Wallpapers to fetch info about"}],"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},{"kind":"method","name":"account.getGlobalPrivacySettings","type":"GlobalPrivacySettings","typeModifiers":{"constructorId":1934380235},"id":3945483510,"comment":"Get global privacy settings","arguments":[],"available":"user"},{"kind":"method","name":"account.setGlobalPrivacySettings","type":"GlobalPrivacySettings","typeModifiers":{"constructorId":1934380235},"id":517647042,"comment":"Set global privacy settings","arguments":[{"name":"settings","type":"GlobalPrivacySettings","comment":"Global privacy settings"}],"throws":[{"code":400,"name":"AUTOARCHIVE_NOT_AVAILABLE","comment":"The autoarchive setting is not available at this time: please check the value of the autoarchive_setting_available field in client config » before calling this method."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"account.reportProfilePhoto","type":"Bool","id":4203529973,"comment":"Report a profile photo of a dialog","arguments":[{"name":"peer","type":"InputPeer","comment":"The dialog"},{"name":"photo_id","type":"InputPhoto","comment":"Dialog photo ID"},{"name":"reason","type":"ReportReason","comment":"Report reason"},{"name":"message","type":"string","comment":"Comment for report moderation"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.resetPassword","type":"account.ResetPasswordResult","id":2466827803,"comment":"Initiate a 2FA password reset: can only be used if the user is already logged-in, see here for more info »","arguments":[],"throws":[{"code":400,"name":"PASSWORD_EMPTY","comment":"The provided password is empty."}],"available":"user"},{"kind":"method","name":"account.declinePasswordReset","type":"Bool","id":1284770294,"comment":"Abort a pending 2FA password reset, see here for more info »","arguments":[],"throws":[{"code":400,"name":"RESET_REQUEST_MISSING","comment":"No password reset is in progress."}],"available":"user"},{"kind":"method","name":"account.getChatThemes","type":"account.Themes","id":3594051209,"comment":"Get all available chat themes ».","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.setAuthorizationTTL","type":"Bool","id":3213466272,"comment":"Set time-to-live of current session","arguments":[{"name":"authorization_ttl_days","type":"int","comment":"Time-to-live of current session in days"}],"throws":[{"code":406,"name":"FRESH_RESET_AUTHORISATION_FORBIDDEN","comment":"You can't logout other sessions if less than 24 hours have passed since you logged on the current session."},{"code":400,"name":"TTL_DAYS_INVALID","comment":"The provided TTL is invalid."}],"available":"user"},{"kind":"method","name":"account.changeAuthorizationSettings","type":"Bool","id":1089766498,"comment":"Change settings related to a session.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"confirmed","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, confirms a newly logged in session »."},{"name":"hash","type":"long","comment":"Session ID from the {@link RawAuthorization} constructor, fetchable using {@link account.RawGetAuthorizationsRequest}"},{"name":"encrypted_requests_disabled","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable or disable receiving encrypted chats: if the flag is not set, the previous setting is not changed"},{"name":"call_requests_disabled","type":"Bool","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to enable or disable receiving calls: if the flag is not set, the previous setting is not changed"}],"throws":[{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},{"kind":"method","name":"account.getSavedRingtones","type":"account.SavedRingtones","id":3784319624,"comment":"Fetch saved notification sounds","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.saveRingtone","type":"account.SavedRingtone","id":1038768899,"comment":"Save or remove saved notification sound.\n\nIf the notification sound is already in MP3 format, {@link account.RawSavedRingtone} will be returned.
\nOtherwise, it will be automatically converted and a {@link account.RawSavedRingtoneConverted} will be returned, containing a new {@link RawDocument} object that should be used to refer to the ringtone from now on (ie when deleting it using the unsave parameter, or when downloading it).","arguments":[{"name":"id","type":"InputDocument","comment":"Notification sound uploaded using {@link account.RawUploadRingtoneRequest}"},{"name":"unsave","type":"Bool","comment":"Whether to add or delete the notification sound"}],"throws":[{"code":400,"name":"RINGTONE_INVALID","comment":"The specified ringtone is invalid."}],"available":"user"},{"kind":"method","name":"account.uploadRingtone","type":"Document","id":2199552930,"comment":"Upload notification sound, use {@link account.RawSaveRingtoneRequest} to convert it and add it to the list of saved notification sounds.","arguments":[{"name":"file","type":"InputFile","comment":"Notification sound"},{"name":"file_name","type":"string","comment":"File name"},{"name":"mime_type","type":"string","comment":"MIME type of file"}],"throws":[{"code":400,"name":"RINGTONE_MIME_INVALID","comment":"The MIME type for the ringtone is invalid."}],"available":"user"},{"kind":"method","name":"account.updateEmojiStatus","type":"Bool","id":4224966251,"comment":"Set an emoji status","arguments":[{"name":"emoji_status","type":"EmojiStatus","comment":"Emoji status to set"}],"throws":[{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."}],"available":"user"},{"kind":"method","name":"account.getDefaultEmojiStatuses","type":"account.EmojiStatuses","id":3598005126,"comment":"Get a list of default suggested emoji statuses","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.getRecentEmojiStatuses","type":"account.EmojiStatuses","id":257392901,"comment":"Get recently used emoji statuses","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.clearRecentEmojiStatuses","type":"Bool","id":404757166,"comment":"Clears list of recently used emoji statuses","arguments":[],"available":"user"},{"kind":"method","name":"account.reorderUsernames","type":"Bool","id":4015001259,"comment":"Reorder usernames associated with the currently logged-in user.","arguments":[{"name":"order","type":"string","typeModifiers":{"isVector":true},"comment":"The new order for active usernames. All active usernames must be specified."}],"throws":[{"code":400,"name":"ORDER_INVALID","comment":"The specified username order is invalid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},{"kind":"method","name":"account.toggleUsername","type":"Bool","id":1490465654,"comment":"Activate or deactivate a purchased fragment.com username associated to the currently logged-in user.","arguments":[{"name":"username","type":"string","comment":"Username"},{"name":"active","type":"Bool","comment":"Whether to activate or deactivate it"}],"throws":[{"code":400,"name":"USERNAMES_ACTIVE_TOO_MUCH","comment":"The maximum number of active usernames was reached."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},{"kind":"method","name":"account.getDefaultProfilePhotoEmojis","type":"EmojiList","id":3799319336,"comment":"Get a set of suggested custom emoji stickers that can be used as profile picture","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.getDefaultGroupPhotoEmojis","type":"EmojiList","id":2438488238,"comment":"Get a set of suggested custom emoji stickers that can be used as group picture","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.getAutoSaveSettings","type":"account.AutoSaveSettings","typeModifiers":{"constructorId":1279133341},"id":2915810522,"comment":"Get autosave settings","arguments":[],"available":"user"},{"kind":"method","name":"account.saveAutoSaveSettings","type":"Bool","id":3600515937,"comment":"Modify autosave settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"users","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the new settings should affect all private chats"},{"name":"chats","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the new settings should affect all groups"},{"name":"broadcasts","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the new settings should affect all channels"},{"name":"peer","type":"InputPeer","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the new settings should affect a specific peer"},{"name":"settings","type":"AutoSaveSettings","comment":"The new autosave settings"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.deleteAutoSaveExceptions","type":"Bool","id":1404829728,"comment":"Clear all peer-specific autosave settings.","arguments":[],"available":"user"},{"kind":"method","name":"account.invalidateSignInCodes","type":"Bool","id":3398101178,"comment":"Invalidate the specified login codes, see here » for more info.","arguments":[{"name":"codes","type":"string","typeModifiers":{"isVector":true},"comment":"The login codes to invalidate."}],"available":"user"},{"kind":"method","name":"account.updateColor","type":"Bool","id":2096079197,"comment":"Update the accent color and background custom emoji » of the current account.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"for_profile","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to change the accent color emoji pattern of the profile page; otherwise, the accent color and emoji pattern of messages will be changed."},{"name":"color","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"ID of the accent color palette » to use (not RGB24, see here » for more info)."},{"name":"background_emoji_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"Custom emoji ID used in the accent color pattern."}],"throws":[{"code":400,"name":"COLOR_INVALID","comment":"The specified color palette ID was invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"account.getDefaultBackgroundEmojis","type":"EmojiList","id":2785720782,"comment":"Get a set of suggested custom emoji stickers that can be used in an accent color pattern.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.getChannelDefaultEmojiStatuses","type":"account.EmojiStatuses","id":1999087573,"comment":"Get a list of default suggested channel emoji statuses.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.getChannelRestrictedStatusEmojis","type":"EmojiList","id":900325589,"comment":"Returns fetch the full list of custom emoji IDs » that cannot be used in channel emoji statuses ».","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"account.updateBusinessWorkHours","type":"Bool","id":1258348646,"comment":"Specify a set of Telegram Business opening hours.
\nThis info will be contained in {@link RawUserFull}.business_work_hours.\n\nTo remove all opening hours, invoke the method without setting the business_work_hours field.\n\nNote that the opening hours specified by the user must be appropriately validated and transformed before invoking the method, as specified here ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"business_work_hours","type":"BusinessWorkHours","typeModifiers":{"predicate":"flags.0"},"comment":"Opening hours (optional, if not set removes all opening hours)."}],"throws":[{"code":400,"name":"BUSINESS_WORK_HOURS_EMPTY","comment":"No work hours were specified."},{"code":400,"name":"BUSINESS_WORK_HOURS_PERIOD_INVALID","comment":"The specified work hours are invalid, see here » for the exact requirements."},{"code":400,"name":"TIMEZONE_INVALID","comment":"The specified timezone does not exist."}],"available":"user"},{"kind":"method","name":"account.updateBusinessLocation","type":"Bool","id":2657817370,"comment":"Businesses » may advertise their location using this method, see here » for more info.\n\nTo remove business location information invoke the method without setting any of the parameters.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"geo_point","type":"InputGeoPoint","typeModifiers":{"predicate":"flags.1"},"comment":"Optional, contains a set of geographical coordinates."},{"name":"address","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Mandatory when setting/updating the location, contains a textual description of the address (max 96 UTF-8 chars)."}],"available":"user"},{"kind":"method","name":"account.updateBusinessGreetingMessage","type":"Bool","id":1724755908,"comment":"Set a list of Telegram Business greeting messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message","type":"InputBusinessGreetingMessage","typeModifiers":{"predicate":"flags.0"},"comment":"Greeting message configuration and contents."}],"available":"user"},{"kind":"method","name":"account.updateBusinessAwayMessage","type":"Bool","id":2724888485,"comment":"Set a list of Telegram Business away messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message","type":"InputBusinessAwayMessage","typeModifiers":{"predicate":"flags.0"},"comment":"Away message configuration and contents."}],"available":"user"},{"kind":"method","name":"account.updateConnectedBot","type":"Updates","id":1138250269,"comment":"Connect a business bot » to the current account, or to change the current connection settings.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_reply","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the bot can reply to messages it receives from us, on behalf of us using the business connection."},{"name":"deleted","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to fully disconnect the bot from the current account."},{"name":"bot","type":"InputUser","comment":"The bot to connect or disconnect"},{"name":"recipients","type":"InputBusinessBotRecipients","comment":"Configuration for the business connection"}],"throws":[{"code":400,"name":"BOT_BUSINESS_MISSING","comment":"The specified bot is not a business bot (the {@link RawUser}.bot_business flag is not set)."},{"code":400,"name":"BUSINESS_RECIPIENTS_EMPTY","comment":"You didn't set any flag in inputBusinessBotRecipients, thus the bot cannot work with any peer."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"account.getConnectedBots","type":"account.ConnectedBots","typeModifiers":{"constructorId":400029819},"id":1319421967,"comment":"List all currently connected business bots »","arguments":[],"available":"user"},{"kind":"method","name":"account.getBotBusinessConnection","type":"Updates","id":1990746736,"comment":"Bots may invoke this method to re-fetch the {@link RawUpdateBotBusinessConnect} constructor associated with a specific business connection_id, see here » for more info on connected business bots.
\nThis is needed for example for freshly logged in bots that are receiving some {@link RawUpdateBotNewBusinessMessage}, etc. updates because some users have already connected to the bot before it could login.
\nIn this case, the bot is receiving messages from the business connection, but it hasn't cached the associated {@link RawUpdateBotBusinessConnect} with info about the connection (can it reply to messages? etc.) yet, and cannot receive the old ones because they were sent when the bot wasn't logged into the session yet.
\nThis method can be used to fetch info about a not-yet-cached business connection, and should not be invoked if the info is already cached or to fetch changes, as eventual changes will automatically be sent as new {@link RawUpdateBotBusinessConnect} updates to the bot using the usual update delivery methods ».","arguments":[{"name":"connection_id","type":"string","comment":"Business connection ID »."}],"throws":[{"code":400,"name":"CONNECTION_ID_INVALID","comment":"The specified connection ID is invalid."}],"available":"both"},{"kind":"method","name":"account.updateBusinessIntro","type":"Bool","id":2786381876,"comment":"Set or remove the Telegram Business introduction ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"intro","type":"InputBusinessIntro","typeModifiers":{"predicate":"flags.0"},"comment":"Telegram Business introduction, to remove it call the method without setting this flag."}],"available":"user"},{"kind":"method","name":"account.toggleConnectedBotPaused","type":"Bool","id":1684934807,"comment":"Pause or unpause a specific chat, temporarily disconnecting it from all business bots ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat to pause"},{"name":"paused","type":"Bool","comment":"Whether to pause or unpause the chat"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.disablePeerConnectedBot","type":"Bool","id":1581481689,"comment":"Permanently disconnect a specific chat from all business bots » (equivalent to specifying it in recipients.exclude_users during initial configuration with {@link account.RawUpdateConnectedBotRequest}); to reconnect of a chat disconnected using this method the user must reconnect the entire bot by invoking {@link account.RawUpdateConnectedBotRequest}.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat to disconnect"}],"throws":[{"code":400,"name":"BOT_ALREADY_DISABLED","comment":"The connected business bot was already disabled for the specified peer."},{"code":400,"name":"BOT_NOT_CONNECTED_YET","comment":"No business bot is connected to the currently logged in user."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"account.updateBirthday","type":"Bool","id":3429764113,"comment":"Update our birthday, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"birthday","type":"Birthday","typeModifiers":{"predicate":"flags.0"},"comment":"Birthday."}],"throws":[{"code":400,"name":"BIRTHDAY_INVALID","comment":"An invalid age was specified, must be between 0 and 150 years."}],"available":"user"},{"kind":"method","name":"account.createBusinessChatLink","type":"BusinessChatLink","typeModifiers":{"constructorId":3031328367},"id":2287068814,"comment":"Create a business chat deep link ».","arguments":[{"name":"link","type":"InputBusinessChatLink","comment":"Info about the link to create."}],"throws":[{"code":400,"name":"CHATLINKS_TOO_MUCH","comment":"Too many business chat links were created, please delete some older links."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"account.editBusinessChatLink","type":"BusinessChatLink","typeModifiers":{"constructorId":3031328367},"id":2352222383,"comment":"Edit a created business chat deep link ».","arguments":[{"name":"slug","type":"string","comment":"Slug of the link, obtained as specified here »."},{"name":"link","type":"InputBusinessChatLink","comment":"New link information."}],"throws":[{"code":400,"name":"CHATLINK_SLUG_EMPTY","comment":"The specified slug is empty."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"account.deleteBusinessChatLink","type":"Bool","id":1611085428,"comment":"Delete a business chat deep link ».","arguments":[{"name":"slug","type":"string","comment":"Slug of the link, obtained as specified here »."}],"throws":[{"code":400,"name":"CHATLINK_SLUG_EMPTY","comment":"The specified slug is empty."},{"code":400,"name":"CHATLINK_SLUG_EXPIRED","comment":"The specified business chat link has expired."}],"available":"user"},{"kind":"method","name":"account.getBusinessChatLinks","type":"account.BusinessChatLinks","typeModifiers":{"constructorId":3963855569},"id":1869667809,"comment":"List all created business chat deep links ».","arguments":[],"available":"user"},{"kind":"method","name":"account.resolveBusinessChatLink","type":"account.ResolvedBusinessChatLinks","typeModifiers":{"constructorId":2586029857},"id":1418913262,"comment":"Resolve a business chat deep link ».","arguments":[{"name":"slug","type":"string","comment":"Slug of the link, obtained as specified here »."}],"throws":[{"code":400,"name":"CHATLINK_SLUG_EMPTY","comment":"The specified slug is empty."},{"code":400,"name":"CHATLINK_SLUG_EXPIRED","comment":"The specified business chat link has expired."}],"available":"user"},{"kind":"method","name":"account.updatePersonalChannel","type":"Bool","id":3645048288,"comment":"Associate (or remove) a personal channel », that will be listed on our personal profile page ».\n\nChanging it will emit an {@link RawUpdateUser} update.","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel, pass {@link RawInputChannelEmpty} to remove it."}],"available":"user"},{"kind":"method","name":"account.toggleSponsoredMessages","type":"Bool","id":3118048141,"comment":"Disable or re-enable Telegram ads for the current Premium account.\n\nUseful for business owners that may want to launch and view their own Telegram ads via the Telegram ad platform ».","arguments":[{"name":"enabled","type":"Bool","comment":"Enable or disable ads."}],"available":"user"},{"kind":"method","name":"account.getReactionsNotifySettings","type":"ReactionsNotifySettings","typeModifiers":{"constructorId":1457736048},"id":115172684,"comment":"Get the current reaction notification settings ».","arguments":[],"available":"user"},{"kind":"method","name":"account.setReactionsNotifySettings","type":"ReactionsNotifySettings","typeModifiers":{"constructorId":1457736048},"id":829220168,"comment":"Change the reaction notification settings ».","arguments":[{"name":"settings","type":"ReactionsNotifySettings","comment":"New reaction notification settings."}],"available":"user"},{"kind":"method","name":"users.getUsers","type":"User","typeModifiers":{"isVector":true},"id":227648840,"comment":"Returns basic user info according to their identifiers.","arguments":[{"name":"id","type":"InputUser","typeModifiers":{"isVector":true},"comment":"List of user identifiers"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"FROM_MESSAGE_BOT_DISABLED","comment":"Bots can't use fromMessage min constructors."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"users.getFullUser","type":"users.UserFull","typeModifiers":{"constructorId":997004590},"id":3054459160,"comment":"Returns extended user info by ID.","arguments":[{"name":"id","type":"InputUser","comment":"User ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"users.setSecureValueErrors","type":"Bool","id":2429064373,"comment":"Notify the user that the sent passport data contains some errors The user will not be able to re-submit their Passport data to you until the errors are fixed (the contents of the field for which you returned the error must change).\n\nUse this if the data submitted by the user doesn't satisfy the standards your service requires for any reason. For example, if a birthday date seems invalid, a submitted document is blurry, a scan shows evidence of tampering, etc. Supply some details in the error message to make sure the user knows how to correct the issues.","arguments":[{"name":"id","type":"InputUser","comment":"The user"},{"name":"errors","type":"SecureValueError","typeModifiers":{"isVector":true},"comment":"Errors"}],"throws":[{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"bot"},{"kind":"method","name":"users.getIsPremiumRequiredToContact","type":"Bool","typeModifiers":{"isVector":true},"id":2787289616,"comment":"Check whether we can write to the specified user (this method can only be called by non-Premium users), see here » for more info on the full flow.","arguments":[{"name":"id","type":"InputUser","typeModifiers":{"isVector":true},"comment":"Users to fetch info about."}],"available":"user"},{"kind":"method","name":"contacts.getContactIDs","type":"int","typeModifiers":{"isVector":true},"id":2061264541,"comment":"Get the telegram IDs of all contacts.
\nReturns an array of Telegram user IDs for all contacts (0 if a contact does not have an associated Telegram account or have hidden their account using privacy settings).","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"available":"user"},{"kind":"method","name":"contacts.getStatuses","type":"ContactStatus","typeModifiers":{"isVector":true,"constructorId":383348795},"id":3299038190,"comment":"Use this method to obtain the online statuses of all contacts with an accessible Telegram account.","arguments":[],"available":"user"},{"kind":"method","name":"contacts.getContacts","type":"contacts.Contacts","id":1574346258,"comment":"Returns the current user's contact list.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here.
Note that the hash is computed using the usual algorithm, passing to the algorithm first the previously returned {@link contacts.RawContacts}.saved_count field, then max 100000 sorted user IDs from the contact list, including the ID of the currently logged in user if it is saved as a contact.
Example: tdlib implementation."}],"available":"user"},{"kind":"method","name":"contacts.importContacts","type":"contacts.ImportedContacts","typeModifiers":{"constructorId":2010127419},"id":746589157,"comment":"Imports contacts: saves a full list on the server, adds already registered contacts to the contact list, returns added contacts and their info.\n\nUse {@link contacts.RawAddContactRequest} to add Telegram contacts without actually using their phone number.","arguments":[{"name":"contacts","type":"InputContact","typeModifiers":{"isVector":true},"comment":"List of contacts to import"}],"available":"user"},{"kind":"method","name":"contacts.deleteContacts","type":"Updates","id":157945344,"comment":"Deletes several contacts from the list.","arguments":[{"name":"id","type":"InputUser","typeModifiers":{"isVector":true},"comment":"User ID list"}],"available":"user"},{"kind":"method","name":"contacts.deleteByPhones","type":"Bool","id":269745566,"comment":"Delete contacts by phone number","arguments":[{"name":"phones","type":"string","typeModifiers":{"isVector":true},"comment":"Phone numbers"}],"available":"user"},{"kind":"method","name":"contacts.block","type":"Bool","id":774801204,"comment":"Adds a peer to a blocklist, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my_stories_from","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the peer should be added to the story blocklist; if not set, the peer will be added to the main blocklist, see here » for more info."},{"name":"id","type":"InputPeer","comment":"Peer"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"contacts.unblock","type":"Bool","id":3041973032,"comment":"Deletes a peer from a blocklist, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my_stories_from","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the peer should be removed from the story blocklist; if not set, the peer will be removed from the main blocklist, see here » for more info."},{"name":"id","type":"InputPeer","comment":"Peer"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"contacts.getBlocked","type":"contacts.Blocked","id":2592509824,"comment":"Returns the list of blocked users.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my_stories_from","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to fetch the story blocklist; if not set, will fetch the main blocklist. See here » for differences between the two."},{"name":"offset","type":"int","comment":"The number of list elements to be skipped"},{"name":"limit","type":"int","comment":"The number of list elements to be returned"}],"available":"user"},{"kind":"method","name":"contacts.search","type":"contacts.Found","typeModifiers":{"constructorId":3004386717},"id":301470424,"comment":"Returns users found by username substring.","arguments":[{"name":"q","type":"string","comment":"Target substring"},{"name":"limit","type":"int","comment":"Maximum number of users to be returned"}],"throws":[{"code":400,"name":"QUERY_TOO_SHORT","comment":"The query string is too short."},{"code":400,"name":"SEARCH_QUERY_EMPTY","comment":"The search query is empty."}],"available":"user"},{"kind":"method","name":"contacts.resolveUsername","type":"contacts.ResolvedPeer","typeModifiers":{"constructorId":2131196633},"id":4181511075,"comment":"Resolve a @username to get peer info","arguments":[{"name":"username","type":"string","comment":"@username to resolve"}],"throws":[{"code":400,"name":"CONNECTION_LAYER_INVALID","comment":"Layer invalid."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_OCCUPIED","comment":"The provided username is not occupied."}],"available":"both"},{"kind":"method","name":"contacts.getTopPeers","type":"contacts.TopPeers","id":2536798390,"comment":"Get most used peers","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"correspondents","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Users we've chatted most frequently with"},{"name":"bots_pm","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Most used bots"},{"name":"bots_inline","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Most used inline bots"},{"name":"phone_calls","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Most frequently called users"},{"name":"forward_users","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Users to which the users often forwards messages to"},{"name":"forward_chats","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Chats to which the users often forwards messages to"},{"name":"groups","type":"true","typeModifiers":{"predicate":"flags.10"},"comment":"Often-opened groups and supergroups"},{"name":"channels","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Most frequently visited channels"},{"name":"bots_app","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"Most frequently used Main Mini Bot Apps."},{"name":"offset","type":"int","comment":"Offset for pagination"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":400,"name":"TYPES_EMPTY","comment":"No top peer type was provided."}],"available":"user"},{"kind":"method","name":"contacts.resetTopPeerRating","type":"Bool","id":451113900,"comment":"Reset rating of top peer","arguments":[{"name":"category","type":"TopPeerCategory","comment":"Top peer category"},{"name":"peer","type":"InputPeer","comment":"Peer whose rating should be reset"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"contacts.resetSaved","type":"Bool","id":2274703345,"comment":"Removes all contacts without an associated Telegram account.","arguments":[],"available":"user"},{"kind":"method","name":"contacts.getSaved","type":"SavedContact","typeModifiers":{"isVector":true,"constructorId":289586518},"id":2196890527,"comment":"Get all contacts, requires a takeout session, see here » for more info.","arguments":[],"throws":[{"code":400,"name":"TAKEOUT_INVALID","comment":"The specified takeout ID is invalid."},{"code":403,"name":"TAKEOUT_REQUIRED","comment":"A takeout session needs to be initialized first, see here » for more info."}],"available":"user"},{"kind":"method","name":"contacts.toggleTopPeers","type":"Bool","id":2232729050,"comment":"Enable/disable top peers","arguments":[{"name":"enabled","type":"Bool","comment":"Enable/disable"}],"available":"user"},{"kind":"method","name":"contacts.addContact","type":"Updates","id":3908330448,"comment":"Add an existing telegram user as contact.\n\nUse {@link contacts.RawImportContactsRequest} to add contacts by phone number, without knowing their Telegram ID.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"add_phone_privacy_exception","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Allow the other user to see our phone number?"},{"name":"id","type":"InputUser","comment":"Telegram ID of the other user"},{"name":"first_name","type":"string","comment":"First name"},{"name":"last_name","type":"string","comment":"Last name"},{"name":"phone","type":"string","comment":"User's phone number, may be omitted to simply add the user to the contact list, without a phone number."}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"CONTACT_NAME_EMPTY","comment":"Contact name empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"contacts.acceptContact","type":"Updates","id":4164002319,"comment":"If the add contact action bar is active, add that user as contact","arguments":[{"name":"id","type":"InputUser","comment":"The user to add as contact"}],"throws":[{"code":400,"name":"CONTACT_ADD_MISSING","comment":"Contact to add is missing."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"CONTACT_REQ_MISSING","comment":"Missing contact request."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"contacts.getLocated","type":"Updates","id":3544759364,"comment":"Get users and geochats near you, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"While the geolocation of the current user is public, clients should update it in the background every half-an-hour or so, while setting this flag.
Do this only if the new location is more than 1 KM away from the previous one, or if the previous location is unknown."},{"name":"geo_point","type":"InputGeoPoint","comment":"Geolocation"},{"name":"self_expires","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the geolocation of the current user will be public for the specified number of seconds; pass 0x7fffffff to disable expiry, 0 to make the current geolocation private; if the flag isn't set, no changes will be applied."}],"throws":[{"code":406,"name":"BUSINESS_ADDRESS_ACTIVE","comment":"The user is currently advertising a Business Location, the location may only be changed (or removed) using {@link account.RawUpdateBusinessLocationRequest}. ."},{"code":400,"name":"GEO_POINT_INVALID","comment":"Invalid geoposition provided."},{"code":406,"name":"USERPIC_PRIVACY_REQUIRED","comment":"You need to disable privacy settings for your profile picture in order to make your geolocation public."},{"code":406,"name":"USERPIC_UPLOAD_REQUIRED","comment":"You must have a profile picture to publish your geolocation."}],"available":"user"},{"kind":"method","name":"contacts.blockFromReplies","type":"Updates","id":698914348,"comment":"Stop getting notifications about discussion replies of a certain user in @replies","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"delete_message","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to delete the specified message as well"},{"name":"delete_history","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to delete all @replies messages from this user as well"},{"name":"report_spam","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to also report this user for spam"},{"name":"msg_id","type":"int","comment":"ID of the message in the @replies chat"}],"throws":[{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"contacts.resolvePhone","type":"contacts.ResolvedPeer","typeModifiers":{"constructorId":2131196633},"id":2331591492,"comment":"Resolve a phone number to get user info, if their privacy settings allow it.","arguments":[{"name":"phone","type":"string","comment":"Phone number in international format, possibly obtained from a phone number deep link."}],"throws":[{"code":400,"name":"PHONE_NOT_OCCUPIED","comment":"No user is associated to the specified phone number."}],"available":"user"},{"kind":"method","name":"contacts.exportContactToken","type":"ExportedContactToken","typeModifiers":{"constructorId":1103040667},"id":4167385127,"comment":"Generates a temporary profile link for the currently logged-in user.","arguments":[],"available":"user"},{"kind":"method","name":"contacts.importContactToken","type":"User","id":318789512,"comment":"Obtain user info from a temporary profile link.","arguments":[{"name":"token","type":"string","comment":"The token extracted from the temporary profile link."}],"throws":[{"code":400,"name":"IMPORT_TOKEN_INVALID","comment":"The specified token is invalid."}],"available":"user"},{"kind":"method","name":"contacts.editCloseFriends","type":"Bool","id":3127313904,"comment":"Edit the close friends list, see here » for more info.","arguments":[{"name":"id","type":"int53","typeModifiers":{"isVector":true},"comment":"Full list of user IDs of close friends, see here for more info."}],"available":"user"},{"kind":"method","name":"contacts.setBlocked","type":"Bool","id":2496027766,"comment":"Replace the contents of an entire blocklist, see here for more info ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"my_stories_from","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to edit the story blocklist; if not set, will edit the main blocklist. See here » for differences between the two."},{"name":"id","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Full content of the blocklist."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"available":"user"},{"kind":"method","name":"contacts.getBirthdays","type":"contacts.ContactBirthdays","typeModifiers":{"constructorId":290452237},"id":3673008228,"comment":"Fetch all users with birthdays that fall within +1/-1 days, relative to the current day: this method should be invoked by clients every 6-8 hours, and if the result is non-empty, it should be used to appropriately update locally cached birthday information in {@link RawUser}.birthday.\n\nSee here » for more info.","arguments":[],"available":"user"},{"kind":"method","name":"messages.getMessages","type":"messages.Messages","id":1673946374,"comment":"Returns the list of messages by their IDs.","arguments":[{"name":"id","type":"InputMessage","typeModifiers":{"isVector":true},"comment":"Message ID list"}],"available":"both"},{"kind":"method","name":"messages.getDialogs","type":"messages.Dialogs","id":2700397391,"comment":"Returns the current user dialog list.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"exclude_pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Exclude pinned dialogs"},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Peer folder ID, for more info click here"},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here (top_message ID used for pagination)"},{"name":"offset_peer","type":"InputPeer","comment":"Offset peer for pagination"},{"name":"limit","type":"int","comment":"Number of list elements to be returned"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."},{"code":400,"name":"OFFSET_PEER_ID_INVALID","comment":"The provided offset peer is invalid."}],"available":"user"},{"kind":"method","name":"messages.getHistory","type":"messages.Messages","id":1143203525,"comment":"Returns the conversation history with one interlocutor / within a chat","arguments":[{"name":"peer","type":"InputPeer","comment":"Target peer"},{"name":"offset_id","type":"int","comment":"Only return messages starting from the specified message ID"},{"name":"offset_date","type":"int","comment":"Only return messages sent before the specified date"},{"name":"add_offset","type":"int","comment":"Number of list elements to be skipped, negative values are also accepted."},{"name":"limit","type":"int","comment":"Number of results to return"},{"name":"max_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with IDs less than max_id"},{"name":"min_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with IDs more than min_id"},{"name":"hash","type":"long","comment":"Result hash"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TAKEOUT_INVALID","comment":"The specified takeout ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.search","type":"messages.Messages","id":703497338,"comment":"Search for messages.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"User or chat, histories with which are searched, or {@link RawInputPeerEmpty} constructor to search in all private chats and normal groups (not channels) ». Use {@link messages.RawSearchGlobalRequest} to search globally in all chats, groups, supergroups and channels."},{"name":"q","type":"string","comment":"Text search request"},{"name":"from_id","type":"InputPeer","typeModifiers":{"predicate":"flags.0"},"comment":"Only return messages sent by the specified user ID"},{"name":"saved_peer_id","type":"InputPeer","typeModifiers":{"predicate":"flags.2"},"comment":"Search within the saved message dialog » with this ID."},{"name":"saved_reaction","type":"Reaction","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"You may search for saved messages tagged » with one or more reactions using this flag."},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Thread ID"},{"name":"filter","type":"MessagesFilter","comment":"Filter to return only specified message types"},{"name":"min_date","type":"int","comment":"If a positive value was transferred, only messages with a sending date bigger than the transferred one will be returned"},{"name":"max_date","type":"int","comment":"If a positive value was transferred, only messages with a sending date smaller than the transferred one will be returned"},{"name":"offset_id","type":"int","comment":"Only return messages starting from the specified message ID"},{"name":"add_offset","type":"int","comment":"Additional offset"},{"name":"limit","type":"int","comment":"Number of results to return"},{"name":"max_id","type":"int","comment":"Maximum message ID to return"},{"name":"min_id","type":"int","comment":"Minimum message ID to return"},{"name":"hash","type":"long","comment":"Hash"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"FROM_PEER_INVALID","comment":"The specified from_id is invalid."},{"code":400,"name":"INPUT_FILTER_INVALID","comment":"The specified filter is invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PEER_ID_NOT_SUPPORTED","comment":"The provided peer ID is not supported."},{"code":400,"name":"SEARCH_QUERY_EMPTY","comment":"The search query is empty."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.readHistory","type":"messages.AffectedMessages","typeModifiers":{"constructorId":2228326789},"id":238054714,"comment":"Marks message history as read.","arguments":[{"name":"peer","type":"InputPeer","comment":"Target user or group"},{"name":"max_id","type":"int","comment":"If a positive value is passed, only messages with identifiers less or equal than the given one will be read"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteHistory","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":2962199082,"comment":"Deletes communication history.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"just_clear","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Just clear history for the current user, without actually removing messages for every chat user"},{"name":"revoke","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to delete the message history for all chat participants"},{"name":"peer","type":"InputPeer","comment":"User or chat, communication history of which will be deleted"},{"name":"max_id","type":"int","comment":"Maximum ID of message to delete"},{"name":"min_date","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Delete all messages newer than this UNIX timestamp"},{"name":"max_date","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Delete all messages older than this UNIX timestamp"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_REVOKE_DATE_UNSUPPORTED","comment":"min_date and max_date are not available for using with non-user peers."},{"code":400,"name":"MAX_DATE_INVALID","comment":"The specified maximum date is invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MIN_DATE_INVALID","comment":"The specified minimum date is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteMessages","type":"messages.AffectedMessages","typeModifiers":{"constructorId":2228326789},"id":3851326930,"comment":"Deletes messages by their identifiers.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoke","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to delete messages for all participants of the chat"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Message ID list"}],"throws":[{"code":403,"name":"MESSAGE_DELETE_FORBIDDEN","comment":"You can't delete one of the messages you tried to delete, most likely because it is a service message."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."}],"available":"both"},{"kind":"method","name":"messages.receivedMessages","type":"ReceivedNotifyMessage","typeModifiers":{"isVector":true,"constructorId":2743383929},"id":94983360,"comment":"Confirms receipt of messages by a client, cancels PUSH-notification sending.","arguments":[{"name":"max_id","type":"int","comment":"Maximum message ID available in a client."}],"available":"user"},{"kind":"method","name":"messages.setTyping","type":"Bool","id":1486110434,"comment":"Sends a current user typing event (see SendMessageAction for all event types) to a conversation partner or group.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Target user or group"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Topic ID"},{"name":"action","type":"SendMessageAction","comment":"Type of action"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."}],"available":"both"},{"kind":"method","name":"messages.sendMessage","type":"Updates","id":2554304325,"comment":"Sends a message to a chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag to disable generation of the webpage preview"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Send this message silently (no notifications for the receivers)"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Send this message as background message"},{"name":"clear_draft","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Clear the draft field"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled"},{"name":"update_stickersets_order","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Whether to move used stickersets to top, see here for more info on this flag »"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"allow_paid_floodskip","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"Bots only: if set, allows sending up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance."},{"name":"peer","type":"InputPeer","comment":"The destination where the message will be sent"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story.
Also used to quote other messages."},{"name":"message","type":"string","comment":"The message"},{"name":"random_id","type":"long","comment":"Unique client message ID required to prevent message resending"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for sending bot buttons"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for sending styled text"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Scheduled message date for scheduled messages"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Send this message as the specified peer"},{"name":"quick_reply_shortcut","type":"InputQuickReplyShortcut","typeModifiers":{"predicate":"flags.17"},"comment":"Add the message to the specified quick reply shortcut », instead."},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags.18"},"comment":"Specifies a message effect » to use for the message."}],"throws":[{"code":400,"name":"ADMIN_RIGHTS_EMPTY","comment":"The chatAdminRights constructor passed in keyboardButtonRequestPeer.peer_type.user_admin_rights has no rights set (i.e. flags is 0)."},{"code":400,"name":"BOT_DOMAIN_INVALID","comment":"Bot domain invalid."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BUSINESS_PEER_INVALID","comment":"Messages can't be set to the specified peer through the current business connection."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"BUTTON_USER_INVALID","comment":"The user_id passed to inputKeyboardButtonUserProfile is invalid!"},{"code":400,"name":"BUTTON_USER_PRIVACY_RESTRICTED","comment":"The privacy setting of the user specified in a {@link RawInputKeyboardButtonUserProfile} button do not allow creating such a button."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":400,"name":"ENTITIES_TOO_LONG","comment":"You provided too many styled message entities."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"ENTITY_MENTION_USER_INVALID","comment":"You mentioned an invalid user."},{"code":400,"name":"FROM_MESSAGE_BOT_DISABLED","comment":"Bots can't use fromMessage min constructors."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":406,"name":"PAYMENT_UNSUPPORTED","comment":"A detailed description of the error will be received separately as described here »."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PINNED_DIALOGS_TOO_MUCH","comment":"Too many pinned dialogs."},{"code":400,"name":"POLL_OPTION_INVALID","comment":"Invalid poll option provided."},{"code":406,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":400,"name":"QUOTE_TEXT_INVALID","comment":"The specified reply_to.quote_text field is invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"REPLY_MARKUP_TOO_LONG","comment":"The specified reply_markup is too long."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"REPLY_MESSAGE_ID_INVALID","comment":"The specified reply-to message ID is invalid."},{"code":400,"name":"REPLY_TO_INVALID","comment":"The specified reply_to field is invalid."},{"code":400,"name":"REPLY_TO_USER_INVALID","comment":"The replied-to user is invalid."},{"code":400,"name":"SCHEDULE_BOT_NOT_ALLOWED","comment":"Bots cannot schedule messages."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_STATUS_PRIVATE","comment":"Can't schedule until user is online, if the user's last seen timestamp is hidden by their privacy settings."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."},{"code":406,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":406,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."},{"code":400,"name":"WC_CONVERT_URL_INVALID","comment":"WC convert URL invalid."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"both"},{"kind":"method","name":"messages.sendMedia","type":"Updates","id":2018673486,"comment":"Send a media","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Send message silently (no notification should be triggered)"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Send message in background"},{"name":"clear_draft","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Clear the draft"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled"},{"name":"update_stickersets_order","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Whether to move used stickersets to top, see here for more info on this flag »"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"allow_paid_floodskip","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"Bots only: if set, allows sending up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance."},{"name":"peer","type":"InputPeer","comment":"Destination"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story."},{"name":"media","type":"InputMedia","comment":"Attached media"},{"name":"message","type":"string","comment":"Caption"},{"name":"random_id","type":"long","comment":"Random ID to avoid resending the same message"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for bot keyboards"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Scheduled message date for scheduled messages"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Send this message as the specified peer"},{"name":"quick_reply_shortcut","type":"InputQuickReplyShortcut","typeModifiers":{"predicate":"flags.17"},"comment":"Add the message to the specified quick reply shortcut », instead."},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags.18"},"comment":"Specifies a message effect » to use for the message."}],"throws":[{"code":400,"name":"BOT_GAMES_DISABLED","comment":"Games can't be sent to channels."},{"code":400,"name":"BOT_PAYMENTS_DISABLED","comment":"Please enable bot payments in botfather before calling this method."},{"code":400,"name":"BROADCAST_PUBLIC_VOTERS_FORBIDDEN","comment":"You can't forward polls with public voters."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_POS_INVALID","comment":"The position of one of the keyboard buttons is invalid (i.e. a Game or Pay button not in the first position, and so on...)."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_AUDIOS_FORBIDDEN","comment":"You can't send audio messages in this chat."},{"code":403,"name":"CHAT_SEND_DOCS_FORBIDDEN","comment":"You can't send documents in this chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_SEND_POLL_FORBIDDEN","comment":"You can't send polls in this chat."},{"code":403,"name":"CHAT_SEND_ROUNDVIDEOS_FORBIDDEN","comment":"You can't send round videos to this chat."},{"code":403,"name":"CHAT_SEND_STICKERS_FORBIDDEN","comment":"You can't send stickers in this chat."},{"code":403,"name":"CHAT_SEND_VIDEOS_FORBIDDEN","comment":"You can't send videos in this chat."},{"code":403,"name":"CHAT_SEND_VOICES_FORBIDDEN","comment":"You can't send voice recordings in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"CURRENCY_TOTAL_AMOUNT_INVALID","comment":"The total amount of all prices is invalid."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"EMOTICON_INVALID","comment":"The specified emoji is invalid."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"EXTERNAL_URL_INVALID","comment":"External URL invalid."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_PART_LENGTH_INVALID","comment":"The length of a file part is invalid."},{"code":400,"name":"FILE_REFERENCE_EMPTY","comment":"An empty file reference was specified."},{"code":400,"name":"FILE_REFERENCE_EXPIRED","comment":"File reference expired, it must be refetched as described in the documentation."},{"code":400,"name":"GAME_BOT_INVALID","comment":"Bots can't send another bot's game."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"INPUT_FILE_INVALID","comment":"The specified InputFile is invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MD5_CHECKSUM_INVALID","comment":"The MD5 checksums do not match."},{"code":400,"name":"MEDIA_CAPTION_TOO_LONG","comment":"The caption is too long."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PAYMENT_PROVIDER_INVALID","comment":"The specified payment provider is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID_DIMENSIONS","comment":"The photo dimensions are invalid."},{"code":400,"name":"PHOTO_SAVE_FILE_INVALID","comment":"Internal issues, try again later."},{"code":400,"name":"POLL_ANSWERS_INVALID","comment":"Invalid poll answers were provided."},{"code":400,"name":"POLL_ANSWER_INVALID","comment":"One of the poll answers is not acceptable."},{"code":400,"name":"POLL_OPTION_DUPLICATE","comment":"Duplicate poll options provided."},{"code":400,"name":"POLL_OPTION_INVALID","comment":"Invalid poll option provided."},{"code":400,"name":"POLL_QUESTION_INVALID","comment":"One of the poll questions is not acceptable."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":403,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":400,"name":"QUIZ_CORRECT_ANSWERS_EMPTY","comment":"No correct quiz answer was specified."},{"code":400,"name":"QUIZ_CORRECT_ANSWERS_TOO_MUCH","comment":"You specified too many correct answers in a quiz, quizzes can only have one right answer!"},{"code":400,"name":"QUIZ_CORRECT_ANSWER_INVALID","comment":"An invalid value was provided to the correct_answers field."},{"code":400,"name":"QUIZ_MULTIPLE_INVALID","comment":"Quizzes can't have the multiple_choice flag set!"},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"REPLY_MARKUP_BUY_EMPTY","comment":"Reply markup for buy button empty."},{"code":400,"name":"REPLY_MARKUP_GAME_EMPTY","comment":"A game message is being edited, but the newly provided keyboard doesn't have a keyboardButtonGame button."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"REPLY_MARKUP_TOO_LONG","comment":"The specified reply_markup is too long."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"SCHEDULE_BOT_NOT_ALLOWED","comment":"Bots cannot schedule messages."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."},{"code":406,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":406,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"TTL_MEDIA_INVALID","comment":"Invalid media Time To Live was provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."},{"code":400,"name":"VIDEO_CONTENT_TYPE_INVALID","comment":"The video's content type is invalid."},{"code":400,"name":"VOICE_MESSAGES_FORBIDDEN","comment":"This user's privacy settings forbid you from sending voice messages."},{"code":400,"name":"WEBDOCUMENT_MIME_INVALID","comment":"Invalid webdocument mime type provided."},{"code":400,"name":"WEBPAGE_CURL_FAILED","comment":"Failure while fetching the webpage with cURL."},{"code":400,"name":"WEBPAGE_MEDIA_EMPTY","comment":"Webpage media empty."},{"code":400,"name":"WEBPAGE_NOT_FOUND","comment":"A preview for the specified webpage url could not be generated."},{"code":400,"name":"WEBPAGE_URL_INVALID","comment":"The specified webpage url is invalid."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"both"},{"kind":"method","name":"messages.forwardMessages","type":"Updates","id":3573781000,"comment":"Forwards messages by their IDs.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to send messages silently (no notification will be triggered on the destination clients)"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether to send the message in background"},{"name":"with_my_score","type":"true","typeModifiers":{"predicate":"flags.8"},"comment":"When forwarding games, whether to include your score in the game"},{"name":"drop_author","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether to forward messages without quoting the original author"},{"name":"drop_media_captions","type":"true","typeModifiers":{"predicate":"flags.12"},"comment":"Whether to strip captions from media"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Only for bots, disallows further re-forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled"},{"name":"allow_paid_floodskip","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"Bots only: if set, allows sending up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance."},{"name":"from_peer","type":"InputPeer","comment":"Source of messages"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages"},{"name":"random_id","type":"long","typeModifiers":{"isVector":true},"comment":"Random ID to prevent resending of messages"},{"name":"to_peer","type":"InputPeer","comment":"Destination peer"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.9"},"comment":"Destination forum topic"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Scheduled message date for scheduled messages"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Forward the messages as the specified peer"},{"name":"quick_reply_shortcut","type":"InputQuickReplyShortcut","typeModifiers":{"predicate":"flags.17"},"comment":"Add the messages to the specified quick reply shortcut », instead."}],"throws":[{"code":400,"name":"BROADCAST_PUBLIC_VOTERS_FORBIDDEN","comment":"You can't forward polls with public voters."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":406,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_AUDIOS_FORBIDDEN","comment":"You can't send audio messages in this chat."},{"code":403,"name":"CHAT_SEND_DOCS_FORBIDDEN","comment":"You can't send documents in this chat."},{"code":403,"name":"CHAT_SEND_GAME_FORBIDDEN","comment":"You can't send a game to this chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_SEND_POLL_FORBIDDEN","comment":"You can't send polls in this chat."},{"code":403,"name":"CHAT_SEND_STICKERS_FORBIDDEN","comment":"You can't send stickers in this chat."},{"code":403,"name":"CHAT_SEND_VIDEOS_FORBIDDEN","comment":"You can't send videos in this chat."},{"code":403,"name":"CHAT_SEND_VOICES_FORBIDDEN","comment":"You can't send voice recordings in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"GROUPED_MEDIA_INVALID","comment":"Invalid grouped media."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MESSAGE_IDS_EMPTY","comment":"No message ids were provided."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":406,"name":"PAYMENT_UNSUPPORTED","comment":"A detailed description of the error will be received separately as described here »."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":406,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":400,"name":"QUIZ_ANSWER_MISSING","comment":"You can forward a quiz while hiding the original author only after choosing an option in the quiz."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"RANDOM_ID_INVALID","comment":"A provided random ID is invalid."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"SCHEDULE_BOT_NOT_ALLOWED","comment":"Bots cannot schedule messages."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":400,"name":"SLOWMODE_MULTI_MSGS_DISABLED","comment":"Slowmode is enabled, you cannot forward multiple messages to this group."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":406,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":406,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."},{"code":403,"name":"VOICE_MESSAGES_FORBIDDEN","comment":"This user's privacy settings forbid you from sending voice messages."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"both"},{"kind":"method","name":"messages.reportSpam","type":"Bool","id":3474297563,"comment":"Report a new incoming chat for spam, if the {@link RawPeerSettings} of the chat allow us to do that","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer to report"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getPeerSettings","type":"messages.PeerSettings","typeModifiers":{"constructorId":1753266509},"id":4024018594,"comment":"Get peer settings","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.report","id":4235767707,"type":"ReportResult","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages to report"},{"name":"option","type":"bytes","comment":"Menu option, intially empty"},{"name":"message","type":"string","comment":"Comment for report moderation"}],"comment":"Report a message in a chat for violation of telegram's Terms of Service","throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getChats","type":"messages.Chats","id":1240027791,"comment":"Returns chat basic info on their IDs.","arguments":[{"name":"id","type":"int53","typeModifiers":{"isVector":true},"comment":"List of chat IDs"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"messages.getFullChat","type":"messages.ChatFull","typeModifiers":{"constructorId":3856126364},"id":2930772788,"comment":"Get full info about a basic group.","arguments":[{"name":"chat_id","type":"int53","comment":"Basic group ID."}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"messages.editChatTitle","type":"Updates","id":1937260541,"comment":"Changes chat name and sends a service message on it.","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"title","type":"string","comment":"New chat name, different from the old one"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"messages.editChatPhoto","type":"Updates","id":903730804,"comment":"Changes chat photo and sends a service message on it","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"photo","type":"InputChatPhoto","comment":"Photo to be set"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."}],"available":"both"},{"kind":"method","name":"messages.addChatUser","type":"messages.InvitedUsers","typeModifiers":{"constructorId":2136862630},"id":3418804487,"comment":"Adds a user to a chat and sends a service message on it.","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"user_id","type":"InputUser","comment":"User ID to be added"},{"name":"fwd_limit","type":"int","comment":"Number of last messages to be forwarded"}],"throws":[{"code":400,"name":"BOT_GROUPS_BLOCKED","comment":"This bot can't be added to groups."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":403,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},{"kind":"method","name":"messages.deleteChatUser","type":"Updates","id":2719505579,"comment":"Deletes a user from a chat and sends a service message on it.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoke_history","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Remove the entire chat history of the specified user in this chat."},{"name":"chat_id","type":"int53","comment":"Chat ID"},{"name":"user_id","type":"InputUser","comment":"User ID to be deleted"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},{"kind":"method","name":"messages.createChat","type":"messages.InvitedUsers","typeModifiers":{"constructorId":2136862630},"id":2463030740,"comment":"Creates a new chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"List of user IDs to be invited"},{"name":"title","type":"string","comment":"Chat name"},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Time-to-live of all messages that will be sent in the chat: once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well. You can use {@link messages.RawSetDefaultHistoryTTLRequest} to edit this value later."}],"throws":[{"code":500,"name":"CHAT_ID_GENERATE_FAILED","comment":"Failure while generating the chat ID."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."},{"code":400,"name":"USERS_TOO_FEW","comment":"Not enough users (to create a chat, for example)."},{"code":406,"name":"USER_RESTRICTED","comment":"You're spamreported, you can't create channels or chats."}],"available":"user"},{"kind":"method","name":"messages.getDhConfig","type":"messages.DhConfig","id":651135312,"comment":"Returns configuration parameters for Diffie-Hellman key generation. Can also return a random sequence of bytes of required length.","arguments":[{"name":"version","type":"int","comment":"Value of the version parameter from {@link messages.RawDhConfig}, available at the client"},{"name":"random_length","type":"int","comment":"Length of the required random sequence"}],"throws":[{"code":400,"name":"RANDOM_LENGTH_INVALID","comment":"Random length invalid."}],"available":"user"},{"kind":"method","name":"messages.requestEncryption","type":"EncryptedChat","id":4132286275,"comment":"Sends a request to start a secret chat to the user.","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID"},{"name":"random_id","type":"int","comment":"Unique client request ID required to prevent resending. This also doubles as the chat ID."},{"name":"g_a","type":"bytes","comment":"A = g ^ a mod p, see Wikipedia"}],"throws":[{"code":400,"name":"DH_G_A_INVALID","comment":"g_a invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.acceptEncryption","type":"EncryptedChat","id":1035731989,"comment":"Confirms creation of a secret chat","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"g_b","type":"bytes","comment":"B = g ^ b mod p, see Wikipedia"},{"name":"key_fingerprint","type":"long","comment":"64-bit fingerprint of the received key"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"ENCRYPTION_ALREADY_ACCEPTED","comment":"Secret chat already accepted."},{"code":400,"name":"ENCRYPTION_ALREADY_DECLINED","comment":"The secret chat was already declined."}],"available":"user"},{"kind":"method","name":"messages.discardEncryption","type":"Bool","id":4086541984,"comment":"Cancels a request for creation and/or delete info on secret chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"delete_history","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to delete the entire chat history for the other user as well"},{"name":"chat_id","type":"int","comment":"Secret chat ID"}],"throws":[{"code":400,"name":"CHAT_ID_EMPTY","comment":"The provided chat ID is empty."},{"code":400,"name":"ENCRYPTION_ALREADY_ACCEPTED","comment":"Secret chat already accepted."},{"code":400,"name":"ENCRYPTION_ALREADY_DECLINED","comment":"The secret chat was already declined."},{"code":400,"name":"ENCRYPTION_ID_INVALID","comment":"The provided secret chat ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.setEncryptedTyping","type":"Bool","id":2031374829,"comment":"Send typing event by the current user to a secret chat.","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"typing","type":"Bool","comment":"Typing.
Possible values:
true, if the user started typing and more than 5 seconds have passed since the last request
false, if the user stopped typing"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."}],"available":"user"},{"kind":"method","name":"messages.readEncryptedHistory","type":"Bool","id":2135648522,"comment":"Marks message history within a secret chat as read.","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"max_date","type":"int","comment":"Maximum date value for received messages in history"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MAX_DATE_INVALID","comment":"The specified maximum date is invalid."},{"code":400,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."}],"available":"user"},{"kind":"method","name":"messages.sendEncrypted","type":"messages.SentEncryptedMessage","id":1157265941,"comment":"Sends a text message to a secret chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Send encrypted message without a notification"},{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"random_id","type":"long","comment":"Unique client message ID, necessary to avoid message resending"},{"name":"data","type":"bytes","comment":"TL-serialization of DecryptedMessage type, encrypted with a key that was created during chat initialization"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"DATA_TOO_LONG","comment":"Data too long."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."}],"available":"user"},{"kind":"method","name":"messages.sendEncryptedFile","type":"messages.SentEncryptedMessage","id":1431914525,"comment":"Sends a message with a file attachment to a secret chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to send the file without triggering a notification"},{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"random_id","type":"long","comment":"Unique client message ID necessary to prevent message resending"},{"name":"data","type":"bytes","comment":"TL-serialization of DecryptedMessage type, encrypted with a key generated during chat initialization"},{"name":"file","type":"InputEncryptedFile","comment":"File attachment for the secret chat"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"DATA_TOO_LONG","comment":"Data too long."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":400,"name":"FILE_EMTPY","comment":"An empty file was provided."},{"code":400,"name":"MD5_CHECKSUM_INVALID","comment":"The MD5 checksums do not match."},{"code":400,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."}],"available":"user"},{"kind":"method","name":"messages.sendEncryptedService","type":"messages.SentEncryptedMessage","id":852769188,"comment":"Sends a service message to a secret chat.","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"Secret chat ID"},{"name":"random_id","type":"long","comment":"Unique client message ID required to prevent message resending"},{"name":"data","type":"bytes","comment":"TL-serialization of DecryptedMessage type, encrypted with a key generated during chat initialization"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":400,"name":"ENCRYPTION_ID_INVALID","comment":"The provided secret chat ID is invalid."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":403,"name":"USER_DELETED","comment":"You can't send this secret message because the other participant deleted their account."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."}],"available":"user"},{"kind":"method","name":"messages.receivedQueue","type":"long","typeModifiers":{"isVector":true},"id":1436924774,"comment":"Confirms receipt of messages in a secret chat by client, cancels push notifications.
\nThe method returns a list of random_ids of messages for which push notifications were cancelled.","arguments":[{"name":"max_qts","type":"int","comment":"Maximum qts value available at the client"}],"throws":[{"code":400,"name":"MAX_QTS_INVALID","comment":"The specified max_qts is invalid."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."}],"available":"user"},{"kind":"method","name":"messages.reportEncryptedSpam","type":"Bool","id":1259113487,"comment":"Report a secret chat for spam","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"The secret chat to report"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."}],"available":"user"},{"kind":"method","name":"messages.readMessageContents","type":"messages.AffectedMessages","typeModifiers":{"constructorId":2228326789},"id":916930423,"comment":"Notifies the sender about the recipient having listened a voice message or watched a video.","arguments":[{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Message ID list"}],"available":"user"},{"kind":"method","name":"messages.getStickers","type":"messages.Stickers","id":3584414625,"comment":"Get stickers by emoji","arguments":[{"name":"emoticon","type":"string","comment":"The emoji"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"throws":[{"code":400,"name":"EMOTICON_EMPTY","comment":"The emoji is empty."}],"available":"user"},{"kind":"method","name":"messages.getAllStickers","type":"messages.AllStickers","id":3097534888,"comment":"Get all installed stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getWebPagePreview","type":"MessageMedia","id":2338894028,"comment":"Get preview of webpage","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"message","type":"string","comment":"Message from which to extract the preview"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text"}],"throws":[{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."}],"available":"user"},{"kind":"method","name":"messages.exportChatInvite","id":2757090960,"type":"ExportedChatInvite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"legacy_revoke_permanent","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Legacy flag, reproducing legacy behavior of this method: if set, revokes all previous links before creating a new one. Kept for bot API BC, should not be used by modern clients."},{"name":"request_needed","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether admin confirmation is required before admitting each separate user into the chat"},{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"expire_date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Expiration date"},{"name":"usage_limit","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Maximum number of users that can join using this link"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Description of the invite link, visible only to administrators"},{"name":"subscription_pricing","type":"StarsSubscriptionPricing","typeModifiers":{"predicate":"flags.5"},"comment":"For Telegram Star subscriptions », contains the pricing of the subscription the user must activate to join the private channel."}],"comment":"Export an invite link for a chat","throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"EXPIRE_DATE_INVALID","comment":"The specified expiration date is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USAGE_LIMIT_INVALID","comment":"The specified usage limit is invalid."}],"available":"both"},{"kind":"method","name":"messages.checkChatInvite","type":"ChatInvite","id":1051570619,"comment":"Check the validity of a chat invite link and get basic info about it","arguments":[{"name":"hash","type":"string","comment":"Invite hash from chat invite deep link »."}],"throws":[{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"INVITE_HASH_EMPTY","comment":"The invite hash is empty."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_HASH_INVALID","comment":"The invite hash is invalid."}],"available":"user"},{"kind":"method","name":"messages.importChatInvite","type":"Updates","id":1817183516,"comment":"Import a chat invite and join a private chat/supergroup/channel","arguments":[{"name":"hash","type":"string","comment":"hash from a chat invite deep link"}],"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"INVITE_HASH_EMPTY","comment":"The invite hash is empty."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_HASH_INVALID","comment":"The invite hash is invalid."},{"code":400,"name":"INVITE_REQUEST_SENT","comment":"You have successfully requested to join this chat or channel."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":400,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."}],"available":"user"},{"kind":"method","name":"messages.getStickerSet","type":"messages.StickerSet","id":3365989492,"comment":"Get info about a stickerset","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":400,"name":"EMOTICON_STICKERPACK_MISSING","comment":"inputStickerSetDice.emoji cannot be empty."},{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"both"},{"kind":"method","name":"messages.installStickerSet","type":"messages.StickerSetInstallResult","id":3348096096,"comment":"Install a stickerset","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset to install"},{"name":"archived","type":"Bool","comment":"Whether to archive stickerset"}],"throws":[{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"user"},{"kind":"method","name":"messages.uninstallStickerSet","type":"Bool","id":4184757726,"comment":"Uninstall a stickerset","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"The stickerset to uninstall"}],"throws":[{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"user"},{"kind":"method","name":"messages.startBot","type":"Updates","id":3873403768,"comment":"Start a conversation with a bot using a deep linking parameter","arguments":[{"name":"bot","type":"InputUser","comment":"The bot"},{"name":"peer","type":"InputPeer","comment":"The chat where to start the bot, can be the bot's private chat or a group"},{"name":"random_id","type":"long","comment":"Random ID to avoid resending the same message"},{"name":"start_param","type":"string","comment":"Deep linking parameter"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"START_PARAM_EMPTY","comment":"The start parameter is empty."},{"code":400,"name":"START_PARAM_INVALID","comment":"Start parameter invalid."},{"code":400,"name":"START_PARAM_TOO_LONG","comment":"Start parameter is too long."}],"available":"user"},{"kind":"method","name":"messages.getMessagesViews","type":"messages.MessageViews","typeModifiers":{"constructorId":3066361155},"id":1468322785,"comment":"Get and increase the view counter of a message sent or forwarded from a channel","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the message was found"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"ID of message"},{"name":"increment","type":"Bool","comment":"Whether to mark the message as viewed and increment the view counter"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.editChatAdmin","type":"Bool","id":2824589762,"comment":"Make a user admin in a basic group.","arguments":[{"name":"chat_id","type":"int53","comment":"The ID of the group"},{"name":"user_id","type":"InputUser","comment":"The user to make admin"},{"name":"is_admin","type":"Bool","comment":"Whether to make them admin"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"user"},{"kind":"method","name":"messages.migrateChat","type":"Updates","id":2726777625,"comment":"Turn a basic group into a supergroup","arguments":[{"name":"chat_id","type":"int53","comment":"Basic group to migrate"}],"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":500,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.searchGlobal","type":"messages.Messages","id":1271290010,"comment":"Search for messages and peers globally","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"broadcasts_only","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, only returns results from channels (used in the global channel search tab »)."},{"name":"folder_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Peer folder ID, for more info click here"},{"name":"q","type":"string","comment":"Query"},{"name":"filter","type":"MessagesFilter","comment":"Global search filter"},{"name":"min_date","type":"int","comment":"If a positive value was specified, the method will return only messages with date bigger than min_date"},{"name":"max_date","type":"int","comment":"If a positive value was transferred, the method will return only messages with date smaller than max_date"},{"name":"offset_rate","type":"int","comment":"Initially 0, then set to the {@link messages.RawMessagesSlice}"},{"name":"offset_peer","type":"InputPeer","comment":"Offsets for pagination, for more info click here"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Offsets for pagination, for more info click here"}],"throws":[{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."},{"code":400,"name":"INPUT_FILTER_INVALID","comment":"The specified filter is invalid."},{"code":400,"name":"SEARCH_QUERY_EMPTY","comment":"The search query is empty."}],"available":"user"},{"kind":"method","name":"messages.reorderStickerSets","type":"Bool","id":2016638777,"comment":"Reorder installed stickersets","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Reorder mask stickersets"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Reorder custom emoji stickersets"},{"name":"order","type":"long","typeModifiers":{"isVector":true},"comment":"New stickerset order by stickerset IDs"}],"available":"user"},{"kind":"method","name":"messages.getDocumentByHash","type":"Document","id":2985428511,"comment":"Get a document by its SHA256 hash, mainly used for gifs","arguments":[{"name":"sha256","type":"bytes","comment":"SHA256 of file"},{"name":"size","type":"int53","comment":"Size of the file in bytes"},{"name":"mime_type","type":"string","comment":"Mime type"}],"throws":[{"code":400,"name":"SHA256_HASH_INVALID","comment":"The provided SHA256 hash is invalid."}],"available":"both"},{"kind":"method","name":"messages.getSavedGifs","type":"messages.SavedGifs","id":1559270965,"comment":"Get saved GIFs.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.saveGif","type":"Bool","id":846868683,"comment":"Add GIF to saved gifs list","arguments":[{"name":"id","type":"InputDocument","comment":"GIF to save"},{"name":"unsave","type":"Bool","comment":"Whether to remove GIF from saved gifs list"}],"throws":[{"code":400,"name":"GIF_ID_INVALID","comment":"The provided GIF ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getInlineBotResults","type":"messages.BotResults","typeModifiers":{"constructorId":3760321270},"id":1364105629,"comment":"Query an inline bot","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bot","type":"InputUser","comment":"The bot to query"},{"name":"peer","type":"InputPeer","comment":"The currently opened chat"},{"name":"geo_point","type":"InputGeoPoint","typeModifiers":{"predicate":"flags.0"},"comment":"The geolocation, if requested"},{"name":"query","type":"string","comment":"The query"},{"name":"offset","type":"string","comment":"The offset within the results, will be passed directly as-is to the bot."}],"throws":[{"code":400,"name":"BOT_INLINE_DISABLED","comment":"This bot can't be used in inline mode."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BOT_RESPONSE_TIMEOUT","comment":"A timeout occurred while fetching data from the bot."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":-503,"name":"Timeout","comment":"Timeout while fetching data."}],"available":"user"},{"kind":"method","name":"messages.setInlineBotResults","type":"Bool","id":3138561049,"comment":"Answer an inline query, for bots only","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"gallery","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag if the results are composed of media files"},{"name":"private","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if results may be cached on the server side only for the user that sent the query. By default, results may be returned to any user who sends the same query"},{"name":"query_id","type":"long","comment":"Unique identifier for the answered query"},{"name":"results","type":"InputBotInlineResult","typeModifiers":{"isVector":true},"comment":"Vector of results for the inline query"},{"name":"cache_time","type":"int","comment":"The maximum amount of time in seconds that the result of the inline query may be cached on the server. Defaults to 300."},{"name":"next_offset","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Pass the offset that a client should send in the next query with the same text to receive more results. Pass an empty string if there are no more results or if you don't support pagination. Offset length can't exceed 64 bytes."},{"name":"switch_pm","type":"InlineBotSwitchPM","typeModifiers":{"predicate":"flags.3"},"comment":"If passed, clients will display a button on top of the remaining inline result list with the specified text, that switches the user to a private chat with the bot and sends the bot a start message with a certain parameter."},{"name":"switch_webview","type":"InlineBotWebView","typeModifiers":{"predicate":"flags.4"},"comment":"If passed, clients will display a button on top of the remaining inline result list with the specified text, that switches the user to the specified inline mode mini app."}],"throws":[{"code":400,"name":"ARTICLE_TITLE_EMPTY","comment":"The title of the article is empty."},{"code":400,"name":"AUDIO_CONTENT_URL_EMPTY","comment":"The remote URL specified in the content field is empty."},{"code":400,"name":"AUDIO_TITLE_EMPTY","comment":"An empty audio title was provided."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"FILE_CONTENT_TYPE_INVALID","comment":"File content-type is invalid."},{"code":400,"name":"FILE_TITLE_EMPTY","comment":"An empty file title was specified."},{"code":400,"name":"GIF_CONTENT_TYPE_INVALID","comment":"GIF content-type invalid."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"NEXT_OFFSET_INVALID","comment":"The specified offset is longer than 64 bytes."},{"code":400,"name":"PHOTO_CONTENT_TYPE_INVALID","comment":"Photo mime-type invalid."},{"code":400,"name":"PHOTO_CONTENT_URL_EMPTY","comment":"Photo URL invalid."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."},{"code":400,"name":"PHOTO_THUMB_URL_EMPTY","comment":"Photo thumbnail URL is empty."},{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"RESULTS_TOO_MUCH","comment":"Too many results were provided."},{"code":400,"name":"RESULT_ID_DUPLICATE","comment":"You provided a duplicate result ID."},{"code":400,"name":"RESULT_ID_INVALID","comment":"One of the specified result IDs is invalid."},{"code":400,"name":"RESULT_TYPE_INVALID","comment":"Result type invalid."},{"code":400,"name":"SEND_MESSAGE_MEDIA_INVALID","comment":"Invalid media provided."},{"code":400,"name":"SEND_MESSAGE_TYPE_INVALID","comment":"The message type is invalid."},{"code":400,"name":"START_PARAM_EMPTY","comment":"The start parameter is empty."},{"code":400,"name":"START_PARAM_INVALID","comment":"Start parameter invalid."},{"code":400,"name":"STICKER_DOCUMENT_INVALID","comment":"The specified sticker document is invalid."},{"code":400,"name":"SWITCH_PM_TEXT_EMPTY","comment":"The switch_pm.text field was empty."},{"code":400,"name":"SWITCH_WEBVIEW_URL_INVALID","comment":"The URL specified in switch_webview.url is invalid!"},{"code":400,"name":"URL_INVALID","comment":"Invalid URL provided."},{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"VIDEO_TITLE_EMPTY","comment":"The specified video title is empty."},{"code":400,"name":"WEBDOCUMENT_INVALID","comment":"Invalid webdocument URL provided."},{"code":400,"name":"WEBDOCUMENT_MIME_INVALID","comment":"Invalid webdocument mime type provided."},{"code":400,"name":"WEBDOCUMENT_SIZE_TOO_BIG","comment":"Webdocument is too big!"},{"code":400,"name":"WEBDOCUMENT_URL_INVALID","comment":"The specified webdocument URL is invalid."}],"available":"bot"},{"kind":"method","name":"messages.sendInlineBotResult","type":"Updates","id":1052698730,"comment":"Send a result obtained using {@link messages.RawGetInlineBotResultsRequest}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to send the message silently (no notification will be triggered on the other client)"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether to send the message in background"},{"name":"clear_draft","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether to clear the draft"},{"name":"hide_via","type":"true","typeModifiers":{"predicate":"flags.11"},"comment":"Whether to hide the via @botname in the resulting message (only for bot usernames encountered in the {@link RawConfig})"},{"name":"peer","type":"InputPeer","comment":"Destination"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story."},{"name":"random_id","type":"long","comment":"Random ID to avoid resending the same query"},{"name":"query_id","type":"long","comment":"Query ID from {@link messages.RawGetInlineBotResultsRequest}"},{"name":"id","type":"string","comment":"Result ID from {@link messages.RawGetInlineBotResultsRequest}"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Scheduled message date for scheduled messages"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Send this message as the specified peer"},{"name":"quick_reply_shortcut","type":"InputQuickReplyShortcut","typeModifiers":{"predicate":"flags.17"},"comment":"Add the message to the specified quick reply shortcut », instead."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_AUDIOS_FORBIDDEN","comment":"You can't send audio messages in this chat."},{"code":403,"name":"CHAT_SEND_GAME_FORBIDDEN","comment":"You can't send a game to this chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_SEND_INLINE_FORBIDDEN","comment":"You can't send inline messages in this group."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_SEND_STICKERS_FORBIDDEN","comment":"You can't send stickers in this chat."},{"code":403,"name":"CHAT_SEND_VOICES_FORBIDDEN","comment":"You can't send voice recordings in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"INLINE_RESULT_EXPIRED","comment":"The inline query expired."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"QUERY_ID_EMPTY","comment":"The query ID is empty."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"RESULT_ID_EMPTY","comment":"Result ID empty."},{"code":400,"name":"RESULT_ID_INVALID","comment":"One of the specified result IDs is invalid."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":500,"name":"SEND_MEDIA_INVALID","comment":"The specified media is invalid."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"VOICE_MESSAGES_FORBIDDEN","comment":"This user's privacy settings forbid you from sending voice messages."},{"code":400,"name":"WEBPAGE_CURL_FAILED","comment":"Failure while fetching the webpage with cURL."},{"code":400,"name":"WEBPAGE_MEDIA_EMPTY","comment":"Webpage media empty."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},{"kind":"method","name":"messages.getMessageEditData","type":"messages.MessageEditData","typeModifiers":{"constructorId":649453030},"id":4255550774,"comment":"Find out if a media message's caption can be edited","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the media was sent"},{"name":"id","type":"int","comment":"ID of message"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"MESSAGE_AUTHOR_REQUIRED","comment":"Message author required."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.editMessage","type":"Updates","id":3755032581,"comment":"Edit message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Disable webpage preview"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"peer","type":"InputPeer","comment":"Where was the message sent"},{"name":"id","type":"int","comment":"ID of the message to edit"},{"name":"message","type":"string","typeModifiers":{"predicate":"flags.11"},"comment":"New message"},{"name":"media","type":"InputMedia","typeModifiers":{"predicate":"flags.14"},"comment":"New attached media"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for inline keyboards"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.15"},"comment":"Scheduled message date for scheduled messages"},{"name":"quick_reply_shortcut_id","type":"int","typeModifiers":{"predicate":"flags.17"},"comment":"If specified, edits a quick reply shortcut message, instead »."}],"throws":[{"code":400,"name":"BOT_DOMAIN_INVALID","comment":"Bot domain invalid."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"ENTITIES_TOO_LONG","comment":"You provided too many styled message entities."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":403,"name":"INLINE_BOT_REQUIRED","comment":"Only the inline bot can edit message."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_CAPTION_TOO_LONG","comment":"The caption is too long."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_GROUPED_INVALID","comment":"You tried to send media of different types in an album."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MEDIA_NEW_INVALID","comment":"The new media is invalid."},{"code":400,"name":"MEDIA_PREV_INVALID","comment":"Previous media invalid."},{"code":400,"name":"MEDIA_TTL_INVALID","comment":"The specified media TTL is invalid."},{"code":403,"name":"MESSAGE_AUTHOR_REQUIRED","comment":"Message author required."},{"code":400,"name":"MESSAGE_EDIT_TIME_EXPIRED","comment":"You can't edit this message anymore, too much time has passed since its creation."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_MODIFIED","comment":"The provided message data is identical to the previous message data, the message wasn't modified."},{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"REPLY_MARKUP_TOO_LONG","comment":"The specified reply_markup is too long."},{"code":400,"name":"SCHEDULE_DATE_INVALID","comment":"Invalid schedule date provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"WEBPAGE_NOT_FOUND","comment":"A preview for the specified webpage url could not be generated."}],"available":"both"},{"kind":"method","name":"messages.editInlineBotMessage","type":"Bool","id":2203418042,"comment":"Edit an inline bot message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Disable webpage preview"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"id","type":"InputBotInlineMessageID","comment":"Sent inline message ID"},{"name":"message","type":"string","typeModifiers":{"predicate":"flags.11"},"comment":"Message"},{"name":"media","type":"InputMedia","typeModifiers":{"predicate":"flags.14"},"comment":"Media"},{"name":"reply_markup","type":"ReplyMarkup","typeModifiers":{"predicate":"flags.2"},"comment":"Reply markup for inline keyboards"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text"}],"throws":[{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_MODIFIED","comment":"The provided message data is identical to the previous message data, the message wasn't modified."}],"available":"both"},{"kind":"method","name":"messages.getBotCallbackAnswer","type":"messages.BotCallbackAnswer","typeModifiers":{"constructorId":911761060},"id":2470627847,"comment":"Press an inline callback button and get a callback answer from the bot","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"game","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether this is a \"play game\" button"},{"name":"peer","type":"InputPeer","comment":"Where was the inline keyboard sent"},{"name":"msg_id","type":"int","comment":"ID of the Message with the inline keyboard"},{"name":"data","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Callback data"},{"name":"password","type":"InputCheckPasswordSRP","typeModifiers":{"predicate":"flags.2"},"comment":"For buttons {@link RawKeyboardButtonCallback}, the SRP payload generated using SRP."}],"throws":[{"code":400,"name":"BOT_RESPONSE_TIMEOUT","comment":"A timeout occurred while fetching data from the bot."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":-503,"name":"Timeout","comment":"Timeout while fetching data."}],"available":"user"},{"kind":"method","name":"messages.setBotCallbackAnswer","type":"Bool","id":3582923530,"comment":"Set the callback answer to a user button press (bots only)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"alert","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to show the message as a popup instead of a toast notification"},{"name":"query_id","type":"long","comment":"Query ID"},{"name":"message","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Popup to show"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"URL to open"},{"name":"cache_time","type":"int","comment":"Cache validity"}],"throws":[{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"URL_INVALID","comment":"Invalid URL provided."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.getPeerDialogs","type":"messages.PeerDialogs","typeModifiers":{"constructorId":863093588},"id":3832593661,"comment":"Get dialog info of specified peers","arguments":[{"name":"peers","type":"InputDialogPeer","typeModifiers":{"isVector":true},"comment":"Peers"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.saveDraft","type":"Bool","id":3547514318,"comment":"Save a message draft associated to a chat.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"no_webpage","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Disable generation of the webpage preview"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.4"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story."},{"name":"peer","type":"InputPeer","comment":"Destination of the message that should be sent"},{"name":"message","type":"string","comment":"The draft"},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Message entities for styled text"},{"name":"media","type":"InputMedia","typeModifiers":{"predicate":"flags.5"},"comment":"Attached media"},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags.7"},"comment":"Specifies a message effect » to use for the message."}],"throws":[{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getAllDrafts","type":"Updates","id":1782549861,"comment":"Return all message drafts.
\nReturns all the latest {@link RawUpdateDraftMessage} updates related to all chats with drafts.","arguments":[],"available":"user"},{"kind":"method","name":"messages.getFeaturedStickers","type":"messages.FeaturedStickers","id":1685588756,"comment":"Get featured stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.readFeaturedStickers","type":"Bool","id":1527873830,"comment":"Mark new featured stickers as read","arguments":[{"name":"id","type":"long","typeModifiers":{"isVector":true},"comment":"IDs of stickersets to mark as read"}],"available":"user"},{"kind":"method","name":"messages.getRecentStickers","type":"messages.RecentStickers","id":2645114939,"comment":"Get recent stickers","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"attached","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Get stickers recently attached to photo or video files"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.saveRecentSticker","type":"Bool","id":958863608,"comment":"Add/remove sticker from recent stickers list","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"attached","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to add/remove stickers recently attached to photo or video files"},{"name":"id","type":"InputDocument","comment":"Sticker"},{"name":"unsave","type":"Bool","comment":"Whether to save or unsave the sticker"}],"throws":[{"code":400,"name":"STICKER_ID_INVALID","comment":"The provided sticker ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.clearRecentStickers","type":"Bool","id":2308530221,"comment":"Clear recent stickers","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"attached","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag to clear the list of stickers recently attached to photo or video files"}],"available":"user"},{"kind":"method","name":"messages.getArchivedStickers","type":"messages.ArchivedStickers","typeModifiers":{"constructorId":1338747336},"id":1475442322,"comment":"Get all archived stickers","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Get mask stickers"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Get custom emoji stickers"},{"name":"offset_id","type":"long","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"available":"user"},{"kind":"method","name":"messages.getMaskStickers","type":"messages.AllStickers","id":1678738104,"comment":"Get installed mask stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getAttachedStickers","type":"StickerSetCovered","typeModifiers":{"isVector":true},"id":3428542412,"comment":"Get stickers attached to a photo or video","arguments":[{"name":"media","type":"InputStickeredMedia","comment":"Stickered media"}],"throws":[{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."}],"available":"user"},{"kind":"method","name":"messages.setGameScore","type":"Updates","id":2398678208,"comment":"Use this method to set the score of the specified user in a game sent as a normal message (bots only).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"edit_message","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag if the game message should be automatically edited to include the current scoreboard"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters"},{"name":"peer","type":"InputPeer","comment":"Unique identifier of target chat"},{"name":"id","type":"int","comment":"Identifier of the sent message"},{"name":"user_id","type":"InputUser","comment":"User identifier"},{"name":"score","type":"int","comment":"New score"}],"throws":[{"code":400,"name":"BOT_SCORE_NOT_MODIFIED","comment":"The score wasn't modified."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SCORE_INVALID","comment":"The specified game score is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.setInlineGameScore","type":"Bool","id":363700068,"comment":"Use this method to set the score of the specified user in a game sent as an inline message (bots only).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"edit_message","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag if the game message should be automatically edited to include the current scoreboard"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters"},{"name":"id","type":"InputBotInlineMessageID","comment":"ID of the inline message"},{"name":"user_id","type":"InputUser","comment":"User identifier"},{"name":"score","type":"int","comment":"New score"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.getGameHighScores","type":"messages.HighScores","typeModifiers":{"constructorId":2587622809},"id":3894568093,"comment":"Get highscores of a game","arguments":[{"name":"peer","type":"InputPeer","comment":"Where was the game sent"},{"name":"id","type":"int","comment":"ID of message with game media attachment"},{"name":"user_id","type":"InputUser","comment":"Get high scores made by a certain user"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.getInlineGameHighScores","type":"messages.HighScores","typeModifiers":{"constructorId":2587622809},"id":258170395,"comment":"Get highscores of a game sent using an inline bot","arguments":[{"name":"id","type":"InputBotInlineMessageID","comment":"ID of inline message"},{"name":"user_id","type":"InputUser","comment":"Get high scores of a certain user"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.getCommonChats","type":"messages.Chats","id":3826032900,"comment":"Get chats in common with a user","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID"},{"name":"max_id","type":"int53","comment":"Maximum ID of chat to return (see pagination)"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getWebPage","type":"messages.WebPage","typeModifiers":{"constructorId":4250800829},"id":2375455395,"comment":"Get instant view page","arguments":[{"name":"url","type":"string","comment":"URL of IV page to fetch"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here.
Note: the usual hash generation algorithm cannot be used in this case, please re-use the {@link RawWebPage}.hash field returned by a previous call to the method, or pass 0 if this is the first call or if the previous call did not return a {@link RawWebPage}."}],"throws":[{"code":400,"name":"WC_CONVERT_URL_INVALID","comment":"WC convert URL invalid."}],"available":"user"},{"kind":"method","name":"messages.toggleDialogPin","type":"Bool","id":2805064279,"comment":"Pin/unpin a dialog","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to pin or unpin the dialog"},{"name":"peer","type":"InputDialogPeer","comment":"The dialog to pin"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_HISTORY_EMPTY","comment":"You can't pin an empty chat with a user."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PINNED_DIALOGS_TOO_MUCH","comment":"Too many pinned dialogs."}],"available":"user"},{"kind":"method","name":"messages.reorderPinnedDialogs","type":"Bool","id":991616823,"comment":"Reorder pinned dialogs","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, dialogs pinned server-side but not present in the order field will be unpinned."},{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"},{"name":"order","type":"InputDialogPeer","typeModifiers":{"isVector":true},"comment":"New dialog order"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getPinnedDialogs","type":"messages.PeerDialogs","typeModifiers":{"constructorId":863093588},"id":3602468338,"comment":"Get pinned dialogs","arguments":[{"name":"folder_id","type":"int","comment":"Peer folder ID, for more info click here"}],"throws":[{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."}],"available":"user"},{"kind":"method","name":"messages.setBotShippingResults","type":"Bool","id":3858133754,"comment":"If you sent an invoice requesting a shipping address and the parameter is_flexible was specified, the bot will receive an {@link RawUpdateBotShippingQuery} update. Use this method to reply to shipping queries.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"query_id","type":"long","comment":"Unique identifier for the query to be answered"},{"name":"error","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Error message in human readable form that explains why it is impossible to complete the order (e.g. \"Sorry, delivery to your desired address is unavailable\"). Telegram will display this message to the user."},{"name":"shipping_options","type":"ShippingOption","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"A vector of available shipping options."}],"throws":[{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.setBotPrecheckoutResults","type":"Bool","id":163765653,"comment":"Once the user has confirmed their payment and shipping details, the bot receives an {@link RawUpdateBotPrecheckoutQuery} update.
\nUse this method to respond to such pre-checkout queries.
\nNote: Telegram must receive an answer within 10 seconds after the pre-checkout query was sent.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"success","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Set this flag if everything is alright (goods are available, etc.) and the bot is ready to proceed with the order, otherwise do not set it, and set the error field, instead"},{"name":"query_id","type":"long","comment":"Unique identifier for the query to be answered"},{"name":"error","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Required if the success isn't set. Error message in human readable form that explains the reason for failure to proceed with the checkout (e.g. \"Sorry, somebody just bought the last of our amazing black T-shirts while you were busy filling out your payment details. Please choose a different color or garment!\"). Telegram will display this message to the user."}],"throws":[{"code":400,"name":"ERROR_TEXT_EMPTY","comment":"The provided error message is empty."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.uploadMedia","type":"MessageMedia","id":345405816,"comment":"Upload a file and associate it to a chat (without actually sending it to the chat)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"business_connection_id","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the media will be used only in the specified business connection », and not directly by the bot."},{"name":"peer","type":"InputPeer","comment":"The chat, can be {@link RawInputPeerEmpty} for bots and {@link RawInputPeerSelf} for users."},{"name":"media","type":"InputMedia","comment":"File uploaded in chunks as described in files »"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_PART_LENGTH_INVALID","comment":"The length of a file part is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID_DIMENSIONS","comment":"The photo dimensions are invalid."},{"code":400,"name":"PHOTO_SAVE_FILE_INVALID","comment":"Internal issues, try again later."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"WEBPAGE_CURL_FAILED","comment":"Failure while fetching the webpage with cURL."}],"available":"both"},{"kind":"method","name":"messages.sendScreenshotNotification","type":"Updates","id":2705348631,"comment":"Notify the other user in a private chat that a screenshot of the chat was taken","arguments":[{"name":"peer","type":"InputPeer","comment":"Other user"},{"name":"reply_to","type":"InputReplyTo","comment":"Indicates the message that was screenshotted (the specified message ID can also be 0 to avoid indicating any specific message)."},{"name":"random_id","type":"long","comment":"Random ID to avoid message resending"}],"throws":[{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REPLY_MESSAGE_ID_INVALID","comment":"The specified reply-to message ID is invalid."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},{"kind":"method","name":"messages.getFavedStickers","type":"messages.FavedStickers","id":82946729,"comment":"Get faved stickers","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.faveSticker","type":"Bool","id":3120547163,"comment":"Mark or unmark a sticker as favorite","arguments":[{"name":"id","type":"InputDocument","comment":"Sticker in question"},{"name":"unfave","type":"Bool","comment":"Whether to add or remove a sticker from favorites"}],"throws":[{"code":400,"name":"STICKER_ID_INVALID","comment":"The provided sticker ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getUnreadMentions","type":"messages.Messages","id":4043827088,"comment":"Get unread messages where we were mentioned","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer where to look for mentions"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, considers only messages within the specified forum topic"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"add_offset","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"max_id","type":"int","comment":"Maximum message ID to return, see pagination"},{"name":"min_id","type":"int","comment":"Minimum message ID to return, see pagination"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.readMentions","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":921026381,"comment":"Mark mentions as read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Dialog"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Mark as read only mentions within the specified forum topic"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getRecentLocations","type":"messages.Messages","id":1881817312,"comment":"Get live location history of a certain user","arguments":[{"name":"peer","type":"InputPeer","comment":"User"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"available":"user"},{"kind":"method","name":"messages.sendMultiMedia","type":"Updates","id":934757205,"comment":"Send an album or grouped media","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to send the album silently (no notification triggered)"},{"name":"background","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Send in background?"},{"name":"clear_draft","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Whether to clear drafts"},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.14"},"comment":"Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled"},{"name":"update_stickersets_order","type":"true","typeModifiers":{"predicate":"flags.15"},"comment":"Whether to move used stickersets to top, see here for more info on this flag »"},{"name":"invert_media","type":"true","typeModifiers":{"predicate":"flags.16"},"comment":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom."},{"name":"allow_paid_floodskip","type":"true","typeModifiers":{"predicate":"flags.19"},"comment":"Bots only: if set, allows sending up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance."},{"name":"peer","type":"InputPeer","comment":"The destination chat"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the message should be sent in reply to the specified message or story."},{"name":"multi_media","type":"InputSingleMedia","typeModifiers":{"isVector":true},"comment":"The medias to send: note that they must be separately uploaded using {@link messages.RawUploadMediaRequest} first, using raw inputMediaUploaded* constructors is not supported."},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.10"},"comment":"Scheduled message date for scheduled messages"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Send this message as the specified peer"},{"name":"quick_reply_shortcut","type":"InputQuickReplyShortcut","typeModifiers":{"predicate":"flags.17"},"comment":"Add the message to the specified quick reply shortcut », instead."},{"name":"effect","type":"long","typeModifiers":{"predicate":"flags.18"},"comment":"Specifies a message effect » to use for the message."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_VIDEOS_FORBIDDEN","comment":"You can't send videos in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"FILE_REFERENCE_%d_EXPIRED","comment":"The file reference of the media file at index %d in the passed media array expired, it must be refreshed."},{"code":400,"name":"FILE_REFERENCE_%d_INVALID","comment":"The file reference of the media file at index %d in the passed media array is invalid."},{"code":400,"name":"MEDIA_CAPTION_TOO_LONG","comment":"The caption is too long."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MULTI_MEDIA_TOO_LONG","comment":"Too many media files for album."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"RANDOM_ID_EMPTY","comment":"Random ID empty."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":400,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"messages.uploadEncryptedFile","type":"EncryptedFile","id":1347929239,"comment":"Upload encrypted file and associate it to a secret chat","arguments":[{"name":"peer","type":"InputEncryptedChat","comment":"The secret chat to associate the file to"},{"name":"file","type":"InputEncryptedFile","comment":"The file"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."}],"available":"user"},{"kind":"method","name":"messages.searchStickerSets","type":"messages.FoundStickerSets","id":896555914,"comment":"Search for stickersets","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"exclude_featured","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Exclude featured stickersets from results"},{"name":"q","type":"string","comment":"Query string"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getSplitRanges","type":"MessageRange","typeModifiers":{"isVector":true,"constructorId":182649427},"id":486505992,"comment":"Get message ranges for saving the user's chat history","arguments":[],"available":"user"},{"kind":"method","name":"messages.markDialogUnread","type":"Bool","id":3263617423,"comment":"Manually mark dialog as unread","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"unread","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Mark as unread/read"},{"name":"peer","type":"InputDialogPeer","comment":"Dialog"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getDialogUnreadMarks","type":"DialogPeer","typeModifiers":{"isVector":true},"id":585256482,"comment":"Get dialogs manually marked as unread","arguments":[],"available":"user"},{"kind":"method","name":"messages.clearAllDrafts","type":"Bool","id":2119757468,"comment":"Clear all drafts.","arguments":[],"available":"user"},{"kind":"method","name":"messages.updatePinnedMessage","type":"Updates","id":3534419948,"comment":"Pin a message","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Pin the message silently, without triggering a notification"},{"name":"unpin","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the message should unpinned or pinned"},{"name":"pm_oneside","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether the message should only be pinned on the local side of a one-to-one chat"},{"name":"peer","type":"InputPeer","comment":"The peer where to pin the message"},{"name":"id","type":"int","comment":"The message to pin or unpin"}],"throws":[{"code":400,"name":"BOT_ONESIDE_NOT_AVAIL","comment":"Bots can't pin messages in PM just for themselves."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PIN_RESTRICTED","comment":"You can't pin messages."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"messages.sendVote","type":"Updates","id":283795844,"comment":"Vote in a {@link RawPoll}\n\nStarting from layer 159, the vote will be sent from the peer specified using {@link messages.RawSaveDefaultSendAsRequest}.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where the poll was sent"},{"name":"msg_id","type":"int","comment":"The message ID of the poll"},{"name":"options","type":"bytes","typeModifiers":{"isVector":true},"comment":"The options that were chosen"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_POLL_CLOSED","comment":"Poll closed."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"OPTIONS_TOO_MUCH","comment":"Too many options provided."},{"code":400,"name":"OPTION_INVALID","comment":"Invalid option selected."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REVOTE_NOT_ALLOWED","comment":"You cannot change your vote."}],"available":"user"},{"kind":"method","name":"messages.getPollResults","type":"Updates","id":1941660731,"comment":"Get poll results","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the poll was found"},{"name":"msg_id","type":"int","comment":"Message ID of poll message"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getOnlines","type":"ChatOnlines","typeModifiers":{"constructorId":4030849616},"id":1848369232,"comment":"Get count of online users in a chat","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.editChatAbout","type":"Bool","id":3740665751,"comment":"Edit the description of a group/supergroup/channel.","arguments":[{"name":"peer","type":"InputPeer","comment":"The group/supergroup/channel."},{"name":"about","type":"string","comment":"The new description"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ABOUT_NOT_MODIFIED","comment":"About text has not changed."},{"code":400,"name":"CHAT_ABOUT_TOO_LONG","comment":"Chat about too long."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"messages.editChatDefaultBannedRights","type":"Updates","id":2777049921,"comment":"Edit the default banned rights of a channel/supergroup/group.","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer"},{"name":"banned_rights","type":"ChatBannedRights","comment":"The new global rights"}],"throws":[{"code":400,"name":"BANNED_RIGHTS_INVALID","comment":"You provided some invalid flags in the banned rights."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"UNTIL_DATE_INVALID","comment":"Invalid until date provided."}],"available":"both"},{"kind":"method","name":"messages.getEmojiKeywords","type":"EmojiKeywordsDifference","typeModifiers":{"constructorId":1556570557},"id":899735650,"comment":"Get localized emoji keywords ».","arguments":[{"name":"lang_code","type":"string","comment":"Language code"}],"available":"user"},{"kind":"method","name":"messages.getEmojiKeywordsDifference","type":"EmojiKeywordsDifference","typeModifiers":{"constructorId":1556570557},"id":352892591,"comment":"Get changed emoji keywords ».","arguments":[{"name":"lang_code","type":"string","comment":"Language code"},{"name":"from_version","type":"int","comment":"Previous stored emoji keyword list version"}],"available":"user"},{"kind":"method","name":"messages.getEmojiKeywordsLanguages","type":"EmojiLanguage","typeModifiers":{"isVector":true,"constructorId":3019592545},"id":1318675378,"comment":"Obtain a list of related languages that must be used when fetching emoji keyword lists ».\n\nUsually the method will return the passed language codes (if localized) + en + some language codes for similar languages (if applicable).","arguments":[{"name":"lang_codes","type":"string","typeModifiers":{"isVector":true},"comment":"The user's language codes"}],"available":"user"},{"kind":"method","name":"messages.getEmojiURL","type":"EmojiURL","typeModifiers":{"constructorId":2775937949},"id":3585149990,"comment":"Returns an HTTP URL which can be used to automatically log in into translation platform and suggest new emoji keywords ». The URL will be valid for 30 seconds after generation.","arguments":[{"name":"lang_code","type":"string","comment":"Language code for which the emoji keywords will be suggested"}],"available":"user"},{"kind":"method","name":"messages.getSearchCounters","type":"messages.SearchCounter","typeModifiers":{"isVector":true,"constructorId":3896830975},"id":465367808,"comment":"Get the number of results that would be found by a {@link messages.RawSearchRequest} call with the same parameters","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer where to search"},{"name":"saved_peer_id","type":"InputPeer","typeModifiers":{"predicate":"flags.2"},"comment":"Search within the saved message dialog » with this ID."},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, consider only messages within the specified forum topic"},{"name":"filters","type":"MessagesFilter","typeModifiers":{"isVector":true},"comment":"Search filters"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.requestUrlAuth","type":"UrlAuthResult","id":428848198,"comment":"Get more info about a Seamless Telegram Login authorization request, for more info click here »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","typeModifiers":{"predicate":"flags.1"},"comment":"Peer where the message is located"},{"name":"msg_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"The message"},{"name":"button_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"The ID of the button with the authorization request"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"URL used for link URL authorization, click here for more info »"}],"available":"user"},{"kind":"method","name":"messages.acceptUrlAuth","type":"UrlAuthResult","id":2972479781,"comment":"Use this to accept a Seamless Telegram Login authorization request, for more info click here »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"write_allowed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag to allow the bot to send messages to you (if requested)"},{"name":"peer","type":"InputPeer","typeModifiers":{"predicate":"flags.1"},"comment":"The location of the message"},{"name":"msg_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Message ID of the message with the login button"},{"name":"button_id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"ID of the login button"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"URL used for link URL authorization, click here for more info »"}],"available":"user"},{"kind":"method","name":"messages.hidePeerSettingsBar","type":"Bool","id":1336717624,"comment":"Should be called after the user hides the report spam/add as contact bar of a new chat, effectively prevents the user from executing the actions specified in the action bar ».","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getScheduledHistory","type":"messages.Messages","id":4111889931,"comment":"Get scheduled messages","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here.
To generate the hash, populate the ids array with the id, date and edit_date (in this order) of the previously returned messages (in order, i.e. ids = [id1, date1, edit_date1, id2, date2, edit_date2, ...])."}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getScheduledMessages","type":"messages.Messages","id":3183150180,"comment":"Get scheduled messages","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of scheduled messages"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.sendScheduledMessages","type":"Updates","id":3174597898,"comment":"Send scheduled messages right away","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Scheduled message IDs"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."}],"available":"user"},{"kind":"method","name":"messages.deleteScheduledMessages","type":"Updates","id":1504586518,"comment":"Delete scheduled messages","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Scheduled message IDs"}],"throws":[{"code":403,"name":"MESSAGE_DELETE_FORBIDDEN","comment":"You can't delete one of the messages you tried to delete, most likely because it is a service message."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getPollVotes","type":"messages.VotesList","typeModifiers":{"constructorId":1218005070},"id":3094231054,"comment":"Get poll results for non-anonymous polls","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Chat where the poll was sent"},{"name":"id","type":"int","comment":"Message ID"},{"name":"option","type":"bytes","typeModifiers":{"predicate":"flags.0"},"comment":"Get only results for the specified poll option"},{"name":"offset","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Offset for results, taken from the next_offset field of {@link messages.RawVotesList}, initially an empty string.
Note: if no more results are available, the method call will return an empty next_offset; thus, avoid providing the next_offset returned in {@link messages.RawVotesList} if it is empty, to avoid an infinite loop."},{"name":"limit","type":"int","comment":"Number of results to return"}],"throws":[{"code":403,"name":"BROADCAST_FORBIDDEN","comment":"Channel poll voters and reactions cannot be fetched to prevent deanonymization."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":403,"name":"POLL_VOTE_REQUIRED","comment":"Cast a vote in the poll before calling this method."}],"available":"user"},{"kind":"method","name":"messages.toggleStickerSets","type":"Bool","id":3037016042,"comment":"Apply changes to multiple stickersets","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"uninstall","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Uninstall the specified stickersets"},{"name":"archive","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Archive the specified stickersets"},{"name":"unarchive","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Unarchive the specified stickersets"},{"name":"stickersets","type":"InputStickerSet","typeModifiers":{"isVector":true},"comment":"Stickersets to act upon"}],"available":"user"},{"kind":"method","name":"messages.getDialogFilters","type":"messages.DialogFilters","typeModifiers":{"constructorId":718878489},"id":4023684233,"comment":"Get folders","arguments":[],"available":"user"},{"kind":"method","name":"messages.getSuggestedDialogFilters","type":"DialogFilterSuggested","typeModifiers":{"isVector":true,"constructorId":2004110666},"id":2728186924,"comment":"Get suggested folders","arguments":[],"available":"user"},{"kind":"method","name":"messages.updateDialogFilter","type":"Bool","id":450142282,"comment":"Update folder","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"id","type":"int","comment":"Folder ID"},{"name":"filter","type":"DialogFilter","typeModifiers":{"predicate":"flags.0"},"comment":"Folder info"}],"throws":[{"code":400,"name":"CHATLIST_EXCLUDE_INVALID","comment":"The specified exclude_peers are invalid."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_INCLUDE_EMPTY","comment":"The include_peers vector of the filter is empty."},{"code":400,"name":"FILTER_TITLE_EMPTY","comment":"The title field of the filter is empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.updateDialogFiltersOrder","type":"Bool","id":3311649252,"comment":"Reorder folders","arguments":[{"name":"order","type":"int","typeModifiers":{"isVector":true},"comment":"New folder order"}],"available":"user"},{"kind":"method","name":"messages.getOldFeaturedStickers","type":"messages.FeaturedStickers","id":2127598753,"comment":"Method for fetching previously featured stickers","arguments":[{"name":"offset","type":"int","comment":"Offset"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getReplies","type":"messages.Messages","id":584962828,"comment":"Get messages in a reply thread","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"add_offset","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"max_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with ID smaller than max_id"},{"name":"min_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with ID bigger than min_id"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getDiscussionMessage","type":"messages.DiscussionMessage","typeModifiers":{"constructorId":2788431746},"id":1147761405,"comment":"Get discussion message from the associated discussion group of a channel to show it on top of the comment section, without actually joining the group","arguments":[{"name":"peer","type":"InputPeer","comment":"Channel ID"},{"name":"msg_id","type":"int","comment":"Message ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.readDiscussion","type":"Bool","id":4147227124,"comment":"Mark a thread as read","arguments":[{"name":"peer","type":"InputPeer","comment":"Group ID"},{"name":"msg_id","type":"int","comment":"ID of message that started the thread"},{"name":"read_max_id","type":"int","comment":"ID up to which thread messages were read"}],"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.unpinAllMessages","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":3995253160,"comment":"Unpin all pinned messages","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Chat where to unpin"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Forum topic where to unpin"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"messages.deleteChat","type":"Bool","id":1540419152,"comment":"Delete a chat","arguments":[{"name":"chat_id","type":"int53","comment":"Chat ID"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deletePhoneCallHistory","type":"messages.AffectedFoundMessages","typeModifiers":{"constructorId":4019011180},"id":4190888969,"comment":"Delete the entire phone call history.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoke","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to remove phone call history for participants as well"}],"available":"user"},{"kind":"method","name":"messages.checkHistoryImport","type":"messages.HistoryImportParsed","typeModifiers":{"constructorId":1578088377},"id":1140726259,"comment":"Obtains information about a chat export file, generated by a foreign chat app, click here for more info about imported chats ».","arguments":[{"name":"import_head","type":"string","comment":"Beginning of the message file; up to 100 lines."}],"throws":[{"code":400,"name":"IMPORT_FORMAT_UNRECOGNIZED","comment":"The specified chat export file was exported from an unsupported chat app."}],"available":"user"},{"kind":"method","name":"messages.initHistoryImport","type":"messages.HistoryImport","typeModifiers":{"constructorId":375566091},"id":873008187,"comment":"Import chat history from a foreign chat app into a specific Telegram chat, click here for more info about imported chats ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The Telegram chat where the history should be imported."},{"name":"file","type":"InputFile","comment":"File with messages to import."},{"name":"media_count","type":"int","comment":"Number of media files associated with the chat that will be uploaded using {@link messages.RawUploadImportedMediaRequest}."}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"IMPORT_FILE_INVALID","comment":"The specified chat export file is invalid."},{"code":400,"name":"IMPORT_FORMAT_DATE_INVALID","comment":"The date specified in the import file is invalid."},{"code":400,"name":"IMPORT_FORMAT_UNRECOGNIZED","comment":"The specified chat export file was exported from an unsupported chat app."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":406,"name":"PREVIOUS_CHAT_IMPORT_ACTIVE_WAIT_%dMIN","comment":"Import for this chat is already in progress, wait %d minutes before starting a new one."}],"available":"user"},{"kind":"method","name":"messages.uploadImportedMedia","type":"MessageMedia","id":713433234,"comment":"Upload a media file associated with an imported chat, click here for more info ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The Telegram chat where the media will be imported"},{"name":"import_id","type":"long","comment":"Identifier of a history import session, returned by {@link messages.RawInitHistoryImportRequest}"},{"name":"file_name","type":"string","comment":"File name"},{"name":"media","type":"InputMedia","comment":"Media metadata"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"IMPORT_ID_INVALID","comment":"The specified import ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.startHistoryImport","type":"Bool","id":3023958852,"comment":"Complete the history import process, importing all messages into the chat.
\nTo be called only after initializing the import with {@link messages.RawInitHistoryImportRequest} and uploading all files using {@link messages.RawUploadImportedMediaRequest}.","arguments":[{"name":"peer","type":"InputPeer","comment":"The Telegram chat where the messages should be imported, click here for more info »"},{"name":"import_id","type":"long","comment":"Identifier of a history import session, returned by {@link messages.RawInitHistoryImportRequest}."}],"throws":[{"code":400,"name":"IMPORT_ID_INVALID","comment":"The specified import ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getExportedChatInvites","type":"messages.ExportedChatInvites","typeModifiers":{"constructorId":3183881676},"id":2729812982,"comment":"Get info about the chat invites of a specific chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoked","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether to fetch revoked chat invites"},{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"admin_id","type":"InputUser","comment":"Whether to only fetch chat invites from this admin"},{"name":"offset_date","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Offsets for pagination, for more info click here"},{"name":"offset_link","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"ADMIN_ID_INVALID","comment":"The specified admin ID is invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getExportedChatInvite","type":"messages.ExportedChatInvite","id":1937010524,"comment":"Get info about a chat invite","arguments":[{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"link","type":"string","comment":"Invite link"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.editExportedChatInvite","type":"messages.ExportedChatInvite","id":3184144245,"comment":"Edit an exported chat invite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"revoked","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to revoke the chat invite"},{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"link","type":"string","comment":"Invite link"},{"name":"expire_date","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"New expiration date"},{"name":"usage_limit","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"Maximum number of users that can join using this link"},{"name":"request_needed","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"Whether admin confirmation is required before admitting each separate user into the chat"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Description of the invite link, visible only to administrators"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_INVITE_PERMANENT","comment":"You can't set an expiration date on permanent invite links."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"EDIT_BOT_INVITE_FORBIDDEN","comment":"Normal users can't edit invites that were created by bots."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USAGE_LIMIT_INVALID","comment":"The specified usage limit is invalid."}],"available":"both"},{"kind":"method","name":"messages.deleteRevokedExportedChatInvites","type":"Bool","id":1452833749,"comment":"Delete all revoked chat invites","arguments":[{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"admin_id","type":"InputUser","comment":"ID of the admin that originally generated the revoked chat invites"}],"throws":[{"code":400,"name":"ADMIN_ID_INVALID","comment":"The specified admin ID is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteExportedChatInvite","type":"Bool","id":3563365419,"comment":"Delete a chat invite","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"link","type":"string","comment":"Invite link"}],"throws":[{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_REVOKED_MISSING","comment":"The specified invite link was already revoked or is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getAdminsWithInvites","type":"messages.ChatAdminsWithInvites","typeModifiers":{"constructorId":3063640791},"id":958457583,"comment":"Get info about chat invites generated by admins.","arguments":[{"name":"peer","type":"InputPeer","comment":"Chat"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getChatInviteImporters","type":"messages.ChatInviteImporters","typeModifiers":{"constructorId":2176233482},"id":3741637966,"comment":"Get info about the users that joined the chat using a specific chat invite","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"requested","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, only returns info about users with pending join requests »"},{"name":"subscription_expired","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Set this flag if the link is a Telegram Star subscription link » and only members with already expired subscription must be returned."},{"name":"peer","type":"InputPeer","comment":"Chat"},{"name":"link","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Invite link"},{"name":"q","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Search for a user in the pending join requests » list: only available when the requested flag is set, cannot be used together with a specific link."},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"offset_user","type":"InputUser","comment":"User ID for pagination: if set, offset_date must also be set."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SEARCH_WITH_LINK_NOT_SUPPORTED","comment":"You cannot provide a search query and an invite link at the same time."}],"available":"user"},{"kind":"method","name":"messages.setHistoryTTL","type":"Updates","id":3087949796,"comment":"Set maximum Time-To-Live of all messages in the specified chat","arguments":[{"name":"peer","type":"InputPeer","comment":"The dialog"},{"name":"period","type":"int","comment":"Automatically delete all messages sent in the chat after this many seconds"}],"throws":[{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."}],"available":"user"},{"kind":"method","name":"messages.checkHistoryImportPeer","type":"messages.CheckedHistoryImportPeer","typeModifiers":{"constructorId":2723014423},"id":1573261059,"comment":"Check whether chat history exported from another chat app can be imported into a specific Telegram chat, click here for more info ».\n\nIf the check succeeds, and no RPC errors are returned, a messages.CheckedHistoryImportPeer constructor will be returned, with a confirmation text to be shown to the user, before actually initializing the import.","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat where we want to import history »."}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."}],"available":"user"},{"kind":"method","name":"messages.setChatTheme","type":"Updates","id":3862683967,"comment":"Change the chat theme of a certain chat","arguments":[{"name":"peer","type":"InputPeer","comment":"Private chat where to change theme"},{"name":"emoticon","type":"string","comment":"Emoji, identifying a specific chat theme; a list of chat themes can be fetched using {@link account.RawGetChatThemesRequest}"}],"throws":[{"code":400,"name":"EMOJI_INVALID","comment":"The specified theme emoji is valid."},{"code":400,"name":"EMOJI_NOT_MODIFIED","comment":"The theme wasn't changed."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getMessageReadParticipants","type":"ReadParticipantDate","typeModifiers":{"isVector":true,"constructorId":1246753138},"id":834782287,"comment":"Get which users read a specific message: only available for groups and supergroups with less than chat_read_mark_size_threshold members, read receipts will be stored for chat_read_mark_expire_period seconds after the message was sent, see client configuration for more info ».","arguments":[{"name":"peer","type":"InputPeer","comment":"Dialog"},{"name":"msg_id","type":"int","comment":"Message ID"}],"throws":[{"code":400,"name":"CHAT_TOO_BIG","comment":"This method is not available for groups with more than chat_read_mark_size_threshold members, see client configuration »."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"MSG_TOO_OLD","comment":"chat_read_mark_expire_period seconds have passed since the message was sent, read receipts were deleted."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getSearchResultsCalendar","type":"messages.SearchResultsCalendar","typeModifiers":{"constructorId":343859772},"id":1789130429,"comment":"Returns information about the next messages of the specified type in the chat split by days.\n\nReturns the results in reverse chronological order.
\nCan return partial results for the last returned day.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer where to search"},{"name":"saved_peer_id","type":"InputPeer","typeModifiers":{"predicate":"flags.2"},"comment":"Search within the saved message dialog » with this ID."},{"name":"filter","type":"MessagesFilter","comment":"Message filter, {@link RawInputMessagesFilterEmpty}, {@link RawInputMessagesFilterMyMentions} filters are not supported by this method."},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here"}],"throws":[{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getSearchResultsPositions","type":"messages.SearchResultsPositions","typeModifiers":{"constructorId":1404185519},"id":2625580816,"comment":"Returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation.\n\nReturns the results in reverse chronological order (i.e., in order of decreasing message_id).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer where to search"},{"name":"saved_peer_id","type":"InputPeer","typeModifiers":{"predicate":"flags.2"},"comment":"Search within the saved message dialog » with this ID."},{"name":"filter","type":"MessagesFilter","comment":"Message filter, {@link RawInputMessagesFilterEmpty}, {@link RawInputMessagesFilterMyMentions} filters are not supported by this method."},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.hideChatJoinRequest","type":"Updates","id":2145904661,"comment":"Dismiss or approve a chat join request related to a specific chat or channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"approved","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to dismiss or approve the chat join request »"},{"name":"peer","type":"InputPeer","comment":"The chat or channel"},{"name":"user_id","type":"InputUser","comment":"The user whose join request » should be dismissed or approved"}],"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"HIDE_REQUESTER_MISSING","comment":"The join request was missing or was already handled."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":403,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"messages.hideAllChatJoinRequests","type":"Updates","id":3766875370,"comment":"Dismiss or approve all join requests related to a specific chat or channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"approved","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to dismiss or approve all chat join requests »"},{"name":"peer","type":"InputPeer","comment":"The chat or channel"},{"name":"link","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Only dismiss or approve join requests » initiated using this invite link"}],"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"HIDE_REQUESTER_MISSING","comment":"The join request was missing or was already handled."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."}],"available":"user"},{"kind":"method","name":"messages.toggleNoForwards","type":"Updates","id":2971578274,"comment":"Enable or disable content protection on a channel or chat","arguments":[{"name":"peer","type":"InputPeer","comment":"The chat or channel"},{"name":"enabled","type":"Bool","comment":"Enable or disable content protection"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.saveDefaultSendAs","type":"Bool","id":3439189910,"comment":"Change the default peer that should be used when sending messages, reactions, poll votes to a specific group","arguments":[{"name":"peer","type":"InputPeer","comment":"Group"},{"name":"send_as","type":"InputPeer","comment":"The default peer that should be used when sending messages to the group"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."}],"available":"user"},{"kind":"method","name":"messages.sendReaction","type":"Updates","id":3540875476,"comment":"React to message.\n\nStarting from layer 159, the reaction will be sent from the peer specified using {@link messages.RawSaveDefaultSendAsRequest}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"big","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether a bigger and longer reaction should be shown"},{"name":"add_to_recent","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to add this reaction to the recent reactions list »."},{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"msg_id","type":"int","comment":"Message ID to react to"},{"name":"reaction","type":"Reaction","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"A list of reactions"}],"throws":[{"code":403,"name":"ANONYMOUS_REACTIONS_DISABLED","comment":"Sorry, anonymous administrators cannot leave reactions or participate in polls."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"CUSTOM_REACTIONS_TOO_MANY","comment":"Too many custom reactions were specified."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_MODIFIED","comment":"The provided message data is identical to the previous message data, the message wasn't modified."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"REACTIONS_TOO_MANY","comment":"The message already has exactly reactions_uniq_max reaction emojis, you can't react with a new emoji, see the docs for more info »."},{"code":400,"name":"REACTION_EMPTY","comment":"Empty reaction provided."},{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"user"},{"kind":"method","name":"messages.getMessagesReactions","type":"Updates","id":2344259814,"comment":"Get message reactions »","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Message IDs"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},{"kind":"method","name":"messages.getMessageReactionsList","type":"messages.MessageReactionsList","typeModifiers":{"constructorId":834488621},"id":1176190792,"comment":"Get message reaction list, along with the sender of each reaction.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"id","type":"int","comment":"Message ID"},{"name":"reaction","type":"Reaction","typeModifiers":{"predicate":"flags.0"},"comment":"Get only reactions of this type"},{"name":"offset","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Offset for pagination (taken from the next_offset field of the returned messages.MessageReactionsList); empty in the first request."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":403,"name":"BROADCAST_FORBIDDEN","comment":"Channel poll voters and reactions cannot be fetched to prevent deanonymization."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"messages.setChatAvailableReactions","id":2253071745,"type":"Updates","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Group where to apply changes"},{"name":"available_reactions","type":"ChatReactions","comment":"Allowed reaction emojis"},{"name":"reactions_limit","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max); this field and the other info set by the method will then be available to users in {@link RawChannelFull} and {@link RawChatFull}.
If this flag is not set, the previously configured reactions_limit will not be altered."},{"name":"paid_enabled","type":"Bool","typeModifiers":{"predicate":"flags.1"},"comment":"If this flag is set and a Bool is passed, the method will enable or disable paid message reactions ». If this flag is not set, the previously stored setting will not be changed."}],"comment":"Change the set of message reactions » that can be used in a certain group, supergroup or channel","throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getAvailableReactions","type":"messages.AvailableReactions","id":417243308,"comment":"Obtain available message reactions »","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.setDefaultReaction","type":"Bool","id":1330094102,"comment":"Change default emoji reaction to use in the quick reaction menu: the value is synced across devices and can be fetched using {@link help.RawGetConfigRequest}.","arguments":[{"name":"reaction","type":"Reaction","comment":"New emoji reaction"}],"throws":[{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."}],"available":"user"},{"kind":"method","name":"messages.translateText","type":"messages.TranslatedText","typeModifiers":{"constructorId":870003448},"id":1662529584,"comment":"Translate a given text.\n\nStyled text entities will only be preserved for Telegram Premium users.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","typeModifiers":{"predicate":"flags.0"},"comment":"If the text is a chat message, the peer ID"},{"name":"id","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"A list of message IDs to translate"},{"name":"text","type":"TextWithEntities","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"A list of styled messages to translate"},{"name":"to_lang","type":"string","comment":"Two-letter ISO 639-1 language code of the language to which the message is translated"}],"throws":[{"code":400,"name":"INPUT_TEXT_EMPTY","comment":"The specified text is empty."},{"code":400,"name":"INPUT_TEXT_TOO_LONG","comment":"The specified text is too long."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TO_LANG_INVALID","comment":"The specified destination language is invalid."},{"code":400,"name":"TRANSLATE_REQ_QUOTA_EXCEEDED","comment":"Translation is currently unavailable due to a temporary server-side lack of resources."}],"available":"user"},{"kind":"method","name":"messages.getUnreadReactions","type":"messages.Messages","id":841173339,"comment":"Get unread reactions to messages you sent","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If set, considers only reactions to messages within the specified forum topic"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"add_offset","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"max_id","type":"int","comment":"Only return reactions for messages up until this message ID"},{"name":"min_id","type":"int","comment":"Only return reactions for messages starting from this message ID"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.readReactions","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":1420459918,"comment":"Mark message reactions » as read","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer"},{"name":"top_msg_id","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"Mark as read only reactions to messages within the specified forum topic"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.searchSentMedia","type":"messages.Messages","id":276705696,"comment":"View and search recently sent media.
\nThis method does not support pagination.","arguments":[{"name":"q","type":"string","comment":"Optional search query"},{"name":"filter","type":"MessagesFilter","comment":"Message filter"},{"name":"limit","type":"int","comment":"Maximum number of results to return (max 100)."}],"throws":[{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},{"kind":"method","name":"messages.getAttachMenuBots","type":"AttachMenuBots","id":385663691,"comment":"Returns installed attachment menu bot mini apps »","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getAttachMenuBot","type":"AttachMenuBotsBot","typeModifiers":{"constructorId":2478794367},"id":1998676370,"comment":"Returns attachment menu entry for a bot mini app that can be launched from the attachment menu »","arguments":[{"name":"bot","type":"InputUser","comment":"Bot ID"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"messages.toggleBotInAttachMenu","type":"Bool","id":1777704297,"comment":"Enable or disable web bot attachment menu »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"write_allowed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user authorizes the bot to write messages to them, if requested by {@link RawAttachMenuBot}.request_write_access"},{"name":"bot","type":"InputUser","comment":"Bot ID"},{"name":"enabled","type":"Bool","comment":"Toggle"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"messages.requestWebView","type":"WebViewResult","typeModifiers":{"constructorId":1294139288},"id":647873217,"comment":"Open a bot mini app, sending over user information after user confirmation.\n\nAfter calling this method, until the user closes the webview, {@link messages.RawProlongWebViewRequest} must be called every 60 seconds.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"from_bot_menu","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"Whether the webview was opened by clicking on the bot's menu button »."},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent silently (no notifications for the receivers)."},{"name":"compact","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the attachment menu deep link is equal to compact."},{"name":"fullscreen","type":"true","typeModifiers":{"predicate":"flags.8"}},{"name":"peer","type":"InputPeer","comment":"Dialog where the web app is being opened, and where the resulting message will be sent (see the docs for more info »)."},{"name":"bot","type":"InputUser","comment":"Bot that owns the web app"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Web app URL"},{"name":"start_param","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"If the web app was opened from the attachment menu using a attachment menu deep link, start_param should contain the data from the startattach parameter."},{"name":"theme_params","type":"DataJSON","typeModifiers":{"predicate":"flags.2"},"comment":"Theme parameters »"},{"name":"platform","type":"string","comment":"Short name of the application; 0-64 English letters, digits, and underscores"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent in reply to the specified message or story."},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Open the web app as the specified peer, sending the resulting the message as the specified peer."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BOT_WEBVIEW_DISABLED","comment":"A webview cannot be opened in the specified conditions: emitted for example if from_bot_menu or url are set and peer is not the chat with the bot."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},{"kind":"method","name":"messages.prolongWebView","type":"Bool","id":2966952579,"comment":"Indicate to the server (from the user side) that the user is still using a web app.\n\nIf the method returns a QUERY_ID_INVALID error, the webview must be closed.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"silent","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent silently (no notifications for the receivers)."},{"name":"peer","type":"InputPeer","comment":"Dialog where the web app was opened."},{"name":"bot","type":"InputUser","comment":"Bot that owns the web app"},{"name":"query_id","type":"long","comment":"Web app interaction ID obtained from {@link messages.RawRequestWebViewRequest}"},{"name":"reply_to","type":"InputReplyTo","typeModifiers":{"predicate":"flags.0"},"comment":"If set, indicates that the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent in reply to the specified message or story."},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.13"},"comment":"Open the web app as the specified peer"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"messages.requestSimpleWebView","type":"WebViewResult","typeModifiers":{"constructorId":1294139288},"id":1094336115,"comment":"Open a bot mini app.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"from_switch_webview","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the webapp was opened by clicking on the switch_webview button shown on top of the inline results list returned by {@link messages.RawGetInlineBotResultsRequest}."},{"name":"from_side_menu","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Set this flag if opening the Mini App from the installed side menu entry »."},{"name":"compact","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Deprecated."},{"name":"fullscreen","type":"true","typeModifiers":{"predicate":"flags.8"}},{"name":"bot","type":"InputUser","comment":"Bot that owns the mini app"},{"name":"url","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Web app URL, if opening from a keyboard button or inline result"},{"name":"start_param","type":"string","typeModifiers":{"predicate":"flags.4"},"comment":"Deprecated."},{"name":"theme_params","type":"DataJSON","typeModifiers":{"predicate":"flags.0"},"comment":"Theme parameters »"},{"name":"platform","type":"string","comment":"Short name of the application; 0-64 English letters, digits, and underscores"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"URL_INVALID","comment":"Invalid URL provided."}],"available":"user"},{"kind":"method","name":"messages.sendWebViewResultMessage","type":"WebViewMessageSent","typeModifiers":{"constructorId":211046684},"id":172168437,"comment":"Terminate webview interaction started with {@link messages.RawRequestWebViewRequest}, sending the specified message to the chat on behalf of the user.","arguments":[{"name":"bot_query_id","type":"string","comment":"Webview interaction ID obtained from {@link messages.RawRequestWebViewRequest}"},{"name":"result","type":"InputBotInlineResult","comment":"Message to send"}],"throws":[{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"messages.sendWebViewData","type":"Updates","id":3691135688,"comment":"Used by the user to relay data from an opened reply keyboard bot mini app to the bot that owns it.","arguments":[{"name":"bot","type":"InputUser","comment":"Bot that owns the web app"},{"name":"random_id","type":"long","comment":"Unique client message ID to prevent duplicate sending of the same event"},{"name":"button_text","type":"string","comment":"Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app."},{"name":"data","type":"string","comment":"Data to relay to the bot, obtained from a web_app_data_send JS event."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"messages.transcribeAudio","type":"messages.TranscribedAudio","typeModifiers":{"constructorId":3485063511},"id":647928393,"comment":"Transcribe voice message","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer ID where the voice message was sent"},{"name":"msg_id","type":"int","comment":"Voice message ID"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"TRANSCRIPTION_FAILED","comment":"Audio transcription failed."}],"available":"user"},{"kind":"method","name":"messages.rateTranscribedAudio","type":"Bool","id":2132608815,"comment":"Rate transcribed voice message","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the voice message was sent"},{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"transcription_id","type":"long","comment":"Transcription ID"},{"name":"good","type":"Bool","comment":"Whether the transcription was correct"}],"available":"user"},{"kind":"method","name":"messages.getCustomEmojiDocuments","type":"Document","typeModifiers":{"isVector":true},"id":3651866452,"comment":"Fetch custom emoji stickers ».\n\nReturns a list of {@link RawDocument} with the animated custom emoji in TGS format, and a {@link RawDocumentAttributeCustomEmoji} attribute with the original emoji and info about the emoji stickerset this custom emoji belongs to.","arguments":[{"name":"document_id","type":"long","typeModifiers":{"isVector":true},"comment":"Custom emoji IDs from a {@link RawMessageEntityCustomEmoji}."}],"available":"both"},{"kind":"method","name":"messages.getEmojiStickers","type":"messages.AllStickers","id":4227637647,"comment":"Gets the list of currently installed custom emoji stickersets.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getFeaturedEmojiStickers","type":"messages.FeaturedStickers","id":248473398,"comment":"Gets featured custom emoji stickersets.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.reportReaction","type":"Bool","id":1063567478,"comment":"Report a message reaction","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the message was sent"},{"name":"id","type":"int","comment":"Message ID"},{"name":"reaction_peer","type":"InputPeer","comment":"Peer that sent the reaction"}],"throws":[{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"messages.getTopReactions","type":"messages.Reactions","id":3145803194,"comment":"Got popular message reactions","arguments":[{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getRecentReactions","type":"messages.Reactions","id":960896434,"comment":"Get recently used message reactions","arguments":[{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.clearRecentReactions","type":"Bool","id":2650730420,"comment":"Clear recently used message reactions","arguments":[],"available":"user"},{"kind":"method","name":"messages.getExtendedMedia","type":"Updates","id":2230847508,"comment":"Fetch updated information about paid media, see here » for the full flow.\n\nThis method will return an array of {@link RawUpdateMessageExtendedMedia} updates, only for messages containing already bought paid media.
\nNo information will be returned for messages containing not yet bought paid media.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer with visible paid media messages."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of currently visible messages containing paid media."}],"available":"user"},{"kind":"method","name":"messages.setDefaultHistoryTTL","type":"Bool","id":2662667333,"comment":"Changes the default value of the Time-To-Live setting, applied to all new chats.","arguments":[{"name":"period","type":"int","comment":"The new default Time-To-Live of all messages sent in new chats."}],"throws":[{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."}],"available":"user"},{"kind":"method","name":"messages.getDefaultHistoryTTL","type":"DefaultHistoryTTL","typeModifiers":{"constructorId":1135897376},"id":1703637384,"comment":"Gets the default value of the Time-To-Live setting, applied to all new chats.","arguments":[],"available":"user"},{"kind":"method","name":"messages.sendBotRequestedPeer","type":"Updates","id":2444415072,"comment":"Send one or more chosen peers, as requested by a {@link RawKeyboardButtonRequestPeer} button.","arguments":[{"name":"peer","type":"InputPeer","comment":"The bot that sent the {@link RawKeyboardButtonRequestPeer} button."},{"name":"msg_id","type":"int","comment":"ID of the message that contained the reply keyboard with the {@link RawKeyboardButtonRequestPeer} button."},{"name":"button_id","type":"int","comment":"The button_id field from the {@link RawKeyboardButtonRequestPeer} constructor."},{"name":"requested_peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"The chosen peers."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getEmojiGroups","type":"messages.EmojiGroups","id":1955122779,"comment":"Represents a list of emoji categories.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getEmojiStatusGroups","type":"messages.EmojiGroups","id":785209037,"comment":"Represents a list of emoji categories, to be used when selecting custom emojis to set as custom emoji status.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getEmojiProfilePhotoGroups","type":"messages.EmojiGroups","id":564480243,"comment":"Represents a list of emoji categories, to be used when selecting custom emojis to set as profile picture.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.searchCustomEmoji","type":"EmojiList","id":739360983,"comment":"Look for custom emojis associated to a UTF8 emoji","arguments":[{"name":"emoticon","type":"string","comment":"The emoji"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"throws":[{"code":400,"name":"EMOTICON_EMPTY","comment":"The emoji is empty."}],"available":"user"},{"kind":"method","name":"messages.togglePeerTranslations","type":"Bool","id":3833378169,"comment":"Show or hide the real-time chat translation popup for a certain chat","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"disabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to disable or enable the real-time chat translation popup"},{"name":"peer","type":"InputPeer","comment":"The peer"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getBotApp","type":"messages.BotApp","typeModifiers":{"constructorId":3947933173},"id":889046467,"comment":"Obtain information about a direct link Mini App","arguments":[{"name":"app","type":"InputBotApp","comment":"Bot app information obtained from a Direct Mini App deep link »."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":400,"name":"BOT_APP_BOT_INVALID","comment":"The bot_id passed in the inputBotAppShortName constructor is invalid."},{"code":400,"name":"BOT_APP_INVALID","comment":"The specified bot app is invalid."},{"code":400,"name":"BOT_APP_SHORTNAME_INVALID","comment":"The specified bot app short name is invalid."}],"available":"user"},{"kind":"method","name":"messages.requestAppWebView","type":"WebViewResult","typeModifiers":{"constructorId":1294139288},"id":1398901710,"comment":"Open a bot mini app from a direct Mini App deep link, sending over user information after user confirmation.\n\nAfter calling this method, until the user closes the webview, {@link messages.RawProlongWebViewRequest} must be called every 60 seconds.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"write_allowed","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set this flag if the bot is asking permission to send messages to the user as specified in the direct Mini App deep link docs, and the user agreed."},{"name":"compact","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the direct Mini App deep link is equal to compact."},{"name":"fullscreen","type":"true","typeModifiers":{"predicate":"flags.8"}},{"name":"peer","type":"InputPeer","comment":"If the client has clicked on the link in a Telegram chat, pass the chat's peer information; otherwise pass the bot's peer information, instead."},{"name":"app","type":"InputBotApp","comment":"The app obtained by invoking {@link messages.RawGetBotAppRequest} as specified in the direct Mini App deep link docs."},{"name":"start_param","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"If the startapp query string parameter is present in the direct Mini App deep link, pass it to start_param."},{"name":"theme_params","type":"DataJSON","typeModifiers":{"predicate":"flags.2"},"comment":"Theme parameters »"},{"name":"platform","type":"string","comment":"Short name of the application; 0-64 English letters, digits, and underscores"}],"throws":[{"code":400,"name":"BOT_APP_INVALID","comment":"The specified bot app is invalid."},{"code":400,"name":"BOT_APP_SHORTNAME_INVALID","comment":"The specified bot app short name is invalid."}],"available":"user"},{"kind":"method","name":"messages.setChatWallPaper","type":"Updates","id":2415577825,"comment":"Set a custom wallpaper » in a specific private chat with another user.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"for_both","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Only for Premium users, sets the specified wallpaper for both users of the chat, without requiring confirmation from the other user."},{"name":"revert","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If we don't like the new wallpaper the other user of the chat has chosen for us using the for_both flag, we can re-set our previous wallpaper just on our side using this flag."},{"name":"peer","type":"InputPeer","comment":"The private chat where the wallpaper will be set"},{"name":"wallpaper","type":"InputWallPaper","typeModifiers":{"predicate":"flags.0"},"comment":"The wallpaper », obtained as described in the wallpaper documentation »; must not be provided when installing a wallpaper obtained from a {@link RawMessageActionSetChatWallPaper} service message (id must be provided, instead)."},{"name":"settings","type":"WallPaperSettings","typeModifiers":{"predicate":"flags.2"},"comment":"Wallpaper settings, obtained as described in the wallpaper documentation » or from {@link RawMessageActionSetChatWallPaper}.wallpaper.settings."},{"name":"id","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"If the wallpaper was obtained from a {@link RawMessageActionSetChatWallPaper} service message, must contain the ID of that message."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."},{"code":400,"name":"WALLPAPER_NOT_FOUND","comment":"The specified wallpaper could not be found."}],"available":"user"},{"kind":"method","name":"messages.searchEmojiStickerSets","type":"messages.FoundStickerSets","id":2461288780,"comment":"Search for custom emoji stickersets »","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"exclude_featured","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Exclude featured stickersets from results"},{"name":"q","type":"string","comment":"Query string"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getSavedDialogs","type":"messages.SavedDialogs","id":1401016858,"comment":"Returns the current saved dialog list, see here » for more info.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"exclude_pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Exclude pinned dialogs"},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here (top_message ID used for pagination)"},{"name":"offset_peer","type":"InputPeer","comment":"Offset peer for pagination"},{"name":"limit","type":"int","comment":"Number of list elements to be returned"},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"available":"user"},{"kind":"method","name":"messages.getSavedHistory","type":"messages.Messages","id":1033519437,"comment":"Returns saved messages » forwarded from a specific peer","arguments":[{"name":"peer","type":"InputPeer","comment":"Target peer"},{"name":"offset_id","type":"int","comment":"Only return messages starting from the specified message ID"},{"name":"offset_date","type":"int","comment":"Only return messages sent before the specified date"},{"name":"add_offset","type":"int","comment":"Number of list elements to be skipped, negative values are also accepted."},{"name":"limit","type":"int","comment":"Number of results to return"},{"name":"max_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with IDs less than max_id"},{"name":"min_id","type":"int","comment":"If a positive value was transferred, the method will return only messages with IDs more than min_id"},{"name":"hash","type":"long","comment":"Result hash"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteSavedHistory","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":1855459371,"comment":"Deletes messages forwarded from a specific peer to saved messages ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer, whose messages will be deleted from saved messages »"},{"name":"max_id","type":"int","comment":"Maximum ID of message to delete"},{"name":"min_date","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"Delete all messages newer than this UNIX timestamp"},{"name":"max_date","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Delete all messages older than this UNIX timestamp"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getPinnedSavedDialogs","type":"messages.SavedDialogs","id":3594360032,"comment":"Get pinned saved dialogs, see here » for more info.","arguments":[],"available":"user"},{"kind":"method","name":"messages.toggleSavedDialogPin","type":"Bool","id":2894183390,"comment":"Pin or unpin a saved message dialog ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to pin or unpin the dialog"},{"name":"peer","type":"InputDialogPeer","comment":"The dialog to pin"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.reorderPinnedSavedDialogs","type":"Bool","id":2339464583,"comment":"Reorder pinned saved message dialogs ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, dialogs pinned server-side but not present in the order field will be unpinned."},{"name":"order","type":"InputDialogPeer","typeModifiers":{"isVector":true},"comment":"New dialog order"}],"available":"user"},{"kind":"method","name":"messages.getSavedReactionTags","type":"messages.SavedReactionTags","id":909631579,"comment":"Fetch the full list of saved message tags created by the user.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","typeModifiers":{"predicate":"flags.0"},"comment":"If set, returns tags only used in the specified saved message dialog."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.updateSavedReactionTag","type":"Bool","id":1613331948,"comment":"Update the description of a saved message tag ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reaction","type":"Reaction","comment":"Reaction associated to the tag"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Tag description, max 12 UTF-8 characters; to remove the description call the method without setting this flag."}],"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."}],"available":"user"},{"kind":"method","name":"messages.getDefaultTagReactions","type":"messages.Reactions","id":3187225640,"comment":"Fetch a default recommended list of saved message tag reactions.","arguments":[{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getOutboxReadDate","type":"OutboxReadDate","typeModifiers":{"constructorId":1001931436},"id":2353790557,"comment":"Get the exact read date of one of our messages, sent to a private chat with another user.\n\nCan be only done for private outgoing messages not older than appConfig.pm_read_date_expire_period ».\n\nIf the peer's {@link RawUserFull}.read_dates_private flag is set, we will not be able to fetch the exact read date of messages we send to them, and a USER_PRIVACY_RESTRICTED RPC error will be emitted.
\nThe exact read date of messages might still be unavailable for other reasons, see {@link RawGlobalPrivacySettings} for more info.
\nTo set {@link RawUserFull}.read_dates_private for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.hide_read_marks flag.","arguments":[{"name":"peer","type":"InputPeer","comment":"The user to whom we sent the message."},{"name":"msg_id","type":"int","comment":"The message ID."}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_READ_YET","comment":"The specified message wasn't read yet."},{"code":400,"name":"MESSAGE_TOO_OLD","comment":"The message is too old, the requested information is not available."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."},{"code":403,"name":"YOUR_PRIVACY_RESTRICTED","comment":"You cannot fetch the read date of this message because you have disallowed other users to do so for your messages; to fix, allow other users to see your exact last online date OR purchase a Telegram Premium subscription."}],"available":"user"},{"kind":"method","name":"messages.getQuickReplies","type":"messages.QuickReplies","id":3565417128,"comment":"Fetch basic info about all existing quick reply shortcuts.","arguments":[{"name":"hash","type":"long","comment":"Hash for pagination, generated as specified here » (not the usual algorithm used for hash generation.)"}],"available":"user"},{"kind":"method","name":"messages.reorderQuickReplies","type":"Bool","id":1613961479,"comment":"Reorder quick reply shortcuts.\n\nThis will emit an {@link RawUpdateQuickReplies} update to other logged-in sessions.","arguments":[{"name":"order","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of all created quick reply shortcuts, in the desired order."}],"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"messages.checkQuickReplyShortcut","type":"Bool","id":4057005011,"comment":"Before offering the user the choice to add a message to a quick reply shortcut, to make sure that none of the limits specified here » were reached.","arguments":[{"name":"shortcut","type":"string","comment":"Shorcut name (not ID!)."}],"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"messages.editQuickReplyShortcut","type":"Bool","id":1543519471,"comment":"Rename a quick reply shortcut.
\nThis will emit an {@link RawUpdateQuickReplies} update to other logged-in sessions.","arguments":[{"name":"shortcut_id","type":"int","comment":"Shortcut ID."},{"name":"shortcut","type":"string","comment":"New shortcut name."}],"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteQuickReplyShortcut","type":"Bool","id":1019234112,"comment":"Completely delete a quick reply shortcut.
\nThis will also emit an {@link RawUpdateDeleteQuickReply} update to other logged-in sessions (and no {@link RawUpdateDeleteQuickReplyMessages} updates, even if all the messages in the shortcuts are also deleted by this method).","arguments":[{"name":"shortcut_id","type":"int","comment":"Shortcut ID"}],"throws":[{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},{"kind":"method","name":"messages.getQuickReplyMessages","type":"messages.Messages","id":2493814211,"comment":"Fetch (a subset or all) messages in a quick reply shortcut ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"shortcut_id","type":"int","comment":"Quick reply shortcut ID."},{"name":"id","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"IDs of the messages to fetch, if empty fetches all of them."},{"name":"hash","type":"long","comment":"Hash used for caching, for more info click here"}],"throws":[{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},{"kind":"method","name":"messages.sendQuickReplyMessages","type":"Updates","id":1819610593,"comment":"Send a quick reply shortcut ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer where to send the shortcut (users only, for now)."},{"name":"shortcut_id","type":"int","comment":"The ID of the quick reply shortcut to send."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Specify a subset of messages from the shortcut to send; if empty, defaults to all of them."},{"name":"random_id","type":"long","typeModifiers":{"isVector":true},"comment":"Unique client IDs required to prevent message resending, one for each message we're sending, may be empty (but not recommended)."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"messages.deleteQuickReplyMessages","type":"Updates","id":3775260944,"comment":"Delete one or more messages from a quick reply shortcut. This will also emit an {@link RawUpdateDeleteQuickReplyMessages} update.","arguments":[{"name":"shortcut_id","type":"int","comment":"Shortcut ID."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of shortcut messages to delete."}],"throws":[{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},{"kind":"method","name":"messages.toggleDialogFilterTags","type":"Bool","id":4247640649,"comment":"Enable or disable folder tags ».","arguments":[{"name":"enabled","type":"Bool","comment":"Enable or disable folder tags."}],"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"messages.getMyStickers","type":"messages.MyStickers","typeModifiers":{"constructorId":4211040925},"id":3501580796,"comment":"Fetch all stickersets » owned by the current user.","arguments":[{"name":"offset_id","type":"long","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"available":"user"},{"kind":"method","name":"messages.getEmojiStickerGroups","type":"messages.EmojiGroups","id":500711669,"comment":"Represents a list of emoji categories, to be used when choosing a sticker.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.getAvailableEffects","type":"messages.AvailableEffects","id":3735161401,"comment":"Fetch the full list of usable animated message effects ».","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"messages.editFactCheck","type":"Updates","id":92925557,"comment":"Edit/create a fact-check on a message.\n\nCan only be used by independent fact-checkers as specified by the appConfig.can_edit_factcheck configuration flag.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the message was sent"},{"name":"msg_id","type":"int","comment":"Message ID"},{"name":"text","type":"TextWithEntities","comment":"Fact-check (maximum UTF-8 length specified in appConfig.factcheck_length_limit)."}],"throws":[{"code":403,"name":"CHAT_ACTION_FORBIDDEN","comment":"You cannot execute this action."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.deleteFactCheck","type":"Updates","id":3520762892,"comment":"Delete a fact-check from a message.\n\nCan only be used by independent fact-checkers as specified by the appConfig.can_edit_factcheck configuration flag.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the message was sent."},{"name":"msg_id","type":"int","comment":"Message ID"}],"throws":[{"code":403,"name":"CHAT_ACTION_FORBIDDEN","comment":"You cannot execute this action."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.getFactCheck","type":"FactCheck","typeModifiers":{"isVector":true,"constructorId":3097230543},"id":3117270510,"comment":"Fetch one or more factchecks, see here » for the full flow.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the messages were sent."},{"name":"msg_id","type":"int","typeModifiers":{"isVector":true},"comment":"Messages that have associated {@link RawFactCheck} constructors with the need_check flag set."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"messages.requestMainWebView","type":"WebViewResult","typeModifiers":{"constructorId":1294139288},"id":3386908283,"comment":"Open a Main Mini App.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"compact","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the Main Mini App link is equal to compact."},{"name":"fullscreen","type":"true","typeModifiers":{"predicate":"flags.8"}},{"name":"peer","type":"InputPeer","comment":"Currently open chat, may be {@link RawInputPeerEmpty} if no chat is currently open."},{"name":"bot","type":"InputUser","comment":"Bot that owns the main mini app."},{"name":"start_param","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Start parameter, if opening from a Main Mini App link »."},{"name":"theme_params","type":"DataJSON","typeModifiers":{"predicate":"flags.0"},"comment":"Theme parameters »"},{"name":"platform","type":"string","comment":"Short name of the application; 0-64 English letters, digits, and underscores"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"messages.sendPaidReaction","type":"Updates","id":2648090235,"comment":"Sends one or more paid Telegram Star reactions », transferring Telegram Stars » to a channel's balance.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"The channel"},{"name":"msg_id","type":"int","comment":"The message to react to"},{"name":"count","type":"int","comment":"The number of stars to send (each will increment the reaction counter by one)."},{"name":"random_id","type":"long","comment":"Unique client message ID required to prevent message resending"},{"name":"private","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"Each post with star reactions has a leaderboard with the top senders, but users can opt out of appearing there if they prefer more privacy.
If the user explicitly chose to make their paid reaction(s) private, pass true to {@link messages.RawSendPaidReactionRequest}.private.
If the user explicitly chose to make their paid reaction(s) private, pass true to {@link messages.RawSendPaidReactionRequest}.private.
If the user did not make any explicit choice about the privacy of their paid reaction(s) (i.e. when reacting by clicking on an existing star reaction on a message), do not populate the {@link messages.RawSendPaidReactionRequest}.private flag."}],"available":"both"},{"kind":"method","name":"messages.togglePaidReactionPrivacy","type":"Bool","id":2224739223,"comment":"Changes the privacy of already sent paid reactions on a specific message.","arguments":[{"name":"peer","type":"InputPeer","comment":"The channel"},{"name":"msg_id","type":"int","comment":"The ID of the message to which we sent the paid reactions"},{"name":"private","type":"Bool","comment":"If true, makes the current anonymous in the top sender leaderboard for this message; otherwise, does the opposite."}],"available":"both"},{"kind":"method","name":"messages.getPaidReactionPrivacy","type":"Updates","id":1193563562,"comment":"Fetches an {@link RawUpdatePaidReactionPrivacy} update with the current default paid reaction privacy, see here » for more info.","arguments":[],"available":"both"},{"kind":"method","name":"messages.viewSponsoredMessage","type":"Bool","id":1731909873,"comment":"Mark a specific sponsored message » as read","arguments":[{"name":"peer","type":"InputPeer","comment":"The channel/bot where the ad is located"},{"name":"random_id","type":"bytes","comment":"The ad's unique ID."}],"available":"both"},{"kind":"method","name":"messages.clickSponsoredMessage","type":"Bool","id":252261477,"comment":"Informs the server that the user has either:","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"media","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"fullscreen","type":"true","typeModifiers":{"predicate":"flags.1"}},{"name":"peer","type":"InputPeer","comment":"The channel/bot where the ad is located"},{"name":"random_id","type":"bytes","comment":"The ad's unique ID."}],"available":"both"},{"kind":"method","name":"messages.reportSponsoredMessage","type":"channels.SponsoredMessageReportResult","id":452189112,"comment":"Report a sponsored message », see here » for more info on the full flow.","arguments":[{"name":"peer","type":"InputPeer","comment":"The channel/bot where the ad is located"},{"name":"random_id","type":"bytes","comment":"The ad's unique ID."},{"name":"option","type":"bytes","comment":"Chosen report option, initially an empty string, see here » for more info on the full flow."}],"available":"both"},{"kind":"method","name":"messages.getSponsoredMessages","type":"messages.SponsoredMessages","id":2614293561,"comment":"Get a list of sponsored messages for a peer, see here » for more info.","arguments":[{"name":"peer","type":"InputPeer","comment":"The currently open channel/bot."}],"available":"both"},{"kind":"method","name":"messages.savePreparedInlineMessage","type":"messages.BotPreparedInlineMessage","typeModifiers":{"constructorId":2395931921},"id":4062150447,"arguments":[{"name":"flags","type":"#"},{"name":"result","type":"InputBotInlineResult"},{"name":"user_id","type":"InputUser"},{"name":"peer_types","type":"InlineQueryPeerType","typeModifiers":{"predicate":"flags.0","isVector":true}}]},{"kind":"method","name":"messages.getPreparedInlineMessage","type":"messages.PreparedInlineMessage","typeModifiers":{"constructorId":4283920525},"id":2239675832,"arguments":[{"name":"bot","type":"InputUser"},{"name":"id","type":"string"}]},{"kind":"method","name":"updates.getState","type":"updates.State","typeModifiers":{"constructorId":2775329342},"id":3990128682,"comment":"Returns a current state of updates.","arguments":[],"available":"both"},{"kind":"method","name":"updates.getDifference","type":"updates.Difference","id":432207715,"comment":"Get new updates.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pts","type":"int","comment":"PTS, see updates."},{"name":"pts_limit","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"PTS limit"},{"name":"pts_total_limit","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"For fast updating: if provided and pts + pts_total_limit < remote pts, {@link updates.RawDifferenceTooLong} will be returned.
Simply tells the server to not return the difference if it is bigger than pts_total_limit
If the remote pts is too big (> ~4000000), this field will default to 1000000"},{"name":"date","type":"int","comment":"date, see updates."},{"name":"qts","type":"int","comment":"QTS, see updates."},{"name":"qts_limit","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"QTS limit"}],"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"DATE_EMPTY","comment":"Date empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PERSISTENT_TIMESTAMP_EMPTY","comment":"Persistent timestamp empty."},{"code":400,"name":"PERSISTENT_TIMESTAMP_INVALID","comment":"Persistent timestamp invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},{"kind":"method","name":"updates.getChannelDifference","type":"updates.ChannelDifference","id":51854712,"comment":"Returns the difference between the current state of updates of a certain channel and transmitted.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Set to true to skip some possibly unneeded updates and reduce server-side load"},{"name":"channel","type":"InputChannel","comment":"The channel"},{"name":"filter","type":"ChannelMessagesFilter","comment":"Messsage filter"},{"name":"pts","type":"int","comment":"Persistent timestamp (see updates)"},{"name":"limit","type":"int","comment":"How many updates to fetch, max 100000
Ordinary (non-bot) users are supposed to pass 10-100"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHANNEL_PUBLIC_GROUP_NA","comment":"channel/supergroup not available."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FROM_MESSAGE_BOT_DISABLED","comment":"Bots can't use fromMessage min constructors."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PERSISTENT_TIMESTAMP_EMPTY","comment":"Persistent timestamp empty."},{"code":400,"name":"PERSISTENT_TIMESTAMP_INVALID","comment":"Persistent timestamp invalid."},{"code":500,"name":"PERSISTENT_TIMESTAMP_OUTDATED","comment":"Channel internal replication issues, try again later (treat this like an RPC_CALL_FAIL)."},{"code":400,"name":"PINNED_DIALOGS_TOO_MUCH","comment":"Too many pinned dialogs."},{"code":400,"name":"RANGES_INVALID","comment":"Invalid range provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"photos.updateProfilePhoto","type":"photos.Photo","typeModifiers":{"constructorId":539045032},"id":166207545,"comment":"Installs a previously uploaded photo as a profile photo.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"fallback","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the chosen profile photo will be shown to users that can't display your main profile photo due to your privacy settings."},{"name":"bot","type":"InputUser","typeModifiers":{"predicate":"flags.1"},"comment":"Can contain info of a bot we own, to change the profile photo of that bot, instead of the current user."},{"name":"id","type":"InputPhoto","comment":"Input photo"}],"throws":[{"code":400,"name":"ALBUM_PHOTOS_TOO_MANY","comment":"You have uploaded too many profile photos, delete some before retrying."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_ID_INVALID","comment":"Photo ID invalid."}],"available":"both"},{"kind":"method","name":"photos.uploadProfilePhoto","type":"photos.Photo","typeModifiers":{"constructorId":539045032},"id":59286453,"comment":"Updates current user profile photo.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"fallback","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, the chosen profile photo will be shown to users that can't display your main profile photo due to your privacy settings."},{"name":"bot","type":"InputUser","typeModifiers":{"predicate":"flags.5"},"comment":"Can contain info of a bot we own, to change the profile photo of that bot, instead of the current user."},{"name":"file","type":"InputFile","typeModifiers":{"predicate":"flags.0"},"comment":"Profile photo"},{"name":"video","type":"InputFile","typeModifiers":{"predicate":"flags.1"},"comment":"Animated profile picture video"},{"name":"video_start_ts","type":"double","typeModifiers":{"predicate":"flags.2"},"comment":"Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set."},{"name":"video_emoji_markup","type":"VideoSize","typeModifiers":{"predicate":"flags.4"},"comment":"Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor."}],"throws":[{"code":400,"name":"ALBUM_PHOTOS_TOO_MANY","comment":"You have uploaded too many profile photos, delete some before retrying."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"EMOJI_MARKUP_INVALID","comment":"The specified video_emoji_markup was invalid."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"PHOTO_CROP_FILE_MISSING","comment":"Photo crop file missing."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_FILE_MISSING","comment":"Profile photo file missing."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."},{"code":400,"name":"STICKER_MIME_INVALID","comment":"The specified sticker MIME type is invalid."},{"code":400,"name":"VIDEO_FILE_INVALID","comment":"The specified video file is invalid."}],"available":"both"},{"kind":"method","name":"photos.deletePhotos","type":"long","typeModifiers":{"isVector":true},"id":2278522671,"comment":"Deletes profile photos. The method returns a list of successfully deleted photo IDs.","arguments":[{"name":"id","type":"InputPhoto","typeModifiers":{"isVector":true},"comment":"Input photos to delete"}],"available":"user"},{"kind":"method","name":"photos.getUserPhotos","type":"photos.Photos","id":2446144168,"comment":"Returns the list of user photos.","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID"},{"name":"offset","type":"int","comment":"Number of list elements to be skipped"},{"name":"max_id","type":"long","comment":"If a positive value was transferred, the method will return only photos with IDs less than the set one. This parameter is often useful when refetching file references », as in conjuction with limit=1 and offset=-1 the {@link RawPhoto} object with the id specified in max_id can be fetched."},{"name":"limit","type":"int","comment":"Number of list elements to be returned"}],"throws":[{"code":400,"name":"MAX_ID_INVALID","comment":"The provided max ID is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"photos.uploadContactProfilePhoto","type":"photos.Photo","typeModifiers":{"constructorId":539045032},"id":3779873393,"comment":"Upload a custom profile picture for a contact, or suggest a new profile picture to a contact.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"suggest","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, will send a {@link RawMessageActionSuggestProfilePhoto} service message to user_id, suggesting them to use the specified profile picture; otherwise, will set a personal profile picture for the user (only visible to the current user)."},{"name":"save","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, removes a previously set personal profile picture (does not affect suggested profile pictures, to remove them simply deleted the {@link RawMessageActionSuggestProfilePhoto} service message with {@link messages.RawDeleteMessagesRequest})."},{"name":"user_id","type":"InputUser","comment":"The contact"},{"name":"file","type":"InputFile","typeModifiers":{"predicate":"flags.0"},"comment":"Profile photo"},{"name":"video","type":"InputFile","typeModifiers":{"predicate":"flags.1"},"comment":"Animated profile picture video"},{"name":"video_start_ts","type":"double","typeModifiers":{"predicate":"flags.2"},"comment":"Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set."},{"name":"video_emoji_markup","type":"VideoSize","typeModifiers":{"predicate":"flags.5"},"comment":"Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor."}],"throws":[{"code":400,"name":"CONTACT_MISSING","comment":"The specified user is not a contact."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"upload.saveFilePart","type":"Bool","id":3003426337,"comment":"Saves a part of file for further sending to one of the methods.","arguments":[{"name":"file_id","type":"long","comment":"Random file identifier created by the client"},{"name":"file_part","type":"int","comment":"Numerical order of a part"},{"name":"bytes","type":"bytes","comment":"Binary data, content of a part"}],"throws":[{"code":400,"name":"FILE_PART_EMPTY","comment":"The provided file part is empty."},{"code":400,"name":"FILE_PART_INVALID","comment":"The file part number is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},{"kind":"method","name":"upload.getFile","type":"upload.File","id":3193124286,"comment":"Returns content of a whole file or its part.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"precise","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Disable some checks on limit and offset values, useful for example to stream videos by keyframes"},{"name":"cdn_supported","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether the current client supports CDN downloads"},{"name":"location","type":"InputFileLocation","comment":"File location"},{"name":"offset","type":"int53","comment":"Number of bytes to be skipped"},{"name":"limit","type":"int","comment":"Number of bytes to be returned"}],"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":406,"name":"FILEREF_UPGRADE_NEEDED","comment":"The client has to be updated in order to support file references."},{"code":400,"name":"FILE_ID_INVALID","comment":"The provided file id is invalid."},{"code":400,"name":"FILE_REFERENCE_EXPIRED","comment":"File reference expired, it must be refetched as described in the documentation."},{"code":420,"name":"FLOOD_PREMIUM_WAIT_%d","comment":"Please wait %d seconds before repeating the action, or purchase a Telegram Premium subscription to remove this rate limit."},{"code":400,"name":"LIMIT_INVALID","comment":"The provided limit is invalid."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"OFFSET_INVALID","comment":"The provided offset is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"upload.saveBigFilePart","type":"Bool","id":3732629309,"comment":"Saves a part of a large file (over 10 MB in size) to be later passed to one of the methods.","arguments":[{"name":"file_id","type":"long","comment":"Random file id, created by the client"},{"name":"file_part","type":"int","comment":"Part sequence number"},{"name":"file_total_parts","type":"int","comment":"Total number of parts"},{"name":"bytes","type":"bytes","comment":"Binary data, part contents"}],"throws":[{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_PART_EMPTY","comment":"The provided file part is empty."},{"code":400,"name":"FILE_PART_INVALID","comment":"The file part number is invalid."},{"code":400,"name":"FILE_PART_SIZE_CHANGED","comment":"Provided file part size has changed."},{"code":400,"name":"FILE_PART_SIZE_INVALID","comment":"The provided file part size is invalid."},{"code":400,"name":"FILE_PART_TOO_BIG","comment":"The uploaded file part is too big."}],"available":"both"},{"kind":"method","name":"upload.getWebFile","type":"upload.WebFile","typeModifiers":{"constructorId":568808380},"id":619086221,"comment":"Returns content of a web file, by proxying the request through telegram, see the webfile docs for more info.\n\nNote: the query must be sent to the DC specified in the webfile_dc_id MTProto configuration field.","arguments":[{"name":"location","type":"InputWebFileLocation","comment":"The file to download"},{"name":"offset","type":"int","comment":"Number of bytes to be skipped"},{"name":"limit","type":"int","comment":"Number of bytes to be returned"}],"throws":[{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."}],"available":"user"},{"kind":"method","name":"upload.getCdnFile","type":"upload.CdnFile","id":962554330,"comment":"Download a CDN file.","arguments":[{"name":"file_token","type":"bytes","comment":"File token"},{"name":"offset","type":"int53","comment":"Offset of chunk to download"},{"name":"limit","type":"int","comment":"Length of chunk to download"}],"throws":[{"code":400,"name":"FILE_TOKEN_INVALID","comment":"The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile."}],"available":"user"},{"kind":"method","name":"upload.reuploadCdnFile","type":"FileHash","typeModifiers":{"isVector":true,"constructorId":4087022428},"id":2603046056,"comment":"Request a reupload of a certain file to a CDN DC.","arguments":[{"name":"file_token","type":"bytes","comment":"File token"},{"name":"request_token","type":"bytes","comment":"Request token"}],"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":500,"name":"CDN_UPLOAD_TIMEOUT","comment":"A server-side timeout occurred while reuploading the file to the CDN DC."},{"code":400,"name":"FILE_TOKEN_INVALID","comment":"The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."},{"code":400,"name":"REQUEST_TOKEN_INVALID","comment":"The master DC did not accept the request_token from the CDN DC. Continue downloading the file from the master DC using upload.getFile."},{"code":400,"name":"RSA_DECRYPT_FAILED","comment":"Internal RSA decryption failed."}],"available":"both"},{"kind":"method","name":"upload.getCdnFileHashes","type":"FileHash","typeModifiers":{"isVector":true,"constructorId":4087022428},"id":2447130417,"comment":"Get SHA256 hashes for verifying downloaded CDN files","arguments":[{"name":"file_token","type":"bytes","comment":"File"},{"name":"offset","type":"int53","comment":"Offset from which to start getting hashes"}],"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":400,"name":"FILE_TOKEN_INVALID","comment":"The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile."},{"code":400,"name":"RSA_DECRYPT_FAILED","comment":"Internal RSA decryption failed."}],"available":"both"},{"kind":"method","name":"upload.getFileHashes","type":"FileHash","typeModifiers":{"isVector":true,"constructorId":4087022428},"id":2438371370,"comment":"Get SHA256 hashes for verifying downloaded files","arguments":[{"name":"location","type":"InputFileLocation","comment":"File"},{"name":"offset","type":"int53","comment":"Offset from which to get file hashes"}],"throws":[{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."}],"available":"both"},{"kind":"method","name":"help.getConfig","type":"Config","typeModifiers":{"constructorId":3424265246},"id":3304659051,"comment":"Returns current configuration, including data center configuration.","arguments":[],"throws":[{"code":400,"name":"CONNECTION_API_ID_INVALID","comment":"The provided API id is invalid."},{"code":400,"name":"CONNECTION_APP_VERSION_EMPTY","comment":"App version is empty."},{"code":400,"name":"CONNECTION_LAYER_INVALID","comment":"Layer invalid."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."}],"available":"both"},{"kind":"method","name":"help.getNearestDc","type":"NearestDc","typeModifiers":{"constructorId":2384074613},"id":531836966,"comment":"Returns info on data center nearest to the user.","arguments":[],"available":"user"},{"kind":"method","name":"help.getAppUpdate","type":"help.AppUpdate","id":1378703997,"comment":"Returns information on update availability for the current application.","arguments":[{"name":"source","type":"string","comment":"Source"}],"available":"user"},{"kind":"method","name":"help.getInviteText","type":"help.InviteText","typeModifiers":{"constructorId":415997816},"id":1295590211,"comment":"Returns localized text of a text message with an invitation.","arguments":[],"available":"user"},{"kind":"method","name":"help.getSupport","type":"help.Support","typeModifiers":{"constructorId":398898678},"id":2631862477,"comment":"Returns the support user for the \"ask a question\" feature.","arguments":[],"available":"user"},{"kind":"method","name":"help.setBotUpdatesStatus","type":"Bool","id":3961704397,"comment":"Informs the server about the number of pending bot updates if they haven't been processed for a long time; for bots only","arguments":[{"name":"pending_updates_count","type":"int","comment":"Number of pending updates"},{"name":"message","type":"string","comment":"Error message, if present"}],"throws":[{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"help.getCdnConfig","type":"CdnConfig","typeModifiers":{"constructorId":1462101002},"id":1375900482,"comment":"Get configuration for CDN file downloads.","arguments":[],"available":"both"},{"kind":"method","name":"help.getRecentMeUrls","type":"help.RecentMeUrls","typeModifiers":{"constructorId":235081943},"id":1036054804,"comment":"Get recently used t.me links.\n\nWhen installing official applications from \"Download Telegram\" buttons present in t.me pages, a referral parameter is passed to applications after installation.
\nIf, after downloading the application, the user creates a new account (instead of logging into an existing one), the referral parameter should be imported using this method, which returns the t.me pages the user recently opened, before installing Telegram.","arguments":[{"name":"referer","type":"string","comment":"Referrer"}],"available":"user"},{"kind":"method","name":"help.getTermsOfServiceUpdate","type":"help.TermsOfServiceUpdate","id":749019089,"comment":"Look for updates of telegram's terms of service","arguments":[],"available":"user"},{"kind":"method","name":"help.acceptTermsOfService","type":"Bool","id":4000511898,"comment":"Accept the new terms of service","arguments":[{"name":"id","type":"DataJSON","comment":"ID of terms of service"}],"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},{"kind":"method","name":"help.getDeepLinkInfo","type":"help.DeepLinkInfo","id":1072547679,"comment":"Get info about an unsupported deep link, see here for more info ».","arguments":[{"name":"path","type":"string","comment":"Path component of a tg: link"}],"available":"user"},{"kind":"method","name":"help.getAppConfig","type":"help.AppConfig","id":1642330196,"comment":"Get app-specific configuration, see client configuration for more info on the result.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"help.saveAppLog","type":"Bool","id":1862465352,"comment":"Saves logs of application on the server.","arguments":[{"name":"events","type":"InputAppEvent","typeModifiers":{"isVector":true},"comment":"List of input events"}],"available":"user"},{"kind":"method","name":"help.getPassportConfig","type":"help.PassportConfig","id":3328290056,"comment":"Get passport configuration","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"help.getSupportName","type":"help.SupportName","typeModifiers":{"constructorId":2349199817},"id":3546343212,"comment":"Get localized name of the telegram support user","arguments":[],"throws":[{"code":403,"name":"USER_INVALID","comment":"Invalid user provided."}],"available":"user"},{"kind":"method","name":"help.getUserInfo","type":"help.UserInfo","id":59377875,"comment":"Can only be used by TSF members to obtain internal information.","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID"}],"throws":[{"code":403,"name":"USER_INVALID","comment":"Invalid user provided."}],"available":"user"},{"kind":"method","name":"help.editUserInfo","type":"help.UserInfo","id":1723407216,"comment":"Internal use","arguments":[{"name":"user_id","type":"InputUser","comment":"User"},{"name":"message","type":"string","comment":"Message"},{"name":"entities","type":"MessageEntity","typeModifiers":{"isVector":true},"comment":"Message entities for styled text"}],"throws":[{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":403,"name":"USER_INVALID","comment":"Invalid user provided."}],"available":"user"},{"kind":"method","name":"help.getPromoData","type":"help.PromoData","id":3231151137,"comment":"Get MTProxy/Public Service Announcement information","arguments":[],"available":"user"},{"kind":"method","name":"help.hidePromoData","type":"Bool","id":505748629,"comment":"Hide MTProxy/Public Service Announcement information","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer to hide"}],"available":"user"},{"kind":"method","name":"help.dismissSuggestion","type":"Bool","id":4111317665,"comment":"Dismiss a suggestion, see here for more info ».","arguments":[{"name":"peer","type":"InputPeer","comment":"In the case of pending suggestions in {@link RawChannelFull}, the channel ID."},{"name":"suggestion","type":"string","comment":"Suggestion, see here for more info »."}],"available":"user"},{"kind":"method","name":"help.getCountriesList","type":"help.CountriesList","id":1935116200,"comment":"Get name, ISO code, localized name and phone codes/patterns of all available countries","arguments":[{"name":"lang_code","type":"string","comment":"Language code of the current user"},{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"help.getPremiumPromo","type":"help.PremiumPromo","typeModifiers":{"constructorId":1395946908},"id":3088815060,"comment":"Get Telegram Premium promotion information","arguments":[],"available":"user"},{"kind":"method","name":"help.getPeerColors","type":"help.PeerColors","id":3665884207,"comment":"Get the set of accent color palettes » that can be used for message accents.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"help.getPeerProfileColors","type":"help.PeerColors","id":2882513405,"comment":"Get the set of accent color palettes » that can be used in profile page backgrounds.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"help.getTimezonesList","type":"help.TimezonesList","id":1236468288,"comment":"Returns timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"user"},{"kind":"method","name":"channels.readHistory","type":"Bool","id":3423619383,"comment":"Mark channel/supergroup history as read","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"max_id","type":"int","comment":"ID of message up to which messages should be marked as read"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"channels.deleteMessages","type":"messages.AffectedMessages","typeModifiers":{"constructorId":2228326789},"id":2227305806,"comment":"Delete messages in a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages to delete"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"MESSAGE_DELETE_FORBIDDEN","comment":"You can't delete one of the messages you tried to delete, most likely because it is a service message."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},{"kind":"method","name":"channels.reportSpam","type":"Bool","id":4098523925,"comment":"Reports some messages from a user in a supergroup as spam; requires administrator rights in the supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup"},{"name":"participant","type":"InputPeer","comment":"Participant whose messages should be reported"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of spam messages"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"channels.getMessages","type":"messages.Messages","id":2911672867,"comment":"Get channel/supergroup messages","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"id","type":"InputMessage","typeModifiers":{"isVector":true},"comment":"IDs of messages to get"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MESSAGE_IDS_EMPTY","comment":"No message ids were provided."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"channels.getParticipants","type":"channels.ChannelParticipants","id":2010044880,"comment":"Get the participants of a supergroup/channel","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel"},{"name":"filter","type":"ChannelParticipantsFilter","comment":"Which participant types to fetch"},{"name":"offset","type":"int","comment":"Offset"},{"name":"limit","type":"int","comment":"Limit"},{"name":"hash","type":"long","comment":"Hash"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},{"kind":"method","name":"channels.getParticipant","type":"channels.ChannelParticipant","typeModifiers":{"constructorId":3753378583},"id":2695589062,"comment":"Get info about a channel/supergroup participant","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"participant","type":"InputPeer","comment":"Participant to get info about"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PARTICIPANT_ID_INVALID","comment":"The specified participant ID is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},{"kind":"method","name":"channels.getChannels","type":"messages.Chats","id":176122811,"comment":"Get info about channels/supergroups","arguments":[{"name":"id","type":"InputChannel","typeModifiers":{"isVector":true},"comment":"IDs of channels/supergroups to get info about"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},{"kind":"method","name":"channels.getFullChannel","type":"messages.ChatFull","typeModifiers":{"constructorId":3856126364},"id":141781513,"comment":"Get full info about a supergroup, gigagroup or channel","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel, supergroup or gigagroup to get info about"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHANNEL_PUBLIC_GROUP_NA","comment":"channel/supergroup not available."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},{"kind":"method","name":"channels.createChannel","type":"Updates","id":2432722695,"comment":"Create a supergroup/channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"broadcast","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to create a channel"},{"name":"megagroup","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to create a supergroup"},{"name":"for_import","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"Whether the supergroup is being created to import messages from a foreign chat service using {@link messages.RawInitHistoryImportRequest}"},{"name":"forum","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether to create a forum"},{"name":"title","type":"string","comment":"Channel title"},{"name":"about","type":"string","comment":"Channel description"},{"name":"geo_point","type":"InputGeoPoint","typeModifiers":{"predicate":"flags.2"},"comment":"Geogroup location, see here » for more info on geogroups."},{"name":"address","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"Geogroup address, see here » for more info on geogroups."},{"name":"ttl_period","type":"int","typeModifiers":{"predicate":"flags.4"},"comment":"Time-to-live of all messages that will be sent in the supergroup: once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well. You can use {@link messages.RawSetDefaultHistoryTTLRequest} to edit this value later."}],"throws":[{"code":400,"name":"ADDRESS_INVALID","comment":"The specified geopoint address is invalid."},{"code":400,"name":"CHANNELS_ADMIN_LOCATED_TOO_MUCH","comment":"The user has reached the limit of public geogroups."},{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHAT_ABOUT_TOO_LONG","comment":"Chat about too long."},{"code":500,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."},{"code":406,"name":"USER_RESTRICTED","comment":"You're spamreported, you can't create channels or chats."}],"available":"user"},{"kind":"method","name":"channels.editAdmin","type":"Updates","id":3543959810,"comment":"Modify the admin rights of a user in a supergroup/channel.","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup/channel."},{"name":"user_id","type":"InputUser","comment":"The ID of the user whose admin rights should be modified"},{"name":"admin_rights","type":"ChatAdminRights","comment":"The admin rights"},{"name":"rank","type":"string","comment":"Indicates the role (rank) of the admin in the group: just an arbitrary string"}],"throws":[{"code":400,"name":"ADMINS_TOO_MUCH","comment":"There are too many admins."},{"code":400,"name":"ADMIN_RANK_EMOJI_NOT_ALLOWED","comment":"An admin rank cannot contain emojis."},{"code":400,"name":"ADMIN_RANK_INVALID","comment":"The specified admin rank is invalid."},{"code":400,"name":"BOTS_TOO_MUCH","comment":"There are too many bots in this chat/channel."},{"code":400,"name":"BOT_CHANNELS_NA","comment":"Bots can't edit admin privileges."},{"code":400,"name":"BOT_GROUPS_BLOCKED","comment":"This bot can't be added to groups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_INVITE_REQUIRED","comment":"You do not have the rights to do this."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":406,"name":"FRESH_CHANGE_ADMINS_FORBIDDEN","comment":"You were just elected admin, you can't add or modify other admins yet."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"RIGHT_FORBIDDEN","comment":"Your admin rights do not allow you to do this."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_BLOCKED","comment":"User blocked."},{"code":403,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."},{"code":400,"name":"USER_CREATOR","comment":"For channels.editAdmin: you've tried to edit the admin rights of the owner, but you're not the owner; for channels.leaveChannel: you can't leave this channel, because you're its creator."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":403,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."},{"code":403,"name":"USER_RESTRICTED","comment":"You're spamreported, you can't create channels or chats."}],"available":"both"},{"kind":"method","name":"channels.editTitle","type":"Updates","id":1450044624,"comment":"Edit the name of a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"title","type":"string","comment":"New name"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."}],"available":"both"},{"kind":"method","name":"channels.editPhoto","type":"Updates","id":4046346185,"comment":"Change the photo of a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup whose photo should be edited"},{"name":"photo","type":"InputChatPhoto","comment":"New photo"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_REFERENCE_INVALID","comment":"The specified file reference is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."},{"code":400,"name":"STICKER_MIME_INVALID","comment":"The specified sticker MIME type is invalid."}],"available":"both"},{"kind":"method","name":"channels.checkUsername","type":"Bool","id":283557164,"comment":"Check if a username is free and can be assigned to a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel/supergroup that will assigned the specified username"},{"name":"username","type":"string","comment":"The username to check"}],"throws":[{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},{"kind":"method","name":"channels.updateUsername","type":"Bool","id":890549214,"comment":"Change or remove the username of a supergroup/channel","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel"},{"name":"username","type":"string","comment":"New username, pass an empty string to remove the username"}],"throws":[{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},{"kind":"method","name":"channels.joinChannel","type":"Updates","id":615851205,"comment":"Join a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup to join"}],"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"INVITE_HASH_EMPTY","comment":"The invite hash is empty."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_HASH_INVALID","comment":"The invite hash is invalid."},{"code":400,"name":"INVITE_REQUEST_SENT","comment":"You have successfully requested to join this chat or channel."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":400,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."}],"available":"user"},{"kind":"method","name":"channels.leaveChannel","type":"Updates","id":4164332181,"comment":"Leave a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup to leave"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHANNEL_PUBLIC_GROUP_NA","comment":"channel/supergroup not available."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"USER_CREATOR","comment":"For channels.editAdmin: you've tried to edit the admin rights of the owner, but you're not the owner; for channels.leaveChannel: you can't leave this channel, because you're its creator."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},{"kind":"method","name":"channels.inviteToChannel","type":"messages.InvitedUsers","typeModifiers":{"constructorId":2136862630},"id":3387112788,"comment":"Invite users to a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"Users to invite"}],"throws":[{"code":400,"name":"BOTS_TOO_MUCH","comment":"There are too many bots in this chat/channel."},{"code":400,"name":"BOT_GROUPS_BLOCKED","comment":"This bot can't be added to groups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"USER_BLOCKED","comment":"User blocked."},{"code":400,"name":"USER_BOT","comment":"Bots can only be admins in channels."},{"code":403,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_KICKED","comment":"This user was kicked from this supergroup/channel."},{"code":403,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."}],"available":"user"},{"kind":"method","name":"channels.deleteChannel","type":"Updates","id":3222347747,"comment":"Delete a channel/supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup to delete"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":406,"name":"CHANNEL_TOO_LARGE","comment":"Channel is too large to be deleted; this error is issued when trying to delete channels with more than 1000 members (subject to change)."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."}],"available":"user"},{"kind":"method","name":"channels.exportMessageLink","type":"ExportedMessageLink","typeModifiers":{"constructorId":1571494644},"id":3862932971,"comment":"Get link and embed info of a message in a channel/supergroup","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"grouped","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to include other grouped media (for albums)"},{"name":"thread","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to also include a thread ID, if available, inside of the link"},{"name":"channel","type":"InputChannel","comment":"Channel"},{"name":"id","type":"int","comment":"Message ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"channels.toggleSignatures","id":1099781276,"type":"Updates","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"signatures_enabled","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, enables message signatures."},{"name":"profiles_enabled","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, messages from channel admins will link to their profiles, just like for group messages: can only be set if the signatures_enabled flag is set."},{"name":"channel","type":"InputChannel","comment":"Channel"}],"comment":"Enable/disable message signatures in channels","throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},{"kind":"method","name":"channels.getAdminedPublicChannels","type":"messages.Chats","id":4172297903,"comment":"Get channels/supergroups/geogroups we're admin in. Usually called when the user exceeds the {@link RawConfig} for owned public channels/supergroups/geogroups, and the user is given the choice to remove one of their channels/supergroups/geogroups.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"by_location","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Get geogroups"},{"name":"check_limit","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set and the user has reached the limit of owned public channels/supergroups/geogroups, instead of returning the channel list one of the specified errors will be returned.
Useful to check if a new public channel can indeed be created, even before asking the user to enter a channel username to use in {@link channels.RawCheckUsernameRequest}/{@link channels.RawUpdateUsernameRequest}."},{"name":"for_personal","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Set this flag to only fetch the full list of channels that may be passed to {@link account.RawUpdatePersonalChannelRequest} to display them on our profile page."}],"throws":[{"code":400,"name":"CHANNELS_ADMIN_LOCATED_TOO_MUCH","comment":"The user has reached the limit of public geogroups."},{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."}],"available":"user"},{"kind":"method","name":"channels.editBanned","type":"Updates","id":2531708289,"comment":"Ban/unban/kick a user in a supergroup/channel.","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup/channel."},{"name":"participant","type":"InputPeer","comment":"Participant to ban"},{"name":"banned_rights","type":"ChatBannedRights","comment":"The banned rights"}],"throws":[{"code":406,"name":"BANNED_RIGHTS_INVALID","comment":"You provided some invalid flags in the banned rights."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PARTICIPANT_ID_INVALID","comment":"The specified participant ID is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ADMIN_INVALID","comment":"You're not an admin."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"channels.getAdminLog","type":"channels.AdminLogResults","typeModifiers":{"constructorId":3985307469},"id":870184064,"comment":"Get the admin log of a channel/supergroup","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"InputChannel","comment":"Channel"},{"name":"q","type":"string","comment":"Search query, can be empty"},{"name":"events_filter","type":"ChannelAdminLogEventsFilter","typeModifiers":{"predicate":"flags.0"},"comment":"Event filter"},{"name":"admins","type":"InputUser","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Only show events from these admins"},{"name":"max_id","type":"long","comment":"Maximum ID of message to return (see pagination)"},{"name":"min_id","type":"long","comment":"Minimum ID of message to return (see pagination)"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"channels.setStickers","type":"Bool","id":3935085817,"comment":"Associate a stickerset to the supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup"},{"name":"stickerset","type":"InputStickerSet","comment":"The stickerset to associate"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PARTICIPANTS_TOO_FEW","comment":"Not enough participants."},{"code":406,"name":"STICKERSET_OWNER_ANONYMOUS","comment":"Provided stickerset can't be installed as group stickerset to prevent admin deanonymization."}],"available":"both"},{"kind":"method","name":"channels.readMessageContents","type":"Bool","id":3937786936,"comment":"Mark channel/supergroup message contents as read","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of messages whose contents should be marked as read"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"channels.deleteHistory","type":"Updates","id":2611648071,"comment":"Delete the history of a supergroup","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"for_everyone","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the history should be deleted for everyone"},{"name":"channel","type":"InputChannel","comment":"Supergroup whose history must be deleted"},{"name":"max_id","type":"int","comment":"ID of message up to which the history must be deleted"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PARICIPANT_MISSING","comment":"The current user is not in the channel."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHANNEL_TOO_BIG","comment":"This channel has too many participants (>1000) to be deleted."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."}],"available":"user"},{"kind":"method","name":"channels.togglePreHistoryHidden","type":"Updates","id":3938171212,"comment":"Hide/unhide message history for new channel/supergroup users","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel/supergroup"},{"name":"enabled","type":"Bool","comment":"Hide/unhide"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_LINK_EXISTS","comment":"The chat is public, you can't hide the history to new users."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"FORUM_ENABLED","comment":"You can't execute the specified action because the group is a forum, disable forum functionality to continue."}],"available":"user"},{"kind":"method","name":"channels.getLeftChannels","type":"messages.Chats","id":2202135744,"comment":"Get a list of channels/supergroups we left, requires a takeout session, see here » for more info.","arguments":[{"name":"offset","type":"int","comment":"Offset for pagination"}],"throws":[{"code":403,"name":"TAKEOUT_REQUIRED","comment":"A takeout session needs to be initialized first, see here » for more info."}],"available":"user"},{"kind":"method","name":"channels.getGroupsForDiscussion","type":"messages.Chats","id":4124758904,"comment":"Get all groups that can be used as discussion groups.\n\nReturned basic group chats must be first upgraded to supergroups before they can be set as a discussion group.
\nTo set a returned supergroup as a discussion group, access to its old messages must be enabled using {@link channels.RawTogglePreHistoryHiddenRequest}, first.","arguments":[],"available":"user"},{"kind":"method","name":"channels.setDiscussionGroup","type":"Bool","id":1079520178,"comment":"Associate a group to a channel as discussion group for that channel","arguments":[{"name":"broadcast","type":"InputChannel","comment":"Channel"},{"name":"group","type":"InputChannel","comment":"Discussion group to associate to the channel"}],"throws":[{"code":400,"name":"BROADCAST_ID_INVALID","comment":"Broadcast ID invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"LINK_NOT_MODIFIED","comment":"Discussion link not modified."},{"code":400,"name":"MEGAGROUP_ID_INVALID","comment":"Invalid supergroup ID."},{"code":400,"name":"MEGAGROUP_PREHISTORY_HIDDEN","comment":"Group with hidden history for new members can't be set as discussion groups."}],"available":"user"},{"kind":"method","name":"channels.editCreator","type":"Updates","id":2402864415,"comment":"Transfer channel ownership","arguments":[{"name":"channel","type":"InputChannel","comment":"Channel"},{"name":"user_id","type":"InputUser","comment":"New channel owner"},{"name":"password","type":"InputCheckPasswordSRP","comment":"2FA password of account"}],"throws":[{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PASSWORD_TOO_FRESH_%d","comment":"The password was modified less than 24 hours ago, try again in %d seconds."},{"code":400,"name":"SESSION_TOO_FRESH_%d","comment":"This session was created less than 24 hours ago, try again in %d seconds."},{"code":400,"name":"SRP_ID_INVALID","comment":"Invalid SRP ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"channels.editLocation","type":"Bool","id":1491484525,"comment":"Edit location of geo group, see here » for more info on geogroups.","arguments":[{"name":"channel","type":"InputChannel","comment":"Geogroup"},{"name":"geo_point","type":"InputGeoPoint","comment":"New geolocation"},{"name":"address","type":"string","comment":"Address string"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"MEGAGROUP_GEO_REQUIRED","comment":"This method can only be invoked on a geogroup."},{"code":400,"name":"MEGAGROUP_REQUIRED","comment":"You can only use this method on a supergroup."}],"available":"user"},{"kind":"method","name":"channels.toggleSlowMode","type":"Updates","id":3990134512,"comment":"Toggle supergroup slow mode: if enabled, users will only be able to send one message every seconds seconds","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup"},{"name":"seconds","type":"int","comment":"Users will only be able to send one message every seconds seconds, 0 to disable the limitation"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"SECONDS_INVALID","comment":"Invalid duration provided."}],"available":"user"},{"kind":"method","name":"channels.getInactiveChannels","type":"messages.InactiveChats","typeModifiers":{"constructorId":2837970629},"id":300429806,"comment":"Get inactive channels and supergroups","arguments":[],"available":"user"},{"kind":"method","name":"channels.convertToGigagroup","type":"Updates","id":187239529,"comment":"Convert a supergroup to a gigagroup, when requested by channel suggestions.","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup to convert"}],"throws":[{"code":400,"name":"CHANNEL_ID_INVALID","comment":"The specified supergroup ID is invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FORUM_ENABLED","comment":"You can't execute the specified action because the group is a forum, disable forum functionality to continue."},{"code":400,"name":"PARTICIPANTS_TOO_FEW","comment":"Not enough participants."}],"available":"user"},{"kind":"method","name":"channels.getSendAs","type":"channels.SendAsPeers","typeModifiers":{"constructorId":4103516358},"id":231174382,"comment":"Obtains a list of peers that can be used to send messages in a specific group","arguments":[{"name":"peer","type":"InputPeer","comment":"The group where we intend to send messages"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"channels.deleteParticipantHistory","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":913655003,"comment":"Delete all messages sent by a specific participant of a given supergroup","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup"},{"name":"participant","type":"InputPeer","comment":"The participant whose messages should be deleted"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PARTICIPANT_ID_INVALID","comment":"The specified participant ID is invalid."}],"available":"user"},{"kind":"method","name":"channels.toggleJoinToSend","type":"Updates","id":3838547328,"comment":"Set whether all users should join a discussion group in order to comment on a post »","arguments":[{"name":"channel","type":"InputChannel","comment":"Discussion group"},{"name":"enabled","type":"Bool","comment":"Toggle"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},{"kind":"method","name":"channels.toggleJoinRequest","type":"Updates","id":1277789622,"comment":"Set whether all users should request admin approval to join the group ».","arguments":[{"name":"channel","type":"InputChannel","comment":"Group"},{"name":"enabled","type":"Bool","comment":"Toggle"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"CHAT_PUBLIC_REQUIRED","comment":"You can only enable join requests in public groups."}],"available":"user"},{"kind":"method","name":"channels.reorderUsernames","type":"Bool","id":3025988893,"comment":"Reorder active usernames","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup or channel"},{"name":"order","type":"string","typeModifiers":{"isVector":true},"comment":"The new order for active usernames. All active usernames must be specified."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},{"kind":"method","name":"channels.toggleUsername","type":"Bool","id":1358053637,"comment":"Activate or deactivate a purchased fragment.com username associated to a supergroup or channel we own.","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup or channel"},{"name":"username","type":"string","comment":"Username"},{"name":"active","type":"Bool","comment":"Whether to activate or deactivate the username"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"USERNAMES_ACTIVE_TOO_MUCH","comment":"The maximum number of active usernames was reached."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},{"kind":"method","name":"channels.deactivateAllUsernames","type":"Bool","id":170155475,"comment":"Disable all purchased usernames of a supergroup or channel","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup or channel"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.toggleForum","type":"Updates","id":2754186025,"comment":"Enable or disable forum functionality in a supergroup.","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup ID"},{"name":"enabled","type":"Bool","comment":"Enable or disable forum functionality"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_DISCUSSION_UNALLOWED","comment":"You can't enable forum topics in a discussion group linked to a channel."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},{"kind":"method","name":"channels.createForumTopic","type":"Updates","id":4094427684,"comment":"Create a forum topic; requires manage_topics rights.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"InputChannel","comment":"The forum"},{"name":"title","type":"string","comment":"Topic title (maximum UTF-8 length: 128)"},{"name":"icon_color","type":"int","typeModifiers":{"predicate":"flags.0"},"comment":"If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F."},{"name":"icon_emoji_id","type":"long","typeModifiers":{"predicate":"flags.3"},"comment":"ID of the custom emoji used as topic icon. Telegram Premium users can use any custom emoji, other users can only use the custom emojis contained in the {@link RawInputStickerSetEmojiDefaultTopicIcons} emoji pack."},{"name":"random_id","type":"long","comment":"Unique client message ID to prevent duplicate sending of the same event"},{"name":"send_as","type":"InputPeer","typeModifiers":{"predicate":"flags.2"},"comment":"Create the topic as the specified peer"}],"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"TOPIC_TITLE_EMPTY","comment":"The specified topic title is empty."}],"available":"both"},{"kind":"method","name":"channels.getForumTopics","type":"messages.ForumTopics","typeModifiers":{"constructorId":913709011},"id":233136337,"comment":"Get topics of a forum","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"InputChannel","comment":"Supergroup"},{"name":"q","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Search query"},{"name":"offset_date","type":"int","comment":"Offsets for pagination, for more info click here, date of the last message of the last found topic. Use 0 or any date in the future to get results from the last topic."},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here, ID of the last message of the last found topic (or initially 0)."},{"name":"offset_topic","type":"int","comment":"Offsets for pagination, for more info click here, ID of the last found topic (or initially 0)."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination. For optimal performance, the number of returned topics is chosen by the server and can be smaller than the specified limit."}],"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},{"kind":"method","name":"channels.getForumTopicsByID","type":"messages.ForumTopics","typeModifiers":{"constructorId":913709011},"id":2961383097,"comment":"Get forum topics by their ID","arguments":[{"name":"channel","type":"InputChannel","comment":"Forum"},{"name":"topics","type":"int","typeModifiers":{"isVector":true},"comment":"Topic IDs"}],"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"TOPICS_EMPTY","comment":"You specified no topic IDs."}],"available":"user"},{"kind":"method","name":"channels.editForumTopic","type":"Updates","id":4108296581,"comment":"Edit forum topic; requires manage_topics rights.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"InputChannel","comment":"Supergroup"},{"name":"topic_id","type":"int","comment":"Topic ID"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If present, will update the topic title (maximum UTF-8 length: 128)."},{"name":"icon_emoji_id","type":"long","typeModifiers":{"predicate":"flags.1"},"comment":"If present, updates the custom emoji used as topic icon. Telegram Premium users can use any custom emoji, other users can only use the custom emojis contained in the {@link RawInputStickerSetEmojiDefaultTopicIcons} emoji pack. Pass 0 to switch to the fallback topic icon."},{"name":"closed","type":"Bool","typeModifiers":{"predicate":"flags.2"},"comment":"If present, will update the open/closed status of the topic."},{"name":"hidden","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"If present, will hide/unhide the topic (only valid for the \"General\" topic, id=1)."}],"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"GENERAL_MODIFY_ICON_FORBIDDEN","comment":"You can't modify the icon of the \"General\" topic."},{"code":400,"name":"TOPIC_CLOSE_SEPARATELY","comment":"The close flag cannot be provided together with any of the other flags."},{"code":400,"name":"TOPIC_HIDE_SEPARATELY","comment":"The hide flag cannot be provided together with any of the other flags."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."},{"code":400,"name":"TOPIC_NOT_MODIFIED","comment":"The updated topic info is equal to the current topic info, nothing was changed."}],"available":"both"},{"kind":"method","name":"channels.updatePinnedForumTopic","type":"Updates","id":1814925350,"comment":"Pin or unpin forum topics","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup ID"},{"name":"topic_id","type":"int","comment":"Forum topic ID"},{"name":"pinned","type":"Bool","comment":"Whether to pin or unpin the topic"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"user"},{"kind":"method","name":"channels.deleteTopicHistory","type":"messages.AffectedHistory","typeModifiers":{"constructorId":3025955281},"id":876830509,"comment":"Delete message history of a forum topic","arguments":[{"name":"channel","type":"InputChannel","comment":"Forum"},{"name":"top_msg_id","type":"int","comment":"Topic ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"both"},{"kind":"method","name":"channels.reorderPinnedForumTopics","type":"Updates","id":693150095,"comment":"Reorder pinned forum topics","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"force","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If not set, the order of only the topics present both server-side and in order will be changed (i.e. mentioning topics not pinned server-side in order will not pin them, and not mentioning topics pinned server-side will not unpin them).
If set, the entire server-side pinned topic list will be replaced with order (i.e. mentioning topics not pinned server-side in order will pin them, and not mentioning topics pinned server-side will unpin them)"},{"name":"channel","type":"InputChannel","comment":"Supergroup ID"},{"name":"order","type":"int","typeModifiers":{"isVector":true},"comment":"Topic IDs »"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.toggleAntiSpam","type":"Updates","id":1760814315,"comment":"Enable or disable the native antispam system.","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup ID. The specified supergroup must have at least telegram_antispam_group_size_min members to enable antispam functionality, as specified by the client configuration parameters."},{"name":"enabled","type":"Bool","comment":"Enable or disable the native antispam system."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},{"kind":"method","name":"channels.reportAntiSpamFalsePositive","type":"Bool","id":2823857811,"comment":"Report a native antispam false positive","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup ID"},{"name":"msg_id","type":"int","comment":"Message ID that was mistakenly deleted by the native antispam system, taken from the admin log"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.toggleParticipantsHidden","type":"Updates","id":1785624660,"comment":"Hide or display the participants list in a supergroup.\n\nThe supergroup must have at least hidden_members_group_size_min participants in order to use this method, as specified by the client configuration parameters ».","arguments":[{"name":"channel","type":"InputChannel","comment":"Supergroup ID"},{"name":"enabled","type":"Bool","comment":"If true, will hide the participants list; otherwise will unhide it."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PARTICIPANTS_TOO_FEW","comment":"Not enough participants."}],"available":"user"},{"kind":"method","name":"channels.updateColor","type":"Updates","id":3635033713,"comment":"Update the accent color and background custom emoji » of a channel.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"for_profile","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to change the accent color emoji pattern of the profile page; otherwise, the accent color and emoji pattern of messages will be changed.
Channels can change both message and profile palettes; supergroups can only change the profile palette, of course after reaching the appropriate boost level."},{"name":"channel","type":"InputChannel","comment":"Channel whose accent color should be changed."},{"name":"color","type":"int","typeModifiers":{"predicate":"flags.2"},"comment":"ID of the accent color palette » to use (not RGB24, see here » for more info); if not set, the default palette is used."},{"name":"background_emoji_id","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"Custom emoji ID used in the accent color pattern."}],"throws":[{"code":400,"name":"BOOSTS_REQUIRED","comment":"The specified channel must first be boosted by its users in order to perform this action."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.toggleViewForumAsMessages","type":"Updates","id":2537077525,"comment":"Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client: this setting only affects the current account, and is synced to other logged in sessions using this method.\n\nInvoking this method will update the value of the view_forum_as_messages flag of {@link RawChannelFull} or {@link RawDialog} and emit an {@link RawUpdateChannelViewForumAsMessages}.","arguments":[{"name":"channel","type":"InputChannel","comment":"The forum"},{"name":"enabled","type":"Bool","comment":"The new value of the view_forum_as_messages flag."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.getChannelRecommendations","type":"messages.Chats","id":631707458,"comment":"Obtain a list of similarly themed public channels, selected based on similarities in their subscriber bases.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"channel","type":"InputChannel","typeModifiers":{"predicate":"flags.0"},"comment":"The method will return channels related to the passed channel. If not set, the method will returns channels related to channels the user has joined."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},{"kind":"method","name":"channels.updateEmojiStatus","type":"Updates","id":4040418984,"comment":"Set an emoji status for a channel or supergroup.","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel/supergroup, must have at least channel_emoji_status_level_min/group_emoji_status_level_min boosts."},{"name":"emoji_status","type":"EmojiStatus","comment":"Emoji status to set"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.setBoostsToUnblockRestrictions","type":"Updates","id":2906234094,"comment":"Admins with {@link RawChatAdminRights} may allow users that apply a certain number of booosts » to the group to bypass {@link channels.RawToggleSlowModeRequest} and other » supergroup restrictions, see here » for more info.","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup."},{"name":"boosts","type":"int","comment":"The number of required boosts (1-8, 0 to disable)."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.setEmojiStickers","type":"Bool","id":1020866743,"comment":"Set a custom emoji stickerset for supergroups. Only usable after reaching at least the boost level » specified in the group_emoji_stickers_level_min » config parameter.","arguments":[{"name":"channel","type":"InputChannel","comment":"The supergroup"},{"name":"stickerset","type":"InputStickerSet","comment":"The custom emoji stickerset to associate to the supergroup"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.restrictSponsoredMessages","type":"Updates","id":2598966553,"comment":"Disable ads on the specified channel, for all users.\n\nAvailable only after reaching at least the boost level » specified in the channel_restrict_sponsored_level_min » config parameter.","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel."},{"name":"restricted","type":"Bool","comment":"Whether to disable or re-enable ads."}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.searchPosts","type":"messages.Messages","id":3516897403,"comment":"Globally search for posts from public channels » (including those we aren't a member of) containing a specific hashtag.","arguments":[{"name":"hashtag","type":"string","comment":"The hashtag to search, without the # character."},{"name":"offset_rate","type":"int","comment":"Initially 0, then set to the {@link messages.RawMessagesSlice}"},{"name":"offset_peer","type":"InputPeer","comment":"Offsets for pagination, for more info click here"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"available":"user"},{"kind":"method","name":"bots.sendCustomRequest","type":"DataJSON","typeModifiers":{"constructorId":2104790276},"id":2854709741,"comment":"Sends a custom request; for bots only","arguments":[{"name":"custom_method","type":"string","comment":"The method name"},{"name":"params","type":"DataJSON","comment":"JSON-serialized method parameters"}],"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."},{"code":400,"name":"METHOD_INVALID","comment":"The specified method is invalid."},{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.answerWebhookJSONQuery","type":"Bool","id":3860938573,"comment":"Answers a custom query; for bots only","arguments":[{"name":"query_id","type":"long","comment":"Identifier of a custom query"},{"name":"data","type":"DataJSON","comment":"JSON-serialized answer to the query"}],"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."},{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.setBotCommands","type":"Bool","id":85399130,"comment":"Set bot command list","arguments":[{"name":"scope","type":"BotCommandScope","comment":"Command scope"},{"name":"lang_code","type":"string","comment":"Language code"},{"name":"commands","type":"BotCommand","typeModifiers":{"isVector":true},"comment":"Bot commands"}],"throws":[{"code":400,"name":"BOT_COMMAND_DESCRIPTION_INVALID","comment":"The specified command description is invalid."},{"code":400,"name":"BOT_COMMAND_INVALID","comment":"The specified command is invalid."},{"code":400,"name":"LANG_CODE_INVALID","comment":"The specified language code is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"bot"},{"kind":"method","name":"bots.resetBotCommands","type":"Bool","id":1032708345,"comment":"Clear bot commands for the specified bot scope and language code","arguments":[{"name":"scope","type":"BotCommandScope","comment":"Command scope"},{"name":"lang_code","type":"string","comment":"Language code"}],"throws":[{"code":400,"name":"LANG_CODE_INVALID","comment":"The specified language code is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.getBotCommands","type":"BotCommand","typeModifiers":{"isVector":true,"constructorId":3262826695},"id":3813412310,"comment":"Obtain a list of bot commands for the specified bot scope and language code","arguments":[{"name":"scope","type":"BotCommandScope","comment":"Command scope"},{"name":"lang_code","type":"string","comment":"Language code"}],"throws":[{"code":400,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.setBotMenuButton","type":"Bool","id":1157944655,"comment":"Sets the menu button action » for a given user or for all users","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID"},{"name":"button","type":"BotMenuButton","comment":"Bot menu button action"}],"throws":[{"code":400,"name":"BUTTON_TEXT_INVALID","comment":"The specified button text is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.getBotMenuButton","type":"BotMenuButton","id":2623597352,"comment":"Gets the menu button action for a given user or for all users, previously set using {@link bots.RawSetBotMenuButtonRequest}; users can see this information in the {@link RawBotInfo} constructor.","arguments":[{"name":"user_id","type":"InputUser","comment":"User ID or empty for the default menu button."}],"throws":[{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.setBotBroadcastDefaultAdminRights","type":"Bool","id":2021942497,"comment":"Set the default suggested admin rights for bots being added as admins to channels, see here for more info on how to handle them ».","arguments":[{"name":"admin_rights","type":"ChatAdminRights","comment":"Admin rights"}],"throws":[{"code":400,"name":"RIGHTS_NOT_MODIFIED","comment":"The new admin rights are equal to the old rights, no change was made."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.setBotGroupDefaultAdminRights","type":"Bool","id":2455685610,"comment":"Set the default suggested admin rights for bots being added as admins to groups, see here for more info on how to handle them ».","arguments":[{"name":"admin_rights","type":"ChatAdminRights","comment":"Admin rights"}],"throws":[{"code":400,"name":"RIGHTS_NOT_MODIFIED","comment":"The new admin rights are equal to the old rights, no change was made."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},{"kind":"method","name":"bots.setBotInfo","type":"Bool","id":282013987,"comment":"Set localized name, about text and description of a bot (or of the current account, if called by a bot).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bot","type":"InputUser","typeModifiers":{"predicate":"flags.2"},"comment":"If called by a user, must contain the peer of a bot we own."},{"name":"lang_code","type":"string","comment":"Language code, if left empty update the fallback about text and description"},{"name":"name","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"New bot name"},{"name":"about","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"New about text"},{"name":"description","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"New description"}],"throws":[{"code":400,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."}],"available":"both"},{"kind":"method","name":"bots.getBotInfo","type":"bots.BotInfo","typeModifiers":{"constructorId":3903288752},"id":3705214205,"comment":"Get localized name, about text and description of a bot (or of the current account, if called by a bot).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"bot","type":"InputUser","typeModifiers":{"predicate":"flags.0"},"comment":"If called by a user, must contain the peer of a bot we own."},{"name":"lang_code","type":"string","comment":"Language code, if left empty this method will return the fallback about text and description."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"LANG_CODE_INVALID","comment":"The specified language code is invalid."},{"code":400,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."}],"available":"both"},{"kind":"method","name":"bots.reorderUsernames","type":"Bool","id":2533994946,"comment":"Reorder usernames associated to a bot we own.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot"},{"name":"order","type":"string","typeModifiers":{"isVector":true},"comment":"The new order for active usernames. All active usernames must be specified."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},{"kind":"method","name":"bots.toggleUsername","type":"Bool","id":87861619,"comment":"Activate or deactivate a purchased fragment.com username associated to a bot we own.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot"},{"name":"username","type":"string","comment":"Username"},{"name":"active","type":"Bool","comment":"Whether to activate or deactivate it"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},{"kind":"method","name":"bots.canSendMessage","type":"Bool","id":324662502,"comment":"Check whether the specified bot can send us messages","arguments":[{"name":"bot","type":"InputUser","comment":"The bot"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.allowSendMessage","type":"Updates","id":4046644207,"comment":"Allow the specified bot to send us messages","arguments":[{"name":"bot","type":"InputUser","comment":"The bot"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.invokeWebViewCustomMethod","type":"DataJSON","typeModifiers":{"constructorId":2104790276},"id":142591463,"comment":"Send a custom request from a mini bot app, triggered by a web_app_invoke_custom_method event ».\n\nThe response should be sent using a custom_method_invoked event, see here » for more info on the flow.","arguments":[{"name":"bot","type":"InputUser","comment":"Identifier of the bot associated to the mini bot app"},{"name":"custom_method","type":"string","comment":"Identifier of the custom method to invoke"},{"name":"params","type":"DataJSON","comment":"Method parameters"}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},{"kind":"method","name":"bots.getPopularAppBots","type":"bots.PopularAppBots","typeModifiers":{"constructorId":428978491},"id":3260088722,"comment":"Fetch popular Main Mini Apps, to be used in the apps tab of global search ».","arguments":[{"name":"offset","type":"string","comment":"Offset for pagination, initially an empty string, then re-use the next_offset returned by the previous query."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"available":"user"},{"kind":"method","name":"bots.addPreviewMedia","type":"BotPreviewMedia","typeModifiers":{"constructorId":602479523},"id":397326170,"comment":"Add a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."},{"name":"lang_code","type":"string","comment":"ISO 639-1 language code, indicating the localization of the preview to add."},{"name":"media","type":"InputMedia","comment":"The photo/video preview, uploaded using {@link messages.RawUploadMediaRequest}."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.editPreviewMedia","type":"BotPreviewMedia","typeModifiers":{"constructorId":602479523},"id":2233819247,"comment":"Edit a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."},{"name":"lang_code","type":"string","comment":"ISO 639-1 language code, indicating the localization of the preview to edit."},{"name":"media","type":"InputMedia","comment":"The photo/video preview to replace, previously fetched as specified here »."},{"name":"new_media","type":"InputMedia","comment":"The new photo/video preview, uploaded using {@link messages.RawUploadMediaRequest}."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.deletePreviewMedia","type":"Bool","id":755054003,"comment":"Delete a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."},{"name":"lang_code","type":"string","comment":"ISO 639-1 language code, indicating the localization of the preview to delete."},{"name":"media","type":"InputMedia","typeModifiers":{"isVector":true},"comment":"The photo/video preview to delete, previously fetched as specified here »."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.reorderPreviewMedias","type":"Bool","id":3056071594,"comment":"Reorder a main mini app previews, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."},{"name":"lang_code","type":"string","comment":"ISO 639-1 language code, indicating the localization of the previews to reorder."},{"name":"order","type":"InputMedia","typeModifiers":{"isVector":true},"comment":"New order of the previews."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.getPreviewInfo","type":"bots.PreviewInfo","typeModifiers":{"constructorId":212278628},"id":1111143341,"comment":"Bot owners only, fetch main mini app preview information, see here » for more info.\n\nNote: technically non-owners may also invoke this method, but it will always behave exactly as {@link bots.RawGetPreviewMediasRequest}, returning only previews for the current language and an empty lang_codes array, regardless of the passed lang_code, so please only use {@link bots.RawGetPreviewMediasRequest} if you're not the owner of the bot.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."},{"name":"lang_code","type":"string","comment":"Fetch previews for the specified ISO 639-1 language code."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.getPreviewMedias","type":"BotPreviewMedia","typeModifiers":{"isVector":true,"constructorId":602479523},"id":2728745293,"comment":"Fetch main mini app previews, see here » for more info.","arguments":[{"name":"bot","type":"InputUser","comment":"The bot that owns the Main Mini App."}],"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},{"kind":"method","name":"bots.updateUserEmojiStatus","type":"Bool","id":3986632901,"arguments":[{"name":"user_id","type":"InputUser"},{"name":"emoji_status","type":"EmojiStatus"}]},{"kind":"method","name":"bots.toggleUserEmojiStatusPermission","type":"Bool","id":115237778,"arguments":[{"name":"bot","type":"InputUser"},{"name":"enabled","type":"Bool"}]},{"kind":"method","name":"bots.checkDownloadFileParams","type":"Bool","id":1342666121,"arguments":[{"name":"bot","type":"InputUser"},{"name":"file_name","type":"string"},{"name":"url","type":"string"}]},{"kind":"method","name":"payments.getPaymentForm","type":"payments.PaymentForm","id":924093883,"comment":"Get a payment form","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"invoice","type":"InputInvoice","comment":"Invoice"},{"name":"theme_params","type":"DataJSON","typeModifiers":{"predicate":"flags.0"},"comment":"A JSON object with the following keys, containing color theme information (integers, RGB24) to pass to the payment provider, to apply in eventual verification pages:
bg_color - Background color
text_color - Text color
hint_color - Hint text color
link_color - Link color
button_color - Button color
button_text_color - Button text color"}],"throws":[{"code":400,"name":"BOOST_PEER_INVALID","comment":"The specified boost_peer is invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SLUG_INVALID","comment":"The specified invoice slug is invalid."},{"code":400,"name":"UNTIL_DATE_INVALID","comment":"Invalid until date provided."}],"available":"user"},{"kind":"method","name":"payments.getPaymentReceipt","type":"payments.PaymentReceipt","id":611897804,"comment":"Get payment receipt","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer where the payment receipt was sent"},{"name":"msg_id","type":"int","comment":"Message ID of receipt"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."}],"available":"user"},{"kind":"method","name":"payments.validateRequestedInfo","type":"payments.ValidatedRequestedInfo","typeModifiers":{"constructorId":3510966403},"id":3066622251,"comment":"Submit requested order information for validation","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"save","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Save order information to re-use it for future orders"},{"name":"invoice","type":"InputInvoice","comment":"Invoice"},{"name":"info","type":"PaymentRequestedInfo","comment":"Requested order information"}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.sendPaymentForm","type":"payments.PaymentResult","id":755192367,"comment":"Send compiled payment form","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"form_id","type":"long","comment":"Form ID"},{"name":"invoice","type":"InputInvoice","comment":"Invoice"},{"name":"requested_info_id","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"ID of saved and validated {@link payments.RawValidatedRequestedInfo}"},{"name":"shipping_option_id","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Chosen shipping option ID"},{"name":"credentials","type":"InputPaymentCredentials","comment":"Payment credentials"},{"name":"tip_amount","type":"long","typeModifiers":{"predicate":"flags.2"},"comment":"Tip, in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}],"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getSavedInfo","type":"payments.SavedInfo","typeModifiers":{"constructorId":4220511292},"id":578650699,"comment":"Get saved payment information","arguments":[],"available":"user"},{"kind":"method","name":"payments.clearSavedInfo","type":"Bool","id":3627905217,"comment":"Clear saved payment information","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"credentials","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Remove saved payment credentials"},{"name":"info","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Clear the last order settings saved by the user"}],"available":"user"},{"kind":"method","name":"payments.getBankCardData","type":"payments.BankCardData","typeModifiers":{"constructorId":1042605427},"id":779736953,"comment":"Get info about a credit card","arguments":[{"name":"number","type":"string","comment":"Credit card number"}],"throws":[{"code":400,"name":"BANK_CARD_NUMBER_INVALID","comment":"The specified card number is invalid."}],"available":"user"},{"kind":"method","name":"payments.exportInvoice","type":"payments.ExportedInvoice","typeModifiers":{"constructorId":2932919257},"id":261206117,"comment":"Generate an invoice deep link","arguments":[{"name":"invoice_media","type":"InputMedia","comment":"Invoice"}],"throws":[{"code":400,"name":"CURRENCY_TOTAL_AMOUNT_INVALID","comment":"The total amount of all prices is invalid."},{"code":400,"name":"INVOICE_PAYLOAD_INVALID","comment":"The specified invoice payload is invalid."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"PAYMENT_PROVIDER_INVALID","comment":"The specified payment provider is invalid."}],"available":"both"},{"kind":"method","name":"payments.assignAppStoreTransaction","type":"Updates","id":2163045501,"comment":"Informs server about a purchase made through the App Store: for official applications only.","arguments":[{"name":"receipt","type":"bytes","comment":"Receipt"},{"name":"purpose","type":"InputStorePaymentPurpose","comment":"Payment purpose"}],"throws":[{"code":400,"name":"RECEIPT_EMPTY","comment":"The specified receipt is empty."}],"available":"user"},{"kind":"method","name":"payments.assignPlayMarketTransaction","type":"Updates","id":3757920467,"comment":"Informs server about a purchase made through the Play Store: for official applications only.","arguments":[{"name":"receipt","type":"DataJSON","comment":"Receipt"},{"name":"purpose","type":"InputStorePaymentPurpose","comment":"Payment purpose"}],"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},{"kind":"method","name":"payments.canPurchasePremium","type":"Bool","id":2680266422,"comment":"Checks whether Telegram Premium purchase is possible. Must be called before in-store Premium purchase, official apps only.","arguments":[{"name":"purpose","type":"InputStorePaymentPurpose","comment":"Payment purpose"}],"throws":[{"code":406,"name":"PREMIUM_CURRENTLY_UNAVAILABLE","comment":"You cannot currently purchase a Premium subscription."}],"available":"user"},{"kind":"method","name":"payments.getPremiumGiftCodeOptions","type":"PremiumGiftCodeOption","typeModifiers":{"isVector":true,"constructorId":629052971},"id":660060756,"comment":"Obtain a list of Telegram Premium giveaway/gift code » options.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"boost_peer","type":"InputPeer","typeModifiers":{"predicate":"flags.0"},"comment":"The channel that will start the giveaway"}],"available":"user"},{"kind":"method","name":"payments.checkGiftCode","type":"payments.CheckedGiftCode","typeModifiers":{"constructorId":675942550},"id":2387719361,"comment":"Obtain information about a Telegram Premium giftcode »","arguments":[{"name":"slug","type":"string","comment":"The giftcode to check"}],"throws":[{"code":400,"name":"GIFT_SLUG_EXPIRED","comment":"The specified gift slug has expired."},{"code":400,"name":"GIFT_SLUG_INVALID","comment":"The specified slug is invalid."}],"available":"user"},{"kind":"method","name":"payments.applyGiftCode","type":"Updates","id":4142032980,"comment":"Apply a Telegram Premium giftcode »","arguments":[{"name":"slug","type":"string","comment":"The code to apply"}],"throws":[{"code":400,"name":"GIFT_SLUG_EXPIRED","comment":"The specified gift slug has expired."},{"code":400,"name":"GIFT_SLUG_INVALID","comment":"The specified slug is invalid."},{"code":420,"name":"PREMIUM_SUB_ACTIVE_UNTIL_%d","comment":"You already have a premium subscription active until unixtime %d ."}],"available":"user"},{"kind":"method","name":"payments.getGiveawayInfo","type":"payments.GiveawayInfo","id":4095972389,"comment":"Obtain information about a Telegram Premium giveaway ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer where the giveaway was posted."},{"name":"msg_id","type":"int","comment":"Message ID of the {@link RawMessageActionGiveawayLaunch} service message"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.launchPrepaidGiveaway","type":"Updates","id":1609928480,"comment":"Launch a prepaid giveaway ».","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer where to launch the giveaway."},{"name":"giveaway_id","type":"long","comment":"The prepaid giveaway ID."},{"name":"purpose","type":"InputStorePaymentPurpose","comment":"Giveway parameters"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getStarsTopupOptions","type":"StarsTopupOption","typeModifiers":{"isVector":true,"constructorId":198776256},"id":3222194131,"comment":"Obtain a list of Telegram Stars topup options » as {@link RawStarsTopupOption} constructors.","arguments":[],"available":"user"},{"kind":"method","name":"payments.getStarsStatus","type":"payments.StarsStatus","typeModifiers":{"constructorId":3153736044},"id":273665959,"comment":"Get the current Telegram Stars balance of the current account (with peer={@link RawInputPeerSelf}), or the stars balance of the bot specified in peer.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer of which to get the balance."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getStarsTransactions","id":1775912279,"type":"payments.StarsStatus","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"inbound","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, fetches only incoming transactions."},{"name":"outbound","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If set, fetches only outgoing transactions."},{"name":"ascending","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Return transactions in ascending order by date (instead of descending order by date)."},{"name":"subscription_id","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"If set, fetches only transactions for the specified Telegram Star subscription »."},{"name":"peer","type":"InputPeer","comment":"Fetch the transaction history of the peer ({@link RawInputPeerSelf} or a bot we own)."},{"name":"offset","type":"string","comment":"Offset for pagination, obtained from the returned next_offset, initially an empty string »."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"typeModifiers":{"constructorId":3153736044},"comment":"Fetch Telegram Stars transactions.\n\nThe inbound and outbound flags are mutually exclusive: if none of the two are set, both incoming and outgoing transactions are fetched.","throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"payments.sendStarsForm","id":2040056084,"type":"payments.PaymentResult","arguments":[{"name":"form_id","type":"long","comment":"Payment form ID"},{"name":"invoice","type":"InputInvoice","comment":"Invoice"}],"comment":"Make a payment using Telegram Stars, see here » for more info.","throws":[{"code":400,"name":"BALANCE_TOO_LOW","comment":"The transaction cannot be completed because the current Telegram Stars balance is too low."},{"code":400,"name":"FORM_EXPIRED","comment":"The form was generated more than 10 minutes ago and has expired, please re-generate it using {@link payments.RawGetPaymentFormRequest} and pass the new form_id."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.refundStarsCharge","type":"Updates","id":632196938,"comment":"Refund a Telegram Stars transaction, see here » for more info.","arguments":[{"name":"user_id","type":"InputUser","comment":"User to refund."},{"name":"charge_id","type":"string","comment":"Transaction ID."}],"throws":[{"code":400,"name":"CHARGE_ALREADY_REFUNDED","comment":"The transaction was already refunded."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"bot"},{"kind":"method","name":"payments.getStarsRevenueStats","type":"payments.StarsRevenueStats","typeModifiers":{"constructorId":3375085371},"id":3642751702,"comment":"Get Telegram Star revenue statistics ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable dark theme for graph colors"},{"name":"peer","type":"InputPeer","comment":"Get statistics for the specified bot, channel or ourselves ({@link RawInputPeerSelf})."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getStarsRevenueWithdrawalUrl","type":"payments.StarsRevenueWithdrawalUrl","typeModifiers":{"constructorId":497778871},"id":331081907,"comment":"Withdraw funds from a channel or bot's star balance ».","arguments":[{"name":"peer","type":"InputPeer","comment":"Channel or bot from which to withdraw funds."},{"name":"stars","type":"long","comment":"Amount of stars to withdraw."},{"name":"password","type":"InputCheckPasswordSRP","comment":"2FA password, see here » for more info."}],"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PASSWORD_TOO_FRESH_%d","comment":"The password was modified less than 24 hours ago, try again in %d seconds."}],"available":"user"},{"kind":"method","name":"payments.getStarsRevenueAdsAccountUrl","type":"payments.StarsRevenueAdsAccountUrl","typeModifiers":{"constructorId":961445665},"id":3520589765,"comment":"Returns a URL for a Telegram Ad platform account that can be used to set up advertisements for channel/bot in peer, paid using the Telegram Stars owned by the specified peer, see here » for more info.","arguments":[{"name":"peer","type":"InputPeer","comment":"Channel or bot that owns the stars."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getStarsTransactionsByID","type":"payments.StarsStatus","typeModifiers":{"constructorId":3153736044},"id":662973742,"comment":"Obtain info about Telegram Star transactions » using specific transaction IDs.","arguments":[{"name":"peer","type":"InputPeer","comment":"Channel or bot."},{"name":"id","type":"InputStarsTransaction","typeModifiers":{"isVector":true},"comment":"Transaction IDs."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"payments.getStarsGiftOptions","type":"StarsGiftOption","typeModifiers":{"isVector":true,"constructorId":1577421297},"id":3553192904,"comment":"Obtain a list of Telegram Stars gift options » as {@link RawStarsGiftOption} constructors.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"user_id","type":"InputUser","typeModifiers":{"predicate":"flags.0"},"comment":"Receiver of the gift (optional)."}],"available":"user"},{"kind":"method","name":"payments.getStarsSubscriptions","type":"payments.StarsStatus","typeModifiers":{"constructorId":3153736044},"id":52761285,"comment":"Obtain a list of active, expired or cancelled Telegram Star subscriptions ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"missing_balance","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to return only expired subscriptions due to an excessively low Telegram Star balance."},{"name":"peer","type":"InputPeer","comment":"Always pass {@link RawInputPeerSelf}."},{"name":"offset","type":"string","comment":"Offset for pagination, taken from {@link payments.RawStarsStatus}."}],"available":"both"},{"kind":"method","name":"payments.changeStarsSubscription","type":"Bool","id":3346466936,"comment":"Activate or deactivate a Telegram Star subscription ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Always pass {@link RawInputPeerSelf}."},{"name":"subscription_id","type":"string","comment":"ID of the subscription."},{"name":"canceled","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to cancel or reactivate the subscription."}],"available":"both"},{"kind":"method","name":"payments.fulfillStarsSubscription","type":"Bool","id":3428576179,"comment":"Re-join a private channel associated to an active Telegram Star subscription ».","arguments":[{"name":"peer","type":"InputPeer","comment":"Always pass {@link RawInputPeerSelf}."},{"name":"subscription_id","type":"string","comment":"ID of the subscription."}],"available":"both"},{"kind":"method","name":"payments.getStarsGiveawayOptions","type":"StarsGiveawayOption","typeModifiers":{"isVector":true,"constructorId":2496562474},"id":3172924734,"comment":"Fetch a list of star giveaway options ».","arguments":[],"available":"both"},{"kind":"method","name":"payments.getStarGifts","type":"payments.StarGifts","id":3293984144,"comment":"Get a list of available gifts, see here » for more info.","arguments":[{"name":"hash","type":"int","comment":"Hash used for caching, for more info click here."}],"available":"both"},{"kind":"method","name":"payments.getUserStarGifts","type":"payments.UserStarGifts","typeModifiers":{"constructorId":1801827607},"id":1584580577,"comment":"Get the gifts » pinned on a specific user's profile.\n\nMay also be used to fetch all gifts received by the current user.","arguments":[{"name":"user_id","type":"InputUser","comment":"Identifier of the user (can be the current user to fetch all gifts received by the current user)."},{"name":"offset","type":"string","comment":"Offset for pagination, taken from {@link payments.RawUserStarGifts} (initially empty)."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"available":"both"},{"kind":"method","name":"payments.saveStarGift","type":"Bool","id":2276257934,"comment":"Display or remove a received gift » from our profile.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"unsave","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, hides the gift from our profile."},{"name":"user_id","type":"InputUser","comment":"ID of the user that sent us the gift."},{"name":"msg_id","type":"int","comment":"The ID of the {@link RawMessageService} with the {@link RawMessageActionStarGift}."}],"available":"both"},{"kind":"method","name":"payments.convertStarGift","type":"Bool","id":69328935,"comment":"Convert a received gift » into Telegram Stars: this will permanently destroy the gift, converting it into {@link RawStarGift}.convert_stars Telegram Stars, added to the user's balance.\n\nNote that {@link RawStarGift}.convert_stars will be less than the buying price ({@link RawStarGift}.stars) of the gift if it was originally bought using Telegram Stars bought a long time ago.","arguments":[{"name":"user_id","type":"InputUser","comment":"ID of the user that sent us the gift."},{"name":"msg_id","type":"int","comment":"The ID of the {@link RawMessageService} with the {@link RawMessageActionStarGift}."}],"available":"both"},{"kind":"method","name":"payments.botCancelStarsSubscription","id":1845102114,"type":"Bool","arguments":[{"name":"flags","type":"#"},{"name":"restore","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"user_id","type":"InputUser"},{"name":"charge_id","type":"string"}]},{"kind":"method","name":"stickers.createStickerSet","type":"messages.StickerSet","id":2418125671,"comment":"Create a stickerset.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"masks","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a mask stickerset"},{"name":"emojis","type":"true","typeModifiers":{"predicate":"flags.5"},"comment":"Whether this is a custom emoji stickerset."},{"name":"text_color","type":"true","typeModifiers":{"predicate":"flags.6"},"comment":"Whether the color of TGS custom emojis contained in this set should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context. For custom emoji stickersets only."},{"name":"user_id","type":"InputUser","comment":"Stickerset owner"},{"name":"title","type":"string","comment":"Stickerset name, 1-64 chars"},{"name":"short_name","type":"string","comment":"Short name of sticker set, to be used in sticker deep links ». Can contain only english letters, digits and underscores. Must begin with a letter, can't contain consecutive underscores and, if called by a bot, must end in \"_by_\". is case insensitive. 1-64 characters."},{"name":"thumb","type":"InputDocument","typeModifiers":{"predicate":"flags.2"},"comment":"Thumbnail"},{"name":"stickers","type":"InputStickerSetItem","typeModifiers":{"isVector":true},"comment":"Stickers"},{"name":"software","type":"string","typeModifiers":{"predicate":"flags.3"},"comment":"Used when importing stickers using the sticker import SDKs, specifies the name of the software that created the stickers"}],"throws":[{"code":400,"name":"PACK_SHORT_NAME_INVALID","comment":"Short pack name invalid."},{"code":400,"name":"PACK_SHORT_NAME_OCCUPIED","comment":"A stickerpack with this name already exists."},{"code":400,"name":"PACK_TITLE_INVALID","comment":"The stickerpack title is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STICKERS_EMPTY","comment":"No sticker provided."},{"code":400,"name":"STICKER_EMOJI_INVALID","comment":"Sticker emoji invalid."},{"code":400,"name":"STICKER_FILE_INVALID","comment":"Sticker file invalid."},{"code":400,"name":"STICKER_GIF_DIMENSIONS","comment":"The specified video sticker has invalid dimensions."},{"code":400,"name":"STICKER_PNG_DIMENSIONS","comment":"Sticker png dimensions invalid."},{"code":400,"name":"STICKER_PNG_NOPNG","comment":"One of the specified stickers is not a valid PNG file."},{"code":400,"name":"STICKER_TGS_NODOC","comment":"You must send the animated sticker as a document."},{"code":400,"name":"STICKER_TGS_NOTGS","comment":"Invalid TGS sticker provided."},{"code":400,"name":"STICKER_THUMB_PNG_NOPNG","comment":"Incorrect stickerset thumb file provided, PNG / WEBP expected."},{"code":400,"name":"STICKER_THUMB_TGS_NOTGS","comment":"Incorrect stickerset TGS thumb file provided."},{"code":400,"name":"STICKER_VIDEO_BIG","comment":"The specified video sticker is too big."},{"code":400,"name":"STICKER_VIDEO_NODOC","comment":"You must send the video sticker as a document."},{"code":400,"name":"STICKER_VIDEO_NOWEBM","comment":"The specified video sticker is not in webm format."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},{"kind":"method","name":"stickers.removeStickerFromSet","type":"messages.StickerSet","id":4151709521,"comment":"Remove a sticker from the set where it belongs. The sticker set must have been created by the current user/bot.","arguments":[{"name":"sticker","type":"InputDocument","comment":"The sticker to remove"}],"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},{"kind":"method","name":"stickers.changeStickerPosition","type":"messages.StickerSet","id":4290172106,"comment":"Changes the absolute position of a sticker in the set to which it belongs. The sticker set must have been created by the current user/bot.","arguments":[{"name":"sticker","type":"InputDocument","comment":"The sticker"},{"name":"position","type":"int","comment":"The new position of the sticker, zero-based"}],"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},{"kind":"method","name":"stickers.addStickerToSet","type":"messages.StickerSet","id":2253651646,"comment":"Add a sticker to a stickerset. The sticker set must have been created by the current user/bot.","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"The stickerset"},{"name":"sticker","type":"InputStickerSetItem","comment":"The sticker"}],"throws":[{"code":400,"name":"STICKERPACK_STICKERS_TOO_MUCH","comment":"There are too many stickers in this stickerpack, you can't add any more."},{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."},{"code":400,"name":"STICKERS_TOO_MUCH","comment":"There are too many stickers in this stickerpack, you can't add any more."},{"code":400,"name":"STICKER_PNG_NOPNG","comment":"One of the specified stickers is not a valid PNG file."},{"code":400,"name":"STICKER_TGS_NOTGS","comment":"Invalid TGS sticker provided."}],"available":"both"},{"kind":"method","name":"stickers.setStickerSetThumb","type":"messages.StickerSet","id":2808763282,"comment":"Set stickerset thumbnail","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset"},{"name":"thumb","type":"InputDocument","typeModifiers":{"predicate":"flags.0"},"comment":"Thumbnail (only for normal stickersets, not custom emoji stickersets)."},{"name":"thumb_document_id","type":"long","typeModifiers":{"predicate":"flags.1"},"comment":"Only for custom emoji stickersets, ID of a custom emoji present in the set to use as thumbnail; pass 0 to fallback to the first custom emoji of the set."}],"throws":[{"code":400,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."},{"code":400,"name":"STICKER_THUMB_PNG_NOPNG","comment":"Incorrect stickerset thumb file provided, PNG / WEBP expected."},{"code":400,"name":"STICKER_THUMB_TGS_NOTGS","comment":"Incorrect stickerset TGS thumb file provided."}],"available":"both"},{"kind":"method","name":"stickers.checkShortName","type":"Bool","id":676017721,"comment":"Check whether the given short name is available","arguments":[{"name":"short_name","type":"string","comment":"Short name"}],"throws":[{"code":400,"name":"SHORT_NAME_INVALID","comment":"The specified short name is invalid."},{"code":400,"name":"SHORT_NAME_OCCUPIED","comment":"The specified short name is already in use."}],"available":"user"},{"kind":"method","name":"stickers.suggestShortName","type":"stickers.SuggestedShortName","typeModifiers":{"constructorId":2248056895},"id":1303364867,"comment":"Suggests a short name for a given stickerpack name","arguments":[{"name":"title","type":"string","comment":"Sticker pack name"}],"throws":[{"code":400,"name":"TITLE_INVALID","comment":"The specified stickerpack title is invalid."}],"available":"user"},{"kind":"method","name":"stickers.changeSticker","type":"messages.StickerSet","id":4115889852,"comment":"Update the keywords, emojis or mask coordinates of a sticker.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"sticker","type":"InputDocument","comment":"The sticker"},{"name":"emoji","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If set, updates the emoji list associated to the sticker"},{"name":"mask_coords","type":"MaskCoords","typeModifiers":{"predicate":"flags.1"},"comment":"If set, updates the mask coordinates"},{"name":"keywords","type":"string","typeModifiers":{"predicate":"flags.2"},"comment":"If set, updates the sticker keywords (separated by commas). Can't be provided for mask stickers."}],"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},{"kind":"method","name":"stickers.renameStickerSet","type":"messages.StickerSet","id":306912256,"comment":"Renames a stickerset.","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset to rename"},{"name":"title","type":"string","comment":"New stickerset title"}],"throws":[{"code":400,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"both"},{"kind":"method","name":"stickers.deleteStickerSet","type":"Bool","id":2272281492,"comment":"Deletes a stickerset we created.","arguments":[{"name":"stickerset","type":"InputStickerSet","comment":"Stickerset to delete"}],"throws":[{"code":400,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"both"},{"kind":"method","name":"stickers.replaceSticker","type":"messages.StickerSet","id":1184253338,"comment":"Replace a sticker in a stickerset ».","arguments":[{"name":"sticker","type":"InputDocument","comment":"Old sticker document."},{"name":"new_sticker","type":"InputStickerSetItem","comment":"New sticker."}],"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},{"kind":"method","name":"phone.getCallConfig","type":"DataJSON","typeModifiers":{"constructorId":2104790276},"id":1430593449,"comment":"Get phone call configuration to be passed to libtgvoip's shared config","arguments":[],"available":"user"},{"kind":"method","name":"phone.requestCall","type":"phone.PhoneCall","typeModifiers":{"constructorId":3968000320},"id":1124046573,"comment":"Start a telegram phone call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to start a video call"},{"name":"user_id","type":"InputUser","comment":"Destination of the phone call"},{"name":"random_id","type":"int","comment":"Random ID to avoid resending the same object"},{"name":"g_a_hash","type":"bytes","comment":"Parameter for E2E encryption key exchange »"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Phone call settings"}],"throws":[{"code":400,"name":"CALL_PROTOCOL_FLAGS_INVALID","comment":"Call protocol flags invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"PARTICIPANT_VERSION_OUTDATED","comment":"The other participant does not use an up to date telegram client with support for calls."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."}],"available":"user"},{"kind":"method","name":"phone.acceptCall","type":"phone.PhoneCall","typeModifiers":{"constructorId":3968000320},"id":1003664544,"comment":"Accept incoming call","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"The call to accept"},{"name":"g_b","type":"bytes","comment":"Parameter for E2E encryption key exchange »"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Phone call settings"}],"throws":[{"code":400,"name":"CALL_ALREADY_ACCEPTED","comment":"The call was already accepted."},{"code":400,"name":"CALL_ALREADY_DECLINED","comment":"The call was already declined."},{"code":500,"name":"CALL_OCCUPY_FAILED","comment":"The call failed because the user is already making another call."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."},{"code":406,"name":"CALL_PROTOCOL_COMPAT_LAYER_INVALID","comment":"The other side of the call does not support any of the VoIP protocols supported by the local client, as specified by the protocol.layer and protocol.library_versions fields."},{"code":400,"name":"CALL_PROTOCOL_FLAGS_INVALID","comment":"Call protocol flags invalid."}],"available":"user"},{"kind":"method","name":"phone.confirmCall","type":"phone.PhoneCall","typeModifiers":{"constructorId":3968000320},"id":788404002,"comment":"Complete phone call E2E encryption key exchange »","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"The phone call"},{"name":"g_a","type":"bytes","comment":"Parameter for E2E encryption key exchange »"},{"name":"key_fingerprint","type":"long","comment":"Key fingerprint"},{"name":"protocol","type":"PhoneCallProtocol","comment":"Phone call settings"}],"throws":[{"code":400,"name":"CALL_ALREADY_DECLINED","comment":"The call was already declined."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"phone.receivedCall","type":"Bool","id":399855457,"comment":"Optional: notify the server that the user is currently busy in a call: this will automatically refuse all incoming phone calls until the current phone call is ended.","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"The phone call we're currently in"}],"throws":[{"code":400,"name":"CALL_ALREADY_DECLINED","comment":"The call was already declined."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"phone.discardCall","type":"Updates","id":2999697856,"comment":"Refuse or end running call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether this is a video call"},{"name":"peer","type":"InputPhoneCall","comment":"The phone call"},{"name":"duration","type":"int","comment":"Call duration"},{"name":"reason","type":"PhoneCallDiscardReason","comment":"Why was the call discarded"},{"name":"connection_id","type":"long","comment":"Preferred libtgvoip relay ID"}],"throws":[{"code":400,"name":"CALL_ALREADY_ACCEPTED","comment":"The call was already accepted."},{"code":500,"name":"CALL_OCCUPY_FAILED","comment":"The call failed because the user is already making another call."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"phone.setCallRating","type":"Updates","id":1508562471,"comment":"Rate a call, returns info about the rating message sent to the official VoIP bot.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"user_initiative","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether the user decided on their own initiative to rate the call"},{"name":"peer","type":"InputPhoneCall","comment":"The call to rate"},{"name":"rating","type":"int","comment":"Rating in 1-5 stars"},{"name":"comment","type":"string","comment":"An additional comment"}],"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"phone.saveCallDebug","type":"Bool","id":662363518,"comment":"Send phone call debug data to server","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"Phone call"},{"name":"debug","type":"DataJSON","comment":"Debug statistics obtained from libtgvoip"}],"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."},{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},{"kind":"method","name":"phone.sendSignalingData","type":"Bool","id":4286223235,"comment":"Send VoIP signaling data","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"Phone call"},{"name":"data","type":"bytes","comment":"Signaling payload"}],"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"phone.createGroupCall","type":"Updates","id":1221445336,"comment":"Create a group call or livestream","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"rtmp_stream","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether RTMP stream support should be enabled: only the group/supergroup/channel owner can use this flag."},{"name":"peer","type":"InputPeer","comment":"Associate the group call or livestream to the provided group/supergroup/channel"},{"name":"random_id","type":"int","comment":"Unique client message ID required to prevent creation of duplicate group calls"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Call title"},{"name":"schedule_date","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"For scheduled group call or livestreams, the absolute date when the group call will start"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CREATE_CALL_FAILED","comment":"An error occurred while creating the call."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SCHEDULE_DATE_INVALID","comment":"Invalid schedule date provided."}],"available":"user"},{"kind":"method","name":"phone.joinGroupCall","type":"Updates","id":2972909435,"comment":"Join a group call","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"muted","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"If set, the user will be muted by default upon joining."},{"name":"video_stopped","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, the user's video will be disabled by default upon joining."},{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"join_as","type":"InputPeer","comment":"Join the group call, presenting yourself as the specified user/channel"},{"name":"invite_hash","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"The invitation hash from the invite link », if provided allows speaking in a livestream or muted group chat."},{"name":"params","type":"DataJSON","comment":"WebRTC parameters"}],"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."},{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_SSRC_DUPLICATE_MUCH","comment":"The app needs to retry joining the group call with a new SSRC value."},{"code":400,"name":"JOIN_AS_PEER_INVALID","comment":"The specified peer cannot be used to join a group call."}],"available":"user"},{"kind":"method","name":"phone.leaveGroupCall","type":"Updates","id":1342404601,"comment":"Leave a group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"source","type":"int","comment":"Your source ID"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.inviteToGroupCall","type":"Updates","id":2067345760,"comment":"Invite a set of users to a group call.","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"users","type":"InputUser","typeModifiers":{"isVector":true},"comment":"The users to invite."}],"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"INVITE_FORBIDDEN_WITH_JOINAS","comment":"If the user has anonymously joined a group call as a channel, they can't invite other users to the group call because that would cause deanonymization, because the invite would be sent using the original user ID, not the anonymized channel ID."},{"code":400,"name":"USER_ALREADY_INVITED","comment":"You have already invited this user."},{"code":403,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"user"},{"kind":"method","name":"phone.discardGroupCall","type":"Updates","id":2054648117,"comment":"Terminate a group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call to terminate"}],"throws":[{"code":400,"name":"GROUPCALL_ALREADY_DISCARDED","comment":"The group call was already discarded."},{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.toggleGroupCallSettings","type":"Updates","id":1958458429,"comment":"Change group call settings","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"reset_invite_hash","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Invalidate existing invite links"},{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"join_muted","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"Whether all users will that join this group call are muted by default upon joining the group call"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_NOT_MODIFIED","comment":"Group call settings weren't modified."}],"available":"user"},{"kind":"method","name":"phone.getGroupCall","type":"phone.GroupCall","typeModifiers":{"constructorId":2658302637},"id":68699611,"comment":"Get info about a group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.getGroupParticipants","type":"phone.GroupParticipants","typeModifiers":{"constructorId":4101460406},"id":3310934187,"comment":"Get group call participants","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"ids","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"If specified, will fetch group participant info about the specified peers"},{"name":"sources","type":"int","typeModifiers":{"isVector":true},"comment":"If specified, will fetch group participant info about the specified WebRTC source IDs"},{"name":"offset","type":"string","comment":"Offset for results, taken from the next_offset field of {@link phone.RawGroupParticipants}, initially an empty string.
Note: if no more results are available, the method call will return an empty next_offset; thus, avoid providing the next_offset returned in {@link phone.RawGroupParticipants} if it is empty, to avoid an infinite loop."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.checkGroupCall","type":"int","typeModifiers":{"isVector":true},"id":3046963575,"comment":"Check whether the group call Server Forwarding Unit is currently receiving the streams with the specified WebRTC source IDs.
\nReturns an intersection of the source IDs specified in sources, and the source IDs currently being forwarded by the SFU.","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"sources","type":"int","typeModifiers":{"isVector":true},"comment":"Source IDs"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_JOIN_MISSING","comment":"You haven't joined this group call."}],"available":"user"},{"kind":"method","name":"phone.toggleGroupCallRecord","type":"Updates","id":4045981448,"comment":"Start or stop recording a group call: the recorded audio and video streams will be automatically sent to Saved messages (the chat with ourselves).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"start","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to start or stop recording"},{"name":"video","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to also record video streams"},{"name":"call","type":"InputGroupCall","comment":"The group call or livestream"},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Recording title"},{"name":"video_portrait","type":"Bool","typeModifiers":{"predicate":"flags.2"},"comment":"If video stream recording is enabled, whether to record in portrait or landscape mode"}],"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_NOT_MODIFIED","comment":"Group call settings weren't modified."}],"available":"user"},{"kind":"method","name":"phone.editGroupCallParticipant","type":"Updates","id":2770811583,"comment":"Edit information about a given group call participant\n\nNote: flags.N?Bool parameters can have three possible values:","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"participant","type":"InputPeer","comment":"The group call participant (can also be the user itself)"},{"name":"muted","type":"Bool","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to mute or unmute the specified participant"},{"name":"volume","type":"int","typeModifiers":{"predicate":"flags.1"},"comment":"New volume"},{"name":"raise_hand","type":"Bool","typeModifiers":{"predicate":"flags.2"},"comment":"Raise or lower hand"},{"name":"video_stopped","type":"Bool","typeModifiers":{"predicate":"flags.3"},"comment":"Start or stop the video stream"},{"name":"video_paused","type":"Bool","typeModifiers":{"predicate":"flags.4"},"comment":"Pause or resume the video stream"},{"name":"presentation_paused","type":"Bool","typeModifiers":{"predicate":"flags.5"},"comment":"Pause or resume the screen sharing stream"}],"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"PARTICIPANT_JOIN_MISSING","comment":"Trying to enable a presentation, when the user hasn't joined the Video Chat with {@link phone.RawJoinGroupCallRequest}."},{"code":400,"name":"RAISE_HAND_FORBIDDEN","comment":"You cannot raise your hand."},{"code":400,"name":"USER_VOLUME_INVALID","comment":"The specified user volume is invalid."},{"code":400,"name":"VIDEO_PAUSE_FORBIDDEN","comment":"You cannot pause the video stream."},{"code":400,"name":"VIDEO_STOP_FORBIDDEN","comment":"You cannot stop the video stream."}],"available":"user"},{"kind":"method","name":"phone.editGroupCallTitle","type":"Updates","id":480685066,"comment":"Edit the title of a group call or livestream","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call"},{"name":"title","type":"string","comment":"New title"}],"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.getGroupCallJoinAs","type":"phone.JoinAsPeers","typeModifiers":{"constructorId":2951045695},"id":4017889594,"comment":"Get a list of peers that can be used to join a group call, presenting yourself as a specific user/channel.","arguments":[{"name":"peer","type":"InputPeer","comment":"The dialog whose group call or livestream we're trying to join"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"phone.exportGroupCallInvite","type":"phone.ExportedGroupCallInvite","typeModifiers":{"constructorId":541839704},"id":3869926527,"comment":"Get an invite link for a group call or livestream","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"can_self_unmute","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"For livestreams or muted group chats, if set, users that join using this link will be able to speak without explicitly requesting permission by (for example by raising their hand)."},{"name":"call","type":"InputGroupCall","comment":"The group call"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":403,"name":"PUBLIC_CHANNEL_MISSING","comment":"You can only export group call invite links for public chats or channels."}],"available":"user"},{"kind":"method","name":"phone.toggleGroupCallStartSubscription","type":"Updates","id":563885286,"comment":"Subscribe or unsubscribe to a scheduled group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"Scheduled group call"},{"name":"subscribed","type":"Bool","comment":"Enable or disable subscription"}],"throws":[{"code":403,"name":"GROUPCALL_ALREADY_STARTED","comment":"The groupcall has already started, you can join directly using {@link phone.RawJoinGroupCallRequest}."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.startScheduledGroupCall","type":"Updates","id":1451287362,"comment":"Start a scheduled group call.","arguments":[{"name":"call","type":"InputGroupCall","comment":"The scheduled group call"}],"throws":[{"code":403,"name":"GROUPCALL_ALREADY_STARTED","comment":"The groupcall has already started, you can join directly using {@link phone.RawJoinGroupCallRequest}."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.saveDefaultGroupCallJoinAs","type":"Bool","id":1465786252,"comment":"Set the default peer that will be used to join a group call in a specific dialog.","arguments":[{"name":"peer","type":"InputPeer","comment":"The dialog"},{"name":"join_as","type":"InputPeer","comment":"The default peer that will be used to join group calls in this dialog, presenting yourself as a specific user/channel."}],"throws":[{"code":400,"name":"JOIN_AS_PEER_INVALID","comment":"The specified peer cannot be used to join a group call."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"phone.joinGroupCallPresentation","type":"Updates","id":3421137860,"comment":"Start screen sharing in a call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"},{"name":"params","type":"DataJSON","comment":"WebRTC parameters"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":403,"name":"PARTICIPANT_JOIN_MISSING","comment":"Trying to enable a presentation, when the user hasn't joined the Video Chat with {@link phone.RawJoinGroupCallRequest}."}],"available":"user"},{"kind":"method","name":"phone.leaveGroupCallPresentation","type":"Updates","id":475058500,"comment":"Stop screen sharing in a group call","arguments":[{"name":"call","type":"InputGroupCall","comment":"The group call"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},{"kind":"method","name":"phone.getGroupCallStreamChannels","type":"phone.GroupCallStreamChannels","typeModifiers":{"constructorId":3504636594},"id":447879488,"comment":"Get info about RTMP streams in a group call or livestream.
\nThis method should be invoked to the same group/channel-related DC used for downloading livestream chunks.
\nAs usual, the media DC is preferred, if available.","arguments":[{"name":"call","type":"InputGroupCall","comment":"Group call or livestream"}],"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_JOIN_MISSING","comment":"You haven't joined this group call."}],"available":"user"},{"kind":"method","name":"phone.getGroupCallStreamRtmpUrl","type":"phone.GroupCallStreamRtmpUrl","typeModifiers":{"constructorId":767505458},"id":3736316863,"comment":"Get RTMP URL and stream key for RTMP livestreams. Can be used even before creating the actual RTMP livestream with {@link phone.RawCreateGroupCallRequest} (the rtmp_stream flag must be set).","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer to livestream into"},{"name":"revoke","type":"Bool","comment":"Whether to revoke the previous stream key or simply return the existing one"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"phone.saveCallLog","type":"Bool","id":1092913030,"comment":"Save phone call debug information","arguments":[{"name":"peer","type":"InputPhoneCall","comment":"Phone call"},{"name":"file","type":"InputFile","comment":"Logs"}],"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},{"kind":"method","name":"langpack.getLangPack","type":"LangPackDifference","typeModifiers":{"constructorId":4085629430},"id":4075959050,"comment":"Get localization pack strings","arguments":[{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."},{"name":"lang_code","type":"string","comment":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."}],"throws":[{"code":400,"name":"LANGUAGE_INVALID","comment":"The specified lang_code is invalid."},{"code":400,"name":"LANG_CODE_NOT_SUPPORTED","comment":"The specified language code is not supported."},{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},{"kind":"method","name":"langpack.getStrings","type":"LangPackString","typeModifiers":{"isVector":true},"id":4025104387,"comment":"Get strings from a language pack","arguments":[{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."},{"name":"lang_code","type":"string","comment":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."},{"name":"keys","type":"string","typeModifiers":{"isVector":true},"comment":"Strings to get"}],"throws":[{"code":400,"name":"LANG_CODE_NOT_SUPPORTED","comment":"The specified language code is not supported."},{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},{"kind":"method","name":"langpack.getDifference","type":"LangPackDifference","typeModifiers":{"constructorId":4085629430},"id":3449309861,"comment":"Get new strings in language pack","arguments":[{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."},{"name":"lang_code","type":"string","comment":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."},{"name":"from_version","type":"int","comment":"Previous localization pack version"}],"throws":[{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},{"kind":"method","name":"langpack.getLanguages","type":"LangPackLanguage","typeModifiers":{"isVector":true,"constructorId":4006239459},"id":1120311183,"comment":"Get information about all languages in a localization pack","arguments":[{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."}],"throws":[{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},{"kind":"method","name":"langpack.getLanguage","type":"LangPackLanguage","typeModifiers":{"constructorId":4006239459},"id":1784243458,"comment":"Get information about a language in a localization pack","arguments":[{"name":"lang_pack","type":"string","comment":"Platform identifier (i.e. android, tdesktop, etc)."},{"name":"lang_code","type":"string","comment":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."}],"throws":[{"code":400,"name":"LANG_CODE_NOT_SUPPORTED","comment":"The specified language code is not supported."},{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},{"kind":"method","name":"folders.editPeerFolders","type":"Updates","id":1749536939,"comment":"Edit peers in peer folder","arguments":[{"name":"folder_peers","type":"InputFolderPeer","typeModifiers":{"isVector":true},"comment":"New peer list"}],"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."}],"available":"user"},{"kind":"method","name":"stats.getBroadcastStats","type":"stats.BroadcastStats","typeModifiers":{"constructorId":963421692},"id":2873246746,"comment":"Get channel statistics","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable dark theme for graph colors"},{"name":"channel","type":"InputChannel","comment":"The channel"}],"throws":[{"code":400,"name":"BROADCAST_REQUIRED","comment":"This method can only be called on a channel, please use stats.getMegagroupStats for supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."}],"available":"user"},{"kind":"method","name":"stats.loadAsyncGraph","type":"StatsGraph","id":1646092192,"comment":"Load channel statistics graph asynchronously","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"token","type":"string","comment":"Graph token from {@link RawStatsGraphAsync} constructor"},{"name":"x","type":"long","typeModifiers":{"predicate":"flags.0"},"comment":"Zoom value, if required"}],"throws":[{"code":400,"name":"GRAPH_EXPIRED_RELOAD","comment":"This graph has expired, please obtain a new graph token."},{"code":400,"name":"GRAPH_INVALID_RELOAD","comment":"Invalid graph token provided, please reload the stats and provide the updated token."},{"code":400,"name":"GRAPH_OUTDATED_RELOAD","comment":"The graph is outdated, please get a new async token using stats.getBroadcastStats."}],"available":"user"},{"kind":"method","name":"stats.getMegagroupStats","type":"stats.MegagroupStats","typeModifiers":{"constructorId":4018141462},"id":3705636359,"comment":"Get supergroup statistics","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable dark theme for graph colors"},{"name":"channel","type":"InputChannel","comment":"Supergroup ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MEGAGROUP_REQUIRED","comment":"You can only use this method on a supergroup."}],"available":"user"},{"kind":"method","name":"stats.getMessagePublicForwards","type":"stats.PublicForwards","typeModifiers":{"constructorId":2466479648},"id":1595212100,"comment":"Obtains a list of messages, indicating to which other public channels was a channel message forwarded.
\nWill return a list of {@link RawMessage} with peer_id equal to the public channel to which this message was forwarded.","arguments":[{"name":"channel","type":"InputChannel","comment":"Source channel"},{"name":"msg_id","type":"int","comment":"Source message ID"},{"name":"offset","type":"string","comment":"Offset for pagination, empty string on first call, then use the next_offset field of the returned constructor (if present, otherwise no more results are available)."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stats.getMessageStats","type":"stats.MessageStats","typeModifiers":{"constructorId":2145983508},"id":3068175349,"comment":"Get message statistics","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable dark theme for graph colors"},{"name":"channel","type":"InputChannel","comment":"Channel ID"},{"name":"msg_id","type":"int","comment":"Message ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stats.getStoryStats","type":"stats.StoryStats","typeModifiers":{"constructorId":1355613820},"id":927985472,"comment":"Get statistics for a certain story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable the dark theme for graph colors"},{"name":"peer","type":"InputPeer","comment":"The peer that posted the story"},{"name":"id","type":"int","comment":"Story ID"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stats.getStoryPublicForwards","type":"stats.PublicForwards","typeModifiers":{"constructorId":2466479648},"id":2789441270,"comment":"Obtain forwards of a story as a message to public chats and reposts by public channels.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the story was originally posted"},{"name":"id","type":"int","comment":"Story ID"},{"name":"offset","type":"string","comment":"Offset for pagination, from {@link stats.RawPublicForwards}.next_offset."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stats.getBroadcastRevenueStats","id":4152946201,"type":"stats.BroadcastRevenueStats","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"dark","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to enable dark theme for graph colors"},{"name":"peer","type":"InputPeer","comment":"Get ad revenue stats for the specified channel or bot"}],"typeModifiers":{"constructorId":1409802903},"comment":"Get channel ad revenue statistics ».","throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."}],"available":"user"},{"kind":"method","name":"stats.getBroadcastRevenueWithdrawalUrl","id":2650077869,"type":"stats.BroadcastRevenueWithdrawalUrl","arguments":[{"name":"peer","type":"InputPeer","comment":"Get ad revenue withdrawal URL for the specified channel or bot"},{"name":"password","type":"InputCheckPasswordSRP","comment":"2FA password, see here » for more info."}],"typeModifiers":{"constructorId":3966080823},"comment":"Withdraw funds from a channel's ad revenue balance ».","throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PASSWORD_TOO_FRESH_%d","comment":"The password was modified less than 24 hours ago, try again in %d seconds."}],"available":"user"},{"kind":"method","name":"stats.getBroadcastRevenueTransactions","id":1889078125,"type":"stats.BroadcastRevenueTransactions","arguments":[{"name":"peer","type":"InputPeer","comment":"Get ad revenue transactions for the specified channel or bot"},{"name":"offset","type":"int","comment":"Offset for pagination"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"typeModifiers":{"constructorId":2266334310},"comment":"Fetch channel ad revenue transaction history ».","throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"chatlists.exportChatlistInvite","type":"chatlists.ExportedChatlistInvite","typeModifiers":{"constructorId":283567014},"id":2222081934,"comment":"Export a folder », creating a chat folder deep link ».","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The folder to export"},{"name":"title","type":"string","comment":"An optional name for the link"},{"name":"peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"The list of channels, group and supergroups to share with the link. Basic groups will automatically be converted to supergroups when invoking the method."}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"INVITES_TOO_MUCH","comment":"The maximum number of per-folder invites specified by the chatlist_invites_limit_default/chatlist_invites_limit_premium client configuration parameters » was reached."},{"code":400,"name":"PEERS_LIST_EMPTY","comment":"The specified list of peers is empty."}],"available":"user"},{"kind":"method","name":"chatlists.deleteExportedInvite","type":"Bool","id":1906072670,"comment":"Delete a previously created chat folder deep link ».","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The related folder"},{"name":"slug","type":"string","comment":"slug obtained from the chat folder deep link »."}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},{"kind":"method","name":"chatlists.editExportedInvite","type":"ExportedChatlistInvite","typeModifiers":{"constructorId":206668204},"id":1698543165,"comment":"Edit a chat folder deep link ».","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"chatlist","type":"InputChatlist","comment":"Folder ID"},{"name":"slug","type":"string","comment":"slug obtained from the chat folder deep link »."},{"name":"title","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"If set, sets a new name for the link"},{"name":"peers","type":"InputPeer","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"If set, changes the list of peers shared with the link"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"INVITE_SLUG_EMPTY","comment":"The specified invite slug is empty."},{"code":400,"name":"INVITE_SLUG_EXPIRED","comment":"The specified chat folder link has expired."},{"code":400,"name":"PEERS_LIST_EMPTY","comment":"The specified list of peers is empty."}],"available":"user"},{"kind":"method","name":"chatlists.getExportedInvites","type":"chatlists.ExportedInvites","typeModifiers":{"constructorId":279670215},"id":3456359043,"comment":"List all chat folder deep links » associated to a folder","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The folder"}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."}],"available":"user"},{"kind":"method","name":"chatlists.checkChatlistInvite","type":"chatlists.ChatlistInvite","id":1103171583,"comment":"Obtain information about a chat folder deep link ».","arguments":[{"name":"slug","type":"string","comment":"slug obtained from the chat folder deep link »"}],"throws":[{"code":400,"name":"INVITE_SLUG_EMPTY","comment":"The specified invite slug is empty."},{"code":400,"name":"INVITE_SLUG_EXPIRED","comment":"The specified chat folder link has expired."}],"available":"user"},{"kind":"method","name":"chatlists.joinChatlistInvite","type":"Updates","id":2796675994,"comment":"Import a chat folder deep link », joining some or all the chats in the folder.","arguments":[{"name":"slug","type":"string","comment":"slug obtained from a chat folder deep link »."},{"name":"peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"List of new chats to join, fetched using {@link chatlists.RawCheckChatlistInviteRequest} and filtered as specified in the documentation »."}],"throws":[{"code":400,"name":"FILTER_INCLUDE_EMPTY","comment":"The include_peers vector of the filter is empty."},{"code":400,"name":"INVITE_SLUG_EMPTY","comment":"The specified invite slug is empty."},{"code":400,"name":"INVITE_SLUG_EXPIRED","comment":"The specified chat folder link has expired."}],"available":"user"},{"kind":"method","name":"chatlists.getChatlistUpdates","type":"chatlists.ChatlistUpdates","typeModifiers":{"constructorId":2478671757},"id":2302776609,"comment":"Fetch new chats associated with an imported chat folder deep link ». Must be invoked at most every chatlist_update_period seconds (as per the related client configuration parameter »).","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The folder"}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"INPUT_CHATLIST_INVALID","comment":"The specified folder is invalid."}],"available":"user"},{"kind":"method","name":"chatlists.joinChatlistUpdates","type":"Updates","id":3767138549,"comment":"Join channels and supergroups recently added to a chat folder deep link ».","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The folder"},{"name":"peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"List of new chats to join, fetched using {@link chatlists.RawGetChatlistUpdatesRequest} and filtered as specified in the documentation »."}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_INCLUDE_EMPTY","comment":"The include_peers vector of the filter is empty."}],"available":"user"},{"kind":"method","name":"chatlists.hideChatlistUpdates","type":"Bool","id":1726252795,"comment":"Dismiss new pending peers recently added to a chat folder deep link ».","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"The folder"}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},{"kind":"method","name":"chatlists.getLeaveChatlistSuggestions","type":"Peer","typeModifiers":{"isVector":true},"id":4257011476,"comment":"Returns identifiers of pinned or always included chats from a chat folder imported using a chat folder deep link », which are suggested to be left when the chat folder is deleted.","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"Folder ID"}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},{"kind":"method","name":"chatlists.leaveChatlist","type":"Updates","id":1962598714,"comment":"Delete a folder imported using a chat folder deep link »","arguments":[{"name":"chatlist","type":"InputChatlist","comment":"Folder ID"},{"name":"peers","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Also leave the specified channels and groups"}],"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.canSendStory","type":"Bool","id":3353337821,"comment":"Check whether we can post stories as the specified peer.","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer from which we wish to post stories."}],"throws":[{"code":400,"name":"BOOSTS_REQUIRED","comment":"The specified channel must first be boosted by its users in order to perform this action."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"STORIES_TOO_MUCH","comment":"You have hit the maximum active stories limit as specified by the story_expiring_limit_* client configuration parameters: you should buy a Premium subscription, delete an active story, or wait for the oldest story to expire."},{"code":400,"name":"STORY_SEND_FLOOD_MONTHLY_%d","comment":"You've hit the monthly story limit as specified by the stories_sent_monthly_limit_* client configuration parameters: wait for the specified number of seconds before posting a new story."},{"code":400,"name":"STORY_SEND_FLOOD_WEEKLY_%d","comment":"You've hit the weekly story limit as specified by the stories_sent_weekly_limit_* client configuration parameters: wait for the specified number of seconds before posting a new story."}],"available":"user"},{"kind":"method","name":"stories.sendStory","type":"Updates","id":3840305483,"comment":"Uploads a Telegram Story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"pinned","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to add the story to the profile automatically upon expiration. If not set, the story will only be added to the archive, see here » for more info."},{"name":"noforwards","type":"true","typeModifiers":{"predicate":"flags.4"},"comment":"If set, disables forwards, screenshots, and downloads."},{"name":"fwd_modified","type":"true","typeModifiers":{"predicate":"flags.7"},"comment":"Set this flag when reposting stories with fwd_from_id+fwd_from_id, if the media was modified before reposting."},{"name":"peer","type":"InputPeer","comment":"The peer to send the story as."},{"name":"media","type":"InputMedia","comment":"The story media."},{"name":"media_areas","type":"MediaArea","typeModifiers":{"predicate":"flags.5","isVector":true},"comment":"Media areas associated to the story, see here » for more info."},{"name":"caption","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Story caption."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text, if allowed by the stories_entities client configuration parameter »."},{"name":"privacy_rules","type":"InputPrivacyRule","typeModifiers":{"isVector":true},"comment":"Privacy rules for the story, indicating who can or can't view the story."},{"name":"random_id","type":"long","comment":"Unique client message ID required to prevent message resending."},{"name":"period","type":"int","typeModifiers":{"predicate":"flags.3"},"comment":"Period after which the story is moved to archive (and to the profile if pinned is set), in seconds; must be one of 6 * 3600, 12 * 3600, 86400, or 2 * 86400 for Telegram Premium users, and 86400 otherwise."},{"name":"fwd_from_id","type":"InputPeer","typeModifiers":{"predicate":"flags.6"},"comment":"If set, indicates that this story is a repost of story with ID fwd_from_story posted by the peer in fwd_from_id."},{"name":"fwd_from_story","type":"int","typeModifiers":{"predicate":"flags.6"},"comment":"If set, indicates that this story is a repost of story with ID fwd_from_story posted by the peer in fwd_from_id."}],"throws":[{"code":400,"name":"BOOSTS_REQUIRED","comment":"The specified channel must first be boosted by its users in order to perform this action."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_FILE_INVALID","comment":"The specified media file is invalid."},{"code":400,"name":"MEDIA_TYPE_INVALID","comment":"The specified media type cannot be used in stories."},{"code":400,"name":"MEDIA_VIDEO_STORY_MISSING","comment":"A non-story video cannot be repubblished as a story (emitted when trying to resend a non-story video as a story using inputDocument)."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"STORIES_TOO_MUCH","comment":"You have hit the maximum active stories limit as specified by the story_expiring_limit_* client configuration parameters: you should buy a Premium subscription, delete an active story, or wait for the oldest story to expire."},{"code":400,"name":"STORY_PERIOD_INVALID","comment":"The specified story period is invalid for this account."},{"code":400,"name":"VENUE_ID_INVALID","comment":"The specified venue ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.editStory","type":"Updates","id":3045308998,"comment":"Edit an uploaded story","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"peer","type":"InputPeer","comment":"Peer where the story was posted."},{"name":"id","type":"int","comment":"ID of story to edit."},{"name":"media","type":"InputMedia","typeModifiers":{"predicate":"flags.0"},"comment":"If specified, replaces the story media."},{"name":"media_areas","type":"MediaArea","typeModifiers":{"predicate":"flags.3","isVector":true},"comment":"Media areas associated to the story, see here » for more info."},{"name":"caption","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"If specified, replaces the story caption."},{"name":"entities","type":"MessageEntity","typeModifiers":{"predicate":"flags.1","isVector":true},"comment":"Message entities for styled text in the caption, if allowed by the stories_entities client configuration parameter »."},{"name":"privacy_rules","type":"InputPrivacyRule","typeModifiers":{"predicate":"flags.2","isVector":true},"comment":"If specified, alters the privacy settings » of the story, changing who can or can't view the story."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_NOT_MODIFIED","comment":"The new story information you passed is equal to the previous story information, thus it wasn't modified."}],"available":"user"},{"kind":"method","name":"stories.deleteStories","type":"int","typeModifiers":{"isVector":true},"id":2925124447,"comment":"Deletes some posted stories.","arguments":[{"name":"peer","type":"InputPeer","comment":"Channel/user from where to delete stories."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of stories to delete."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},{"kind":"method","name":"stories.togglePinned","type":"int","typeModifiers":{"isVector":true},"id":2591400431,"comment":"Pin or unpin one or more stories","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where to pin or unpin stories"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of stories to pin or unpin"},{"name":"pinned","type":"Bool","comment":"Whether to pin or unpin the stories"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.getAllStories","type":"stories.AllStories","id":4004566565,"comment":"Fetch the List of active (or active and hidden) stories, see here » for more info on watching stories.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"next","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"If next and state are both set, uses the passed state to paginate to the next results; if neither state nor next are set, fetches the initial page; if state is set and next is not set, check for changes in the active/hidden peerset, see here » for more info on the full flow."},{"name":"hidden","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, fetches the hidden active story list, otherwise fetches the active story list, see here » for more info on the full flow."},{"name":"state","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If next and state are both set, uses the passed state to paginate to the next results; if neither state nor next are set, fetches the initial page; if state is set and next is not set, check for changes in the active/hidden peerset, see here » for more info on the full flow."}],"available":"user"},{"kind":"method","name":"stories.getPinnedStories","type":"stories.Stories","typeModifiers":{"constructorId":1673780490},"id":1478600156,"comment":"Fetch the stories pinned on a peer's profile.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer whose pinned stories should be fetched"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.getStoriesArchive","type":"stories.Stories","typeModifiers":{"constructorId":1673780490},"id":3023380502,"comment":"Fetch the story archive » of a peer we control.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer whose archived stories should be fetched"},{"name":"offset_id","type":"int","comment":"Offsets for pagination, for more info click here"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.getStoriesByID","type":"stories.Stories","typeModifiers":{"constructorId":1673780490},"id":1467271796,"comment":"Obtain full info about a set of stories by their IDs.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the stories were posted"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Story IDs"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORIES_NEVER_CREATED","comment":"This peer hasn't ever posted any stories."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},{"kind":"method","name":"stories.toggleAllStoriesHidden","type":"Bool","id":2082822084,"comment":"Hide the active stories of a specific peer, preventing them from being displayed on the action bar on the homescreen.","arguments":[{"name":"hidden","type":"Bool","comment":"Whether to hide or unhide all active stories of the peer"}],"available":"user"},{"kind":"method","name":"stories.readStories","type":"int","typeModifiers":{"isVector":true},"id":2773932744,"comment":"Mark all stories up to a certain ID as read, for a given peer; will emit an {@link RawUpdateReadStories} update to all logged-in sessions.","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer whose stories should be marked as read."},{"name":"max_id","type":"int","comment":"Mark all stories up to and including this ID as read"}],"throws":[{"code":400,"name":"MAX_ID_INVALID","comment":"The provided max ID is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORIES_NEVER_CREATED","comment":"This peer hasn't ever posted any stories."}],"available":"user"},{"kind":"method","name":"stories.incrementStoryViews","type":"Bool","id":2986511099,"comment":"Increment the view counter of one or more stories.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the stories were posted."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of the stories (maximum 200 at a time)."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},{"kind":"method","name":"stories.getStoryViewsList","type":"stories.StoryViewsList","typeModifiers":{"constructorId":1507299269},"id":2127707223,"comment":"Obtain the list of users that have viewed a specific story we posted","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"just_contacts","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to only fetch view reaction/views made by our contacts"},{"name":"reactions_first","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"Whether to return {@link RawStoryView} info about users that reacted to the story (i.e. if set, the server will first sort results by view date as usual, and then also additionally sort the list by putting {@link RawStoryView}s with an associated reaction first in the list). Ignored if forwards_first is set."},{"name":"forwards_first","type":"true","typeModifiers":{"predicate":"flags.3"},"comment":"If set, returns forwards and reposts first, then reactions, then other views; otherwise returns interactions sorted just by interaction date."},{"name":"peer","type":"InputPeer","comment":"Peer where the story was posted"},{"name":"q","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Search for specific peers"},{"name":"id","type":"int","comment":"Story ID"},{"name":"offset","type":"string","comment":"Offset for pagination, obtained from {@link stories.RawStoryViewsList}.next_offset"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.getStoriesViews","type":"stories.StoryViews","typeModifiers":{"constructorId":3734957341},"id":685862088,"comment":"Obtain info about the view count, forward count, reactions and recent viewers of one or more stories.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer whose stories should be fetched"},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"Story IDs"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},{"kind":"method","name":"stories.exportStoryLink","type":"ExportedStoryLink","typeModifiers":{"constructorId":1070138683},"id":2072899360,"comment":"Generate a story deep link for a specific story","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where the story was posted"},{"name":"id","type":"int","comment":"Story ID"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."},{"code":400,"name":"USER_PUBLIC_MISSING","comment":"Cannot generate a link to stories posted by a peer without a username."}],"available":"user"},{"kind":"method","name":"stories.report","id":433646405,"type":"ReportResult","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer that uploaded the story."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of the stories to report."},{"name":"option","type":"bytes","comment":"Menu option, intially empty"},{"name":"message","type":"string","comment":"Comment for report moderation"}],"comment":"Report a story.","throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.activateStealthMode","type":"Updates","id":1471926630,"comment":"Activates stories stealth mode, see here » for more info.\n\nWill return an {@link RawUpdateStoriesStealthMode}.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"past","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to erase views from any stories opened in the past stories_stealth_past_period seconds », as specified by the client configuration."},{"name":"future","type":"true","typeModifiers":{"predicate":"flags.1"},"comment":"Whether to hide future story views for the next stories_stealth_future_period seconds », as specified by the client configuration."}],"throws":[{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"stories.sendReaction","type":"Updates","id":2144810674,"comment":"React to a story.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"add_to_recent","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to add this reaction to the recent reactions list »."},{"name":"peer","type":"InputPeer","comment":"The peer that sent the story"},{"name":"story_id","type":"int","comment":"ID of the story to react to"},{"name":"reaction","type":"Reaction","comment":"Reaction"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.getPeerStories","type":"stories.PeerStories","typeModifiers":{"constructorId":3404105576},"id":743103056,"comment":"Fetch the full active story list of a specific peer.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer whose stories should be fetched"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.getAllReadPeerStories","type":"Updates","id":2606426105,"comment":"Obtain the latest read story ID for all peers when first logging in, returned as a list of {@link RawUpdateReadStories} updates, see here » for more info.","arguments":[],"available":"user"},{"kind":"method","name":"stories.getPeerMaxIDs","type":"int","typeModifiers":{"isVector":true},"id":1398375363,"comment":"Get the IDs of the maximum read stories for a set of peers.","arguments":[{"name":"id","type":"InputPeer","typeModifiers":{"isVector":true},"comment":"Peers"}],"available":"user"},{"kind":"method","name":"stories.getChatsToSend","type":"messages.Chats","id":2775223136,"comment":"Obtain a list of channels where the user can post stories","arguments":[],"available":"user"},{"kind":"method","name":"stories.togglePeerStoriesHidden","type":"Bool","id":3171161540,"comment":"Hide the active stories of a user, preventing them from being displayed on the action bar on the homescreen, see here » for more info.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer whose stories should be (un)hidden."},{"name":"hidden","type":"Bool","comment":"Whether to hide or unhide stories."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.getStoryReactionsList","type":"stories.StoryReactionsList","typeModifiers":{"constructorId":2858383516},"id":3115485215,"comment":"Get the reaction and interaction list of a story posted to a channel, along with the sender of each reaction.\n\nCan only be used by channel admins.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"forwards_first","type":"true","typeModifiers":{"predicate":"flags.2"},"comment":"If set, returns forwards and reposts first, then reactions, then other views; otherwise returns interactions sorted just by interaction date."},{"name":"peer","type":"InputPeer","comment":"Channel"},{"name":"id","type":"int","comment":"Story ID"},{"name":"reaction","type":"Reaction","typeModifiers":{"predicate":"flags.0"},"comment":"Get only reactions of this type"},{"name":"offset","type":"string","typeModifiers":{"predicate":"flags.1"},"comment":"Offset for pagination (taken from the next_offset field of the returned stories.StoryReactionsList); empty in the first request."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"stories.togglePinnedToTop","type":"Bool","id":187268763,"comment":"Pin some stories to the top of the profile, see here » for more info.","arguments":[{"name":"peer","type":"InputPeer","comment":"Peer where to pin stories."},{"name":"id","type":"int","typeModifiers":{"isVector":true},"comment":"IDs of the stories to pin (max stories_pinned_to_top_count_max)."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."}],"available":"user"},{"kind":"method","name":"stories.searchPosts","id":3514894599,"type":"stories.FoundStories","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"hashtag","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"Hashtag (without the #)"},{"name":"area","type":"MediaArea","typeModifiers":{"predicate":"flags.1"},"comment":"A {@link RawMediaAreaGeoPoint} or a {@link RawMediaAreaVenue}.
Note {@link RawMediaAreaGeoPoint} areas may be searched only if they have an associated address."},{"name":"peer","type":"InputPeer","typeModifiers":{"predicate":"flags.2"},"comment":"If set, returns only stories posted by this peer."},{"name":"offset","type":"string","comment":"Offset for pagination: initially an empty string, then the next_offset from the previously returned {@link stories.RawFoundStories}."},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"typeModifiers":{"constructorId":3806230327},"comment":"Globally search for stories using a hashtag or a location media area, see here » for more info on the full flow.\n\nEither hashtag or area must be set when invoking the method.","throws":[{"code":400,"name":"HASHTAG_INVALID","comment":"The specified hashtag is invalid."}],"available":"user"},{"kind":"method","name":"premium.getBoostsList","type":"premium.BoostsList","typeModifiers":{"constructorId":2264424764},"id":1626764896,"comment":"Obtains info about the boosts that were applied to a certain channel or supergroup (admins only)","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"gifts","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Whether to return only info about boosts received from gift codes and giveaways created by the channel/supergroup »"},{"name":"peer","type":"InputPeer","comment":"The channel/supergroup"},{"name":"offset","type":"string","comment":"Offset for pagination, obtained from {@link premium.RawBoostsList}.next_offset"},{"name":"limit","type":"int","comment":"Maximum number of results to return, see pagination"}],"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"premium.getMyBoosts","type":"premium.MyBoosts","typeModifiers":{"constructorId":2598512866},"id":199719754,"comment":"Obtain which peers are we currently boosting, and how many boost slots we have left.","arguments":[],"available":"user"},{"kind":"method","name":"premium.applyBoost","type":"premium.MyBoosts","typeModifiers":{"constructorId":2598512866},"id":1803396934,"comment":"Apply one or more boosts » to a peer.","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"slots","type":"int","typeModifiers":{"predicate":"flags.0","isVector":true},"comment":"Which boost slots to assign to this peer."},{"name":"peer","type":"InputPeer","comment":"The peer to boost."}],"throws":[{"code":400,"name":"BOOSTS_EMPTY","comment":"No boost slots were specified."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SLOTS_EMPTY","comment":"The specified slot list is empty."}],"available":"user"},{"kind":"method","name":"premium.getBoostsStatus","type":"premium.BoostsStatus","typeModifiers":{"constructorId":1230586490},"id":70197089,"comment":"Gets the current number of boosts of a channel/supergroup.","arguments":[{"name":"peer","type":"InputPeer","comment":"The peer."}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},{"kind":"method","name":"premium.getUserBoosts","type":"premium.BoostsList","typeModifiers":{"constructorId":2264424764},"id":965037343,"comment":"Returns the lists of boost that were applied to a channel/supergroup by a specific user (admins only)","arguments":[{"name":"peer","type":"InputPeer","comment":"The channel/supergroup"},{"name":"user_id","type":"InputUser","comment":"The user"}],"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},{"kind":"method","name":"smsjobs.isEligibleToJoin","type":"smsjobs.EligibilityToJoin","typeModifiers":{"constructorId":3700114639},"id":249313744,"comment":"Check if we can process SMS jobs (official clients only).","arguments":[],"throws":[{"code":403,"name":"NOT_ELIGIBLE","comment":"The current user is not eligible to join the Peer-to-Peer Login Program."}],"available":"user"},{"kind":"method","name":"smsjobs.join","type":"Bool","id":2806959661,"comment":"Enable SMS jobs (official clients only).","arguments":[],"throws":[{"code":400,"name":"NOT_ELIGIBLE","comment":"The current user is not eligible to join the Peer-to-Peer Login Program."}],"available":"user"},{"kind":"method","name":"smsjobs.leave","type":"Bool","id":2560142707,"comment":"Disable SMS jobs (official clients only).","arguments":[],"throws":[{"code":400,"name":"NOT_JOINED","comment":"The current user hasn't joined the Peer-to-Peer Login Program."}],"available":"user"},{"kind":"method","name":"smsjobs.updateSettings","type":"Bool","id":155164863,"comment":"Update SMS job settings (official clients only).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"allow_international","type":"true","typeModifiers":{"predicate":"flags.0"},"comment":"Allow international numbers?"}],"throws":[{"code":400,"name":"NOT_JOINED","comment":"The current user hasn't joined the Peer-to-Peer Login Program."}],"available":"user"},{"kind":"method","name":"smsjobs.getStatus","type":"smsjobs.Status","typeModifiers":{"constructorId":720277905},"id":279353576,"comment":"Get SMS jobs status (official clients only).","arguments":[],"throws":[{"code":400,"name":"NOT_JOINED","comment":"The current user hasn't joined the Peer-to-Peer Login Program."}],"available":"user"},{"kind":"method","name":"smsjobs.getSmsJob","type":"SmsJob","typeModifiers":{"constructorId":3869372088},"id":2005766191,"comment":"Get info about an SMS job (official clients only).","arguments":[{"name":"job_id","type":"string","comment":"Job ID"}],"throws":[{"code":400,"name":"SMSJOB_ID_INVALID","comment":"The specified job ID is invalid."}],"available":"user"},{"kind":"method","name":"smsjobs.finishJob","type":"Bool","id":1327415076,"comment":"Finish an SMS job (official clients only).","arguments":[{"name":"flags","type":"#","comment":"Flags, see TL conditional fields"},{"name":"job_id","type":"string","comment":"Job ID."},{"name":"error","type":"string","typeModifiers":{"predicate":"flags.0"},"comment":"If failed, the error."}],"throws":[{"code":400,"name":"SMSJOB_ID_INVALID","comment":"The specified job ID is invalid."}],"available":"user"},{"kind":"method","name":"fragment.getCollectibleInfo","type":"fragment.CollectibleInfo","typeModifiers":{"constructorId":1857945489},"id":3189671354,"comment":"Fetch information about a fragment collectible, see here » for more info on the full flow.","arguments":[{"name":"collectible","type":"InputCollectible","comment":"Collectible to fetch info about."}],"throws":[{"code":400,"name":"COLLECTIBLE_INVALID","comment":"The specified collectible is invalid."},{"code":400,"name":"COLLECTIBLE_NOT_FOUND","comment":"The specified collectible could not be found."}],"available":"user"},{"kind":"method","name":"channels.viewSponsoredMessage","type":"Bool","id":3199130516,"comment":"Mark a specific sponsored message as read","arguments":[{"name":"channel","type":"InputChannel","comment":"Peer"},{"name":"random_id","type":"bytes","comment":"Message ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},{"kind":"method","name":"channels.getSponsoredMessages","type":"messages.SponsoredMessages","id":3961589695,"comment":"Get a list of sponsored messages","arguments":[{"name":"channel","type":"InputChannel","comment":"Peer"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},{"kind":"method","name":"channels.clickSponsoredMessage","type":"Bool","id":21257589,"comment":"Informs the server that the user has either:","arguments":[{"name":"flags","type":"#"},{"name":"media","type":"true","typeModifiers":{"predicate":"flags.0"}},{"name":"fullscreen","type":"true","typeModifiers":{"predicate":"flags.1"}},{"name":"channel","type":"InputChannel","comment":"Channel where the sponsored message was posted"},{"name":"random_id","type":"bytes","comment":"Message ID"}],"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},{"kind":"method","name":"channels.reportSponsoredMessage","type":"channels.SponsoredMessageReportResult","id":2945447609,"comment":"Report a sponsored message », see here » for more info on the full flow.","arguments":[{"name":"channel","type":"InputChannel","comment":"The channel where the sponsored message can be seen."},{"name":"random_id","type":"bytes","comment":"ID of the sponsored message."},{"name":"option","type":"bytes","comment":"Chosen report option, initially an empty string, see here » for more info on the full flow."}],"throws":[{"code":400,"name":"AD_EXPIRED","comment":"The ad has expired (too old or not found)."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},{"kind":"method","name":"mtcute.customMethod","id":2440218877,"type":"bytes","arguments":[{"name":"bytes","type":"bytes"}],"comment":"temporary solution to allow users to call arbitrary methods not present in the schema, without having to override client's schema readers/writers map. will become redundant after esm tl rewrite"}],"u":{"Error":"An object containing a query error.","InputFileLocation":"Defines the location of a file for download.","InputPeer":"Peer","InputUser":"Defines a user for subsequent interaction.","InputContact":"Object defines a contact from the user's phone book.","InputFile":"Defines a file uploaded by the client.","InputMedia":"Defines media content of a message.","InputChatPhoto":"Defines a new group profile photo.","InputGeoPoint":"Defines a GeoPoint.","InputPhoto":"Defines a photo for further interaction.","Peer":"Identifier of a private chat, basic group, group or channel (see here » for more info).","storage.FileType":"Object describes the file type.","User":"Object defines a user.","UserProfilePhoto":"Object contains info on the user's profile photo.","UserStatus":"User online status","Chat":"Object defines a group.","ChatFull":"Full info about a channel, supergroup, gigagroup or basic group.","ChatParticipant":"Details of a group member.","ChatParticipants":"Object contains info on group members.","ChatPhoto":"Object defines a group profile photo.","Message":"Object describing a message.","MessageMedia":"Media","MessageAction":"Object describing actions connected to a service message.","Dialog":"Chat info.","Photo":"Object describes a photo.","PhotoSize":"Location of a certain size of a picture","GeoPoint":"Object defines a GeoPoint.","auth.SentCode":"Contains info on a confirmation code message sent via SMS, phone call or Telegram.","auth.Authorization":"Object contains info on user authorization.","auth.ExportedAuthorization":"Exported authorization","InputNotifyPeer":"Object defines the set of users and/or groups that generate notifications.","InputPeerNotifySettings":"Notifications settings.","PeerNotifySettings":"Notification settings.","PeerSettings":"List of actions that are possible when interacting with this user, to be shown as suggested actions in the chat bar","WallPaper":"Object contains info on a wallpaper.","ReportReason":"Report reason","UserFull":"Object contains extended user info.","Contact":"A contact of the current user.","ImportedContact":"Object contains info on a successfully imported contact.","ContactStatus":"Contact status: online / offline.","contacts.Contacts":"Info on the current user's contact list.","contacts.ImportedContacts":"Object contains info on successfully imported contacts.","contacts.Blocked":"Info on users from the current user's black list.","messages.Dialogs":"Object contains a list of chats with messages and auxiliary data.","messages.Messages":"Object contains information on list of messages with auxiliary data.","messages.Chats":"Object contains list of chats with auxiliary data.","messages.ChatFull":"Full info about a channel, supergroup, gigagroup or basic group.","messages.AffectedHistory":"Object contains info on affected part of communication history with the user or in a chat.","MessagesFilter":"Object describes message filter.","Update":"Object contains info on events occurred.","updates.State":"Object contains info on state for further updates.","updates.Difference":"Occurred changes.","Updates":"Object which is perceived by the client without a call on its part when an event occurs.","photos.Photos":"Object contains list of photos with auxiliary data.","photos.Photo":"Photo with auxiliary data.","upload.File":"Contains info on file.","DcOption":"Information for connection to data center.","Config":"Object contains info on API configuring parameters.","NearestDc":"Object contains info on nearest data center.","help.AppUpdate":"Contains info on app update availability.","help.InviteText":"Object contains info on the text of a message with an invitation.","EncryptedChat":"Object contains info on an encrypted chat.","InputEncryptedChat":"Object sets an encrypted chat ID.","EncryptedFile":"Seta an encrypted file.","InputEncryptedFile":"Object sets encrypted file for attachment","EncryptedMessage":"Object contains encrypted message.","messages.DhConfig":"Contains Diffie-Hellman key generation protocol parameters.","messages.SentEncryptedMessage":"Contains info on message sent to an encrypted chat.","InputDocument":"Defines a document for subsequent interaction.","Document":"A document.","help.Support":"Info about the support user, relevant to the current user.","NotifyPeer":"Object defines the set of users and/or groups that generate notifications.","SendMessageAction":"User actions. Use this to provide users with detailed info about their chat partner's actions: typing or sending attachments of all kinds.","contacts.Found":"Object contains info on users found by name substring and auxiliary data.","InputPrivacyKey":"Privacy keys together with privacy rules » indicate what can or can't someone do and are specified by a PrivacyKey constructor, and its input counterpart InputPrivacyKey.\n\nSee the privacy documentation » for more info.","PrivacyKey":"Privacy keys together with privacy rules » indicate what can or can't someone do and are specified by a PrivacyKey constructor, and its input counterpart InputPrivacyKey.\n\nSee the privacy documentation » for more info.","InputPrivacyRule":"Privacy rules indicate who can or can't do something and are specified by a PrivacyRule, and its input counterpart InputPrivacyRule.\n\nSee the privacy documentation » for more info.","PrivacyRule":"Privacy rules together with privacy keys indicate what can or can't someone do and are specified by a PrivacyRule constructor, and its input counterpart InputPrivacyRule.\n\nSee the privacy documentation » for more info.","account.PrivacyRules":"Privacy rules","AccountDaysTTL":"Time-to-live of current account","DocumentAttribute":"Various possible attributes of a document (used to define if it's a sticker, a GIF, a video, a mask sticker, an image, an audio, and so on)","messages.Stickers":"Stickers","StickerPack":"Stickerpack","messages.AllStickers":"All stickers","messages.AffectedMessages":"Messages affected by changes","WebPage":"Instant View webpage preview","Authorization":"Represents a logged-in session","account.Authorizations":"Logged-in sessions","account.Password":"Configuration for two-factor authorization","account.PasswordSettings":"Private info associated to the password info (recovery email, telegram passport info & so on)","account.PasswordInputSettings":"Constructor for setting up a new 2FA SRP password","auth.PasswordRecovery":"Recovery info of a 2FA password, only for accounts with a recovery email configured.","ReceivedNotifyMessage":"Confirmation of message receipt","ExportedChatInvite":"Exported chat invite","ChatInvite":"Chat invite","InputStickerSet":"Represents a stickerset","StickerSet":"Represents a stickerset (stickerpack)","messages.StickerSet":"Stickerset","BotCommand":"Describes a bot command that can be used in a chat","BotInfo":"Info about bots (available bot commands, etc)","KeyboardButton":"Bot or inline keyboard buttons","KeyboardButtonRow":"Bot or inline keyboard rows","ReplyMarkup":"Reply markup for bot and inline keyboards","MessageEntity":"Message entities, representing styled text in a message","InputChannel":"Represents a channel","contacts.ResolvedPeer":"Peer returned after resolving a @username","MessageRange":"Indicates a range of chat messages","updates.ChannelDifference":"Contains the difference (new messages) between our local channel state and the remote state","ChannelMessagesFilter":"Filter for fetching only certain types of channel messages","ChannelParticipant":"Channel participant","ChannelParticipantsFilter":"Filter for fetching channel participants","channels.ChannelParticipants":"Channel/supergroup participants","channels.ChannelParticipant":"Channel participant","help.TermsOfService":"Contains info about the latest telegram Terms Of Service.","messages.SavedGifs":"Saved GIFs","InputBotInlineMessage":"Represents a sent inline message from the perspective of a bot","InputBotInlineResult":"Inline bot result","BotInlineMessage":"Inline message","BotInlineResult":"Results of an inline query","messages.BotResults":"Result of a query to an inline bot","ExportedMessageLink":"HTTP link and embed info of channel message","MessageFwdHeader":"Info about a forwarded message","auth.CodeType":"Type of verification code that will be sent next if you call the resendCode method","auth.SentCodeType":"Type of the verification code that was sent","messages.BotCallbackAnswer":"Callback answer of bot","messages.MessageEditData":"Message edit data for media","InputBotInlineMessageID":"Represents a sent inline message from the perspective of a bot","InlineBotSwitchPM":"The bot requested the user to message them in private","messages.PeerDialogs":"List of dialogs","TopPeer":"Top peer","TopPeerCategory":"Top peer category","TopPeerCategoryPeers":"Top peers by top peer category","contacts.TopPeers":"Top peers","DraftMessage":"Represents a message draft.","messages.FeaturedStickers":"Featured stickers","messages.RecentStickers":"Recent stickers","messages.ArchivedStickers":"Archived stickers","messages.StickerSetInstallResult":"Result of stickerset installation process","StickerSetCovered":"Stickerset preview","MaskCoords":"Mask coordinates (if this is a mask sticker, attached to a photo)","InputStickeredMedia":"Represents a media with attached stickers","Game":"Indicates an already sent game","InputGame":"A game to send","HighScore":"Game high score","messages.HighScores":"High scores (in games)","RichText":"Rich text","PageBlock":"Represents an instant view page element","PhoneCallDiscardReason":"Why was the phone call discarded?","DataJSON":"Represent a JSON-encoded object","LabeledPrice":"Labeled pricetag","Invoice":"Invoice","PaymentCharge":"Charged payment","PostAddress":"Shipping address","PaymentRequestedInfo":"Requested payment info","PaymentSavedCredentials":"Saved payment credentials","WebDocument":"Remote document","InputWebDocument":"Specifies a document that will have to be downloaded from the URL by the telegram servers","InputWebFileLocation":"Location of remote file","upload.WebFile":"Remote file","payments.PaymentForm":"Payment form","payments.ValidatedRequestedInfo":"Validated requested info","payments.PaymentResult":"Payment result","payments.PaymentReceipt":"Payment receipt","payments.SavedInfo":"Saved payment info","InputPaymentCredentials":"Payment credentials","account.TmpPassword":"Temporary password","ShippingOption":"Shipping options","InputStickerSetItem":"Sticker","InputPhoneCall":"Phone call","PhoneCall":"Phone call","PhoneConnection":"Phone call connection","PhoneCallProtocol":"Phone call protocol","phone.PhoneCall":"Phone call","upload.CdnFile":"Represents the download status of a CDN file","CdnPublicKey":"Public key to use only during handshakes to CDN DCs.","CdnConfig":"Configuration for CDN file downloads.","LangPackString":"Language pack string","LangPackDifference":"Language pack changes","LangPackLanguage":"Language pack language","ChannelAdminLogEventAction":"Channel admin log event","ChannelAdminLogEvent":"An event in a channel admin log","channels.AdminLogResults":"Admin log events","ChannelAdminLogEventsFilter":"Filter for fetching events in the channel admin log","PopularContact":"Popular contact","messages.FavedStickers":"Favorited stickers","RecentMeUrl":"Recent t.me urls","help.RecentMeUrls":"Recent t.me URLs","InputSingleMedia":"A single media in an album or grouped media sent with {@link messages.RawSendMultiMediaRequest}.","WebAuthorization":"Web authorization","account.WebAuthorizations":"Web authorizations","InputMessage":"A message","InputDialogPeer":"Peer, or all peers in a certain folder","DialogPeer":"Peer, or all peers in a folder","messages.FoundStickerSets":"Found stickersets","FileHash":"Hash of an uploaded file, to be checked for validity after download","InputClientProxy":"Info about an MTProxy used to connect.","help.TermsOfServiceUpdate":"Update of Telegram's terms of service","InputSecureFile":"Secure passport file, for more info see the passport docs »","SecureFile":"Secure passport file, for more info see the passport docs »","SecureData":"Secure passport data, for more info see the passport docs »","SecurePlainData":"Plaintext verified passport data.","SecureValueType":"Secure value type","SecureValue":"Secure Telegram Passport value","InputSecureValue":"Secure value, for more info see the passport docs »","SecureValueHash":"Secure value hash","SecureValueError":"Secure value error","SecureCredentialsEncrypted":"Encrypted secure credentials","account.AuthorizationForm":"Authorization form","account.SentEmailCode":"The email code that was sent","help.DeepLinkInfo":"Contains information about an unsupported deep link »","SavedContact":"Saved contact","account.Takeout":"Takeout info","PasswordKdfAlgo":"Key derivation function to use when generating the password hash for SRP two-factor authorization","SecurePasswordKdfAlgo":"KDF algorithm to use for computing telegram passport hash","SecureSecretSettings":"Telegram passport settings","InputCheckPasswordSRP":"Constructors for checking the validity of a 2FA SRP password.\n\nSee here » for more info on the 2FA authentication flow for methods that require it, before and after login.","SecureRequiredType":"Required secure file type","help.PassportConfig":"Telegram passport configuration","InputAppEvent":"Object contains info about an event that occurred in the application.","JSONObjectValue":"JSON key: value pair","JSONValue":"JSON value","PageTableCell":"Represents a table in an instant view table","PageTableRow":"Table row","PageCaption":"Page caption","PageListItem":"Item in block list","PageListOrderedItem":"Represents an instant view ordered list","PageRelatedArticle":"Related articles","Page":"Instant view page","help.SupportName":"Get localized name for support user","help.UserInfo":"User info","PollAnswer":"Indicates a possible answer to a poll.","Poll":"Indicates a poll message","PollAnswerVoters":"How users voted on a certain poll answer","PollResults":"Results of poll","ChatOnlines":"Number of online users in a chat","StatsURL":"URL with chat statistics","ChatAdminRights":"Represents the rights of an admin in a channel/supergroup.","ChatBannedRights":"Represents the rights of a normal user in a supergroup/channel/chat.","InputWallPaper":"Wallpaper","account.WallPapers":"Wallpapers","CodeSettings":"Settings for the code type to send","WallPaperSettings":"Wallpaper rendering information.","AutoDownloadSettings":"Media autodownload settings","account.AutoDownloadSettings":"Media autodownload settings","EmojiKeyword":"Emoji keyword","EmojiKeywordsDifference":"New emoji keywords","EmojiURL":"Emoji URL","EmojiLanguage":"Emoji language","Folder":"A folder","InputFolderPeer":"Peer in a folder","FolderPeer":"Peer associated to folder","messages.SearchCounter":"Number of results that would be returned by a search","UrlAuthResult":"URL authorization result","ChannelLocation":"Geographical location of supergroup (geogroups)","PeerLocated":"Geolocated peer","RestrictionReason":"Restriction reason","InputTheme":"Cloud theme","Theme":"Cloud theme","account.Themes":"Installed themes","auth.LoginToken":"Login token (for QR code login)","account.ContentSettings":"Sensitive content settings","messages.InactiveChats":"Inactive chat list","BaseTheme":"Basic theme settings","InputThemeSettings":"Theme settings","ThemeSettings":"Theme settings","WebPageAttribute":"Webpage attributes","messages.VotesList":"How users voted in a poll","BankCardOpenUrl":"Credit card info URL provided by the bank","payments.BankCardData":"Credit card info, provided by the card's bank(s)","DialogFilter":"Dialog filter (folder »)","DialogFilterSuggested":"Suggested dialog filters (folder »)","StatsDateRangeDays":"Channel statistics date range","StatsAbsValueAndPrev":"Channel statistics value pair","StatsPercentValue":"Channel statistics percentage","StatsGraph":"Channel statistics graph","stats.BroadcastStats":"Channel statistics","help.PromoData":"Info about pinned MTProxy or Public Service Announcement peers.","VideoSize":"Represents an animated video thumbnail","StatsGroupTopPoster":"Most active user in a supergroup","StatsGroupTopAdmin":"Most active admin in a supergroup","StatsGroupTopInviter":"Most active inviter in a supergroup","stats.MegagroupStats":"Supergroup statistics","GlobalPrivacySettings":"Global privacy settings","help.CountryCode":"Country code and phone number pattern of a specific country","help.Country":"Name, ISO code, localized name and phone codes/patterns of a specific country","help.CountriesList":"Name, ISO code, localized name and phone codes/patterns of all available countries","MessageViews":"View, forward counter + info about replies of a specific message","messages.MessageViews":"View, forward counter + info about replies","messages.DiscussionMessage":"Info about a message thread","MessageReplyHeader":"Reply information","MessageReplies":"Info about post comments (for channels) or message replies (for groups)","PeerBlocked":"Info about a blocked user","stats.MessageStats":"Message statistics","GroupCall":"A group call","InputGroupCall":"Indicates a group call","GroupCallParticipant":"Info about a group call participant","phone.GroupCall":"Contains info about a group call, and partial info about its participants.","phone.GroupParticipants":"Info about the participants of a group call or livestream","InlineQueryPeerType":"Inline query peer type.","messages.HistoryImport":"Identifier of a history import session, click here for more info ».","messages.HistoryImportParsed":"Contains information about a chat export file, generated by a foreign chat app.","messages.AffectedFoundMessages":"Messages found and affected by changes","ChatInviteImporter":"When and which user joined the chat using a chat invite","messages.ExportedChatInvites":"Info about chat invites exported by a certain admin.","messages.ExportedChatInvite":"Contains info about a chat invite, and eventually a pointer to the newest chat invite.","messages.ChatInviteImporters":"List of users that imported a chat invitation link.","ChatAdminWithInvites":"Info about chat invites generated by admins.","messages.ChatAdminsWithInvites":"Info about chat invites generated by admins.","messages.CheckedHistoryImportPeer":"Contains a confirmation text to be shown to the user, upon importing chat history, click here for more info ».","phone.JoinAsPeers":"A list of peers that can be used to join a group call, presenting yourself as a specific user/channel.","phone.ExportedGroupCallInvite":"An exported group call invitation.","GroupCallParticipantVideoSourceGroup":"Describes a group of video synchronization source identifiers","GroupCallParticipantVideo":"Info about a video stream","stickers.SuggestedShortName":"A suggested short name for the specified stickerpack","BotCommandScope":"Represents a scope where the bot commands, specified using {@link bots.RawSetBotCommandsRequest} will be valid.","account.ResetPasswordResult":"Result of an {@link account.RawResetPasswordRequest} request.","SponsoredMessage":"A sponsored message","messages.SponsoredMessages":"A set of sponsored messages associated with a channel","SearchResultsCalendarPeriod":"Information about found messages sent on a specific day, used to split the messages in {@link messages.RawSearchResultsCalendar} constructors by days.","messages.SearchResultsCalendar":"Information about found messages sent on a specific day","SearchResultsPosition":"Information about a message in a specific position","messages.SearchResultsPositions":"Information about sparse positions of messages","channels.SendAsPeers":"A list of peers that can be used to send messages in a specific group","users.UserFull":"Full user information, with attached context peers for reactions","messages.PeerSettings":"Peer settings","auth.LoggedOut":"Future auth token » to be used on subsequent authorizations","ReactionCount":"Number of users that reacted with a certain emoji","MessageReactions":"Message reactions »","messages.MessageReactionsList":"List of peers that reacted to a specific message","AvailableReaction":"Animations associated with a message reaction","messages.AvailableReactions":"Animations and metadata associated with message reactions »","MessagePeerReaction":"How a certain peer reacted to the message","GroupCallStreamChannel":"Info about an RTMP stream in a group call or livestream","phone.GroupCallStreamChannels":"Info about RTMP streams in a group call or livestream","phone.GroupCallStreamRtmpUrl":"RTMP URL and stream key to be used in streaming software","AttachMenuBotIconColor":"Represents an attachment menu icon color for bot mini apps »","AttachMenuBotIcon":"Represents an attachment menu icon for bot mini apps »","AttachMenuBot":"Represents a bot mini app that can be launched from the attachment menu »","AttachMenuBots":"Represents a list of bot mini apps that can be launched from the attachment menu »","AttachMenuBotsBot":"Represents a bot mini app that can be launched from the attachment menu »","WebViewResult":"Contains the webview URL with appropriate theme and user info parameters added","WebViewMessageSent":"Contains information about an inline message sent by a Web App on behalf of a user.","BotMenuButton":"Indicates the action to execute when pressing the in-UI menu button for bots","account.SavedRingtones":"Contains a list of saved notification sounds","NotificationSound":"Represents a notification sound","account.SavedRingtone":"Contains information about a saved notification sound","AttachMenuPeerType":"Indicates a supported peer type for a bot mini app attachment menu","InputInvoice":"An invoice","payments.ExportedInvoice":"Exported invoice","messages.TranscribedAudio":"Transcribed text from a voice message","help.PremiumPromo":"Telegram Premium promotion information","InputStorePaymentPurpose":"Info about a Telegram Premium purchase","PremiumGiftOption":"Telegram Premium gift option","PaymentFormMethod":"Represents a payment method","EmojiStatus":"Emoji status","account.EmojiStatuses":"A list of emoji statuses","Reaction":"Message reaction","ChatReactions":"Available chat reactions","messages.Reactions":"A set of message reactions","EmailVerifyPurpose":"Email verification purpose","EmailVerification":"Email verification code or token","account.EmailVerified":"Email verification status","PremiumSubscriptionOption":"Telegram Premium subscription option","SendAsPeer":"Indicates a peer that can be used to send messages","MessageExtendedMedia":"Paid media, see here » for more info.","StickerKeyword":"Keywords for a certain sticker","Username":"Contains information about a username","ForumTopic":"Contains information about a forum topic","messages.ForumTopics":"Contains information about multiple forum topics","DefaultHistoryTTL":"Contains info about the default value of the Time-To-Live setting, applied to all new chats.","ExportedContactToken":"Describes a temporary profile link.","RequestPeerType":"Filtering criteria to use for the peer selection list shown to the user.","EmojiList":"Represents a list of custom emojis.","EmojiGroup":"Represents an emoji category.","messages.EmojiGroups":"Represents a list of emoji categories.","TextWithEntities":"Styled text with message entities","messages.TranslatedText":"Translated text with entities.","AutoSaveSettings":"Media autosave settings","AutoSaveException":"Peer-specific autosave settings","account.AutoSaveSettings":"Contains media autosave settings","help.AppConfig":"Contains various client configuration parameters","InputBotApp":"Used to fetch information about a direct link Mini App","BotApp":"Contains information about a direct link Mini App.","messages.BotApp":"Contains information about a direct link Mini App","InlineBotWebView":"Specifies an inline mode mini app button, shown on top of the inline query results list.","ReadParticipantDate":"Contains info about when a certain participant has read a message","InputChatlist":"Represents a folder","ExportedChatlistInvite":"An exported chat folder deep link ».","chatlists.ExportedChatlistInvite":"Exported chat folder deep link ».","chatlists.ExportedInvites":"A list of exported chat folder deep links ».","chatlists.ChatlistInvite":"Info about a chat folder deep link ».","chatlists.ChatlistUpdates":"Updated info about a chat folder deep link ».","bots.BotInfo":"Localized name, about text and description of a bot.","MessagePeerVote":"How a user voted in a poll","StoryViews":"Aggregated view and reaction information of a story","StoryItem":"Represents a Telegram Story","stories.AllStories":"Full list of active (or active and hidden) stories.","stories.Stories":"List of stories","StoryView":"Story view date and reaction information","stories.StoryViewsList":"Reaction and view counters for a story","stories.StoryViews":"Reaction and view counters for a list of stories","InputReplyTo":"Contains info about a message or story to reply to.","ExportedStoryLink":"Represents a story deep link","StoriesStealthMode":"Story stealth mode status","MediaAreaCoordinates":"Coordinates and size of a clicable rectangular area on top of a story.","MediaArea":"Represents a story media area »","PeerStories":"Stories associated to a peer","stories.PeerStories":"Active story list of a specific peer.","messages.WebPage":"Contains an instant view webpage.","PremiumGiftCodeOption":"Giveaway option.","payments.CheckedGiftCode":"Info about a Telegram Premium Giftcode.","payments.GiveawayInfo":"Info about a Telegram Premium Giveaway.","PrepaidGiveaway":"Contains info about a prepaid giveaway ».","Boost":"Info about one or more boosts applied by a specific user.","premium.BoostsList":"List of boosts that were applied to a peer by multiple users.","MyBoost":"Contains information about a single boost slot ».","premium.MyBoosts":"A list of peers we are currently boosting, and how many boost slots we have left.","premium.BoostsStatus":"Contains info about the current boost status of a peer.","StoryFwdHeader":"Contains info about the original poster of a reposted story.","PostInteractionCounters":"Interaction counters","stats.StoryStats":"Contains statistics about a story.","PublicForward":"Contains info about the forwards of a story as a message to public chats and reposts by public channels.","stats.PublicForwards":"Contains info about the forwards of a story as a message to public chats and reposts by public channels.","PeerColor":"Represents a color palette ».","help.PeerColorSet":"Contains info about a color palette ».","help.PeerColorOption":"Contains info about a color palette ».","help.PeerColors":"Contains info about multiple color palettes ».","StoryReaction":"How a certain peer reacted to or interacted with a story","stories.StoryReactionsList":"List of peers that reacted to a specific story","SavedDialog":"Represents a saved message dialog ».","messages.SavedDialogs":"Represents some saved message dialogs ».","SavedReactionTag":"Info about a saved message reaction tag ».","messages.SavedReactionTags":"List of reaction tag » names assigned by the user.","OutboxReadDate":"Exact read date of a private message we sent to another user.","smsjobs.EligibilityToJoin":"SMS jobs eligibility","smsjobs.Status":"Status","SmsJob":"Info about an SMS job.","BusinessWeeklyOpen":"A time interval, indicating the opening hours of a Telegram Business.","BusinessWorkHours":"Specifies a set of Telegram Business opening hours.","BusinessLocation":"Represents the location of a Telegram Business ».","InputBusinessRecipients":"Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.","BusinessRecipients":"Specifies the chats that can receive Telegram Business away » and greeting » messages.","BusinessAwayMessageSchedule":"Specifies when should the Telegram Business away messages be sent.","InputBusinessGreetingMessage":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","BusinessGreetingMessage":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","InputBusinessAwayMessage":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","BusinessAwayMessage":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","Timezone":"Timezone information.","help.TimezonesList":"Timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».","QuickReply":"A quick reply shortcut.","InputQuickReplyShortcut":"Represents a quick reply shortcut ».","messages.QuickReplies":"Info about quick reply shortcuts ».","ConnectedBot":"Contains info about a connected business bot ».","account.ConnectedBots":"Info about currently connected business bots.","messages.DialogFilters":"Folder information","Birthday":"Birthday information for a user.","BotBusinessConnection":"Contains info about a bot business connection.","InputBusinessIntro":"Telegram Business introduction ».","BusinessIntro":"Telegram Business introduction ».","messages.MyStickers":"The list of stickersets owned by the current account ».","InputCollectible":"Represents a Fragment collectible ».","fragment.CollectibleInfo":"Info about a fragment collectible.","InputBusinessBotRecipients":"Specifies the private chats that a connected business bot » may interact with.","BusinessBotRecipients":"Specifies the private chats that a connected business bot » may receive messages and interact with.","ContactBirthday":"Birthday information of a contact.","contacts.ContactBirthdays":"Birthday information of our contacts.","MissingInvitee":"Info about why a specific user could not be invited ».","messages.InvitedUsers":"Contains info about successfully or unsuccessfully invited » users.","InputBusinessChatLink":"Contains info about a business chat deep link » to be created by the current account.","BusinessChatLink":"Contains info about a business chat deep link » created by the current account.","account.BusinessChatLinks":"Contains info about business chat deep links » created by the current account.","account.ResolvedBusinessChatLinks":"Contains info about a single resolved business chat deep link ».","RequestedPeer":"Info about a peer, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.","SponsoredMessageReportOption":"A report option for a sponsored message ».","channels.SponsoredMessageReportResult":"Status of the method call used to report a sponsored message ».","stats.BroadcastRevenueStats":"Channel revenue ad statistics, see here » for more info.","stats.BroadcastRevenueWithdrawalUrl":"Contains the URL to use to withdraw channel ad revenue.","BroadcastRevenueTransaction":"A channel ad revenue » transaction.","stats.BroadcastRevenueTransactions":"Channel ad revenue transactions ».","ReactionNotificationsFrom":"Reaction notification settings","ReactionsNotifySettings":"Reaction notification settings, see here » for more info.","BroadcastRevenueBalances":"Channel ad revenue balance » information.","AvailableEffect":"Describes a message effect ».","messages.AvailableEffects":"Full list of usable animated message effects ».","FactCheck":"Represents a fact-check » created by an independent fact-checker.","StarsTransactionPeer":"Source of an incoming Telegram Star transaction, or its recipient for outgoing Telegram Star transactions.","StarsTopupOption":"Telegram Stars topup option.","StarsTransaction":"Represents a Telegram Stars transaction ».","payments.StarsStatus":"Info about the current Telegram Star subscriptions, balance and transaction history ».","FoundStory":"A story found using global story search ».","stories.FoundStories":"Stories found using global story search ».","GeoPointAddress":"Address optionally associated to a {@link RawGeoPoint}.","StarsRevenueStatus":"Describes Telegram Star revenue balances ».","payments.StarsRevenueStats":"Star revenue statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in Stars.","payments.StarsRevenueWithdrawalUrl":"Contains the URL to use to withdraw Telegram Star revenue.","payments.StarsRevenueAdsAccountUrl":"Contains a URL leading to a page where the user will be able to place ads for the channel/bot, paying using Telegram Stars.","InputStarsTransaction":"Used to fetch info about a Telegram Star transaction ».","StarsGiftOption":"Telegram Stars gift option.","bots.PopularAppBots":"Popular Main Mini Apps, to be used in the apps tab of global search ».","BotPreviewMedia":"Represents a Main Mini App preview media, see here » for more info.","bots.PreviewInfo":"Contains info about Main Mini App previews, see here » for more info.","StarsSubscriptionPricing":"Pricing of a Telegram Star subscription ».","StarsSubscription":"Represents a Telegram Star subscription ».","MessageReactor":"Info about a user in the paid Star reactions leaderboard for a message.","StarsGiveawayOption":"Contains info about a Telegram Star giveaway option.","StarsGiveawayWinnersOption":"Represents a possible option for the number of winners in a star giveaway","StarGift":"Represents a star gift, see here » for more info.","payments.StarGifts":"Available gifts ».","UserStarGift":"Represents a gift, displayed on a user's profile page.","payments.UserStarGifts":"Gifts displayed on a user's profile.","MessageReportOption":"Report menu option","ReportResult":"Represents a report menu or result"}} \ No newline at end of file diff --git a/packages/tl/data/documentation.cache.json b/packages/tl/data/documentation.cache.json index 56362d19..ca7cb4fe 100644 --- a/packages/tl/data/documentation.cache.json +++ b/packages/tl/data/documentation.cache.json @@ -1 +1 @@ -{ "updated": "07.08.2024, 17:19:59 (layer 185) - from https://corefork.telegram.org", "classes": { "error": { "comment": "Error.", "arguments": { "code": "Error code", "text": "Message" } }, "inputUser": { "comment": "Defines a user for further interaction.", "arguments": { "user_id": "User identifier", "access_hash": "access_hash value from the {@link RawUser} constructor" } }, "inputPeerUserFromMessage": { "comment": "Defines a min user that was seen in a certain message of a certain chat.", "arguments": { "peer": "The chat where the user was seen", "msg_id": "The message ID", "user_id": "The identifier of the user that was seen" } }, "inputPeerChat": { "comment": "Defines a chat for further interaction.", "arguments": { "chat_id": "Chat identifier" } }, "inputPeerUser": { "comment": "Defines a user for further interaction.", "arguments": { "user_id": "User identifier", "access_hash": "access_hash value from the {@link RawUser} constructor" } }, "inputUserSelf": { "comment": "Defines the current user.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPeerChannel": { "comment": "Defines a channel for further interaction.", "arguments": { "channel_id": "Channel identifier", "access_hash": "access_hash value from the {@link RawChannel} constructor" } }, "inputPeerEmpty": { "comment": "An empty constructor, no user or chat is defined.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputUserEmpty": { "comment": "Empty constructor, does not define a user.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPeerChannelFromMessage": { "comment": "Defines a min channel that was seen in a certain message of a certain chat.", "arguments": { "peer": "The chat where the channel's message was seen", "msg_id": "The message ID", "channel_id": "The identifier of the channel that was seen" } }, "inputUserFromMessage": { "comment": "Defines a min user that was seen in a certain message of a certain chat.", "arguments": { "peer": "The chat where the user was seen", "msg_id": "The message ID", "user_id": "The identifier of the user that was seen" } }, "inputPeerSelf": { "comment": "Defines the current user.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPhoneContact": { "comment": "Phone contact.", "arguments": { "client_id": "An arbitrary 64-bit integer: it should be set, for example, to an incremental number when using {@link contacts.RawImportContactsRequest}, in order to retry importing only the contacts that weren't imported successfully, according to the client_ids returned in {@link contacts.RawImportedContacts}.retry_contacts.", "phone": "Phone number", "first_name": "Contact's first name", "last_name": "Contact's last name" } }, "inputMediaEmpty": { "comment": "Empty media content of a message.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputFile": { "comment": "Defines a file saved in parts using the method {@link upload.RawSaveFilePartRequest}.", "arguments": { "id": "Random file identifier created by the client", "parts": "Number of parts saved", "name": "Full name of the file", "md5_checksum": "In case the file's md5-hash was passed, contents of the file will be checked prior to use" } }, "inputFileBig": { "comment": "Assigns a big file (over 10 MB in size), saved in part using the method {@link upload.RawSaveBigFilePartRequest}.", "arguments": { "id": "Random file id, created by the client", "parts": "Number of parts saved", "name": "Full file name" } }, "inputFileStoryDocument": { "comment": "Used to edit the thumbnail/static preview of a story, see here » for more info on the full flow.", "arguments": { "id": "The old story video." } }, "inputMediaUploadedPhoto": { "comment": "Photo", "arguments": { "flags": "Flags, see TL conditional fields", "spoiler": "Whether this media should be hidden behind a spoiler warning", "file": "The uploaded file", "stickers": "Attached mask stickers", "ttl_seconds": "Time to live in seconds of self-destructing photo" } }, "inputMediaPhoto": { "comment": "Forwarded photo", "arguments": { "flags": "Flags, see TL conditional fields", "spoiler": "Whether this media should be hidden behind a spoiler warning", "id": "Photo to be forwarded", "ttl_seconds": "Time to live in seconds of self-destructing photo" } }, "inputMediaGeoPoint": { "comment": "Map.", "arguments": { "geo_point": "GeoPoint" } }, "inputMediaContact": { "comment": "Phone book contact", "arguments": { "phone_number": "Phone number", "first_name": "Contact's first name", "last_name": "Contact's last name", "vcard": "Contact vcard" } }, "inputMediaDocument": { "comment": "Forwarded document", "arguments": { "flags": "Flags, see TL conditional fields", "spoiler": "Whether this media should be hidden behind a spoiler warning", "id": "The document to be forwarded.", "ttl_seconds": "Time to live of self-destructing document", "query": "Text query or emoji that was used by the user to find this sticker or GIF: used to improve search result relevance." } }, "inputMediaVenue": { "comment": "Can be used to send a venue geolocation.", "arguments": { "geo_point": "Geolocation", "title": "Venue name", "address": "Physical address of the venue", "provider": "Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported", "venue_id": "Venue ID in the provider's database", "venue_type": "Venue type in the provider's database" } }, "inputMediaGame": { "comment": "A game", "arguments": { "id": "The game to forward" } }, "inputMediaInvoice": { "comment": "Generated invoice of a bot payment", "arguments": { "flags": "Flags, see TL conditional fields", "title": "Product name, 1-32 characters", "description": "Product description, 1-255 characters", "photo": "URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for.", "invoice": "The actual invoice", "payload": "Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes.", "provider": "Payments provider token, obtained via Botfather", "provider_data": "JSON-encoded data about the invoice, which will be shared with the payment provider. A detailed description of required fields should be provided by the payment provider.", "start_param": "Unique bot deep links start parameter. If present, forwarded copies of the sent message will have a URL button with a deep link to the bot (instead of a Pay button), with the value used as the start parameter. If absent, forwarded copies of the sent message will have a Pay button, allowing multiple users to pay directly from the forwarded message, using the same invoice.", "extended_media": "Deprecated" } }, "inputMediaDocumentExternal": { "comment": "Document that will be downloaded by the telegram servers", "arguments": { "flags": "Flags, see TL conditional fields", "spoiler": "Whether this media should be hidden behind a spoiler warning", "url": "URL of the document", "ttl_seconds": "Self-destruct time to live of document" } }, "inputMediaPhotoExternal": { "comment": "New photo that will be uploaded by the server using the specified URL", "arguments": { "flags": "Flags, see TL conditional fields", "spoiler": "Whether this media should be hidden behind a spoiler warning", "url": "URL of the photo", "ttl_seconds": "Self-destruct time to live of photo" } }, "inputMediaGeoLive": { "comment": "Live geolocation", "arguments": { "flags": "Flags, see TL conditional fields", "stopped": "Whether sending of the geolocation was stopped", "geo_point": "Current geolocation", "heading": "For live locations, a direction in which the location moves, in degrees; 1-360.", "period": "Validity period of the current location", "proximity_notification_radius": "For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)" } }, "inputMediaUploadedDocument": { "comment": "New document", "arguments": { "flags": "Flags, see TL conditional fields", "nosound_video": "Whether the specified document is a video file with no audio tracks (a GIF animation (even as MPEG4), for example)", "force_file": "Force the media file to be uploaded as document", "spoiler": "Whether this media should be hidden behind a spoiler warning", "file": "The uploaded file", "thumb": "Thumbnail of the document, uploaded as for the file", "mime_type": "MIME type of document", "attributes": "Attributes that specify the type of the document (video, audio, voice, sticker, etc.)", "stickers": "Attached stickers", "ttl_seconds": "Time to live in seconds of self-destructing document" } }, "inputMediaPoll": { "comment": "A poll", "arguments": { "flags": "Flags, see TL conditional fields", "poll": "The poll to send", "correct_answers": "Correct answer IDs (for quiz polls)", "solution": "Explanation of quiz solution", "solution_entities": "Message entities for styled text" } }, "inputMediaDice": { "comment": "Send a dice-based animated sticker", "arguments": { "emoticon": "The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported" } }, "inputMediaStory": { "comment": "Forwarded story", "arguments": { "peer": "Peer where the story was posted", "id": "Story ID" } }, "inputMediaWebPage": { "comment": "Specifies options that will be used to generate the link preview for the caption, or even a standalone link preview without an attached message.", "arguments": { "flags": "Flags, see TL conditional fields", "force_large_media": "If set, specifies that a large media preview should be used.", "force_small_media": "If set, specifies that a small media preview should be used.", "optional": "If not set, a WEBPAGE_NOT_FOUND RPC error will be emitted if a webpage preview cannot be generated for the specified url; otherwise, no error will be emitted (unless the provided message is also empty, in which case a MESSAGE_EMPTY will be emitted, instead).", "url": "The URL to use for the link preview." } }, "inputChatPhotoEmpty": { "comment": "Empty constructor, remove group photo.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputChatUploadedPhoto": { "comment": "New photo to be set as group profile photo.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.", "arguments": { "flags": "Flags, see TL conditional fields", "file": "File saved in parts using the method {@link upload.RawSaveFilePartRequest}", "video": "Square video for animated profile picture", "video_start_ts": "Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set.", "video_emoji_markup": "Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor." } }, "inputChatPhoto": { "comment": "Existing photo to be set as a chat profile photo.", "arguments": { "id": "Existing photo" } }, "inputMediaPaidMedia": { "comment": "Paid media, see here » for more info.", "arguments": { "stars_amount": "The price of the media in Telegram Stars.", "extended_media": "Photos or videos." } }, "inputGeoPointEmpty": { "comment": "Empty GeoPoint constructor.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPhotoEmpty": { "comment": "Empty constructor.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputEncryptedFileLocation": { "comment": "Location of encrypted secret chat file.", "arguments": { "id": "File ID, id parameter value from {@link RawEncryptedFile}", "access_hash": "Checksum, access_hash parameter value from {@link RawEncryptedFile}" } }, "inputGeoPoint": { "comment": "Defines a GeoPoint by its coordinates.", "arguments": { "flags": "Flags, see TL conditional fields", "lat": "Latitude", "long": "Longitude", "accuracy_radius": "The estimated horizontal accuracy of the location, in meters; as defined by the sender." } }, "inputPhoto": { "comment": "Defines a photo for further interaction.", "arguments": { "id": "Photo identifier", "access_hash": "access_hash value from the {@link RawPhoto} constructor", "file_reference": "File reference" } }, "inputDocumentFileLocation": { "comment": "Document location (video, voice, audio, basically every type except photo)", "arguments": { "id": "Document ID", "access_hash": "access_hash parameter from the {@link RawDocument} constructor", "file_reference": "File reference", "thumb_size": "Thumbnail size to download the thumbnail" } }, "inputSecureFileLocation": { "comment": "Location of encrypted telegram passport file.", "arguments": { "id": "File ID, id parameter value from {@link RawSecureFile}", "access_hash": "Checksum, access_hash parameter value from {@link RawSecureFile}" } }, "inputPhotoLegacyFileLocation": { "comment": "DEPRECATED legacy photo file location", "arguments": { "id": "Photo ID", "access_hash": "Access hash", "file_reference": "File reference", "volume_id": "Volume ID", "local_id": "Local ID", "secret": "Secret" } }, "inputPhotoFileLocation": { "comment": "Use this object to download a photo with {@link upload.RawGetFileRequest} method", "arguments": { "id": "Photo ID, obtained from the {@link RawPhoto} object", "access_hash": "Photo's access hash, obtained from the {@link RawPhoto} object", "file_reference": "File reference", "thumb_size": "The PhotoSize to download: must be set to the type field of the desired PhotoSize object of the {@link RawPhoto}" } }, "peerUser": { "comment": "Chat partner", "arguments": { "user_id": "User identifier" } }, "peerChat": { "comment": "Group.", "arguments": { "chat_id": "Group identifier" } }, "inputStickerSetThumb": { "comment": "Location of stickerset thumbnail (see files)", "arguments": { "stickerset": "Sticker set", "thumb_version": "Thumbnail version" } }, "storage.filePartial": { "comment": "Part of a bigger file.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "storage.fileUnknown": { "comment": "Unknown type.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputTakeoutFileLocation": { "comment": "Used to download a JSON file that will contain all personal data related to features that do not have a specialized takeout method yet, see here » for more info on the takeout API.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputGroupCallStream": { "comment": "Chunk of a livestream", "arguments": { "flags": "Flags, see TL conditional fields", "call": "Livestream info", "time_ms": "Timestamp in milliseconds", "scale": "Specifies the duration of the video segment to fetch in milliseconds, by bitshifting 1000 to the right scale times: duration_ms := 1000 >> scale", "video_channel": "Selected video channel", "video_quality": "Selected video quality (0 = lowest, 1 = medium, 2 = best)" } }, "peerChannel": { "comment": "Channel/supergroup", "arguments": { "channel_id": "Channel ID" } }, "storage.fileGif": { "comment": "GIF image. MIME type: image/gif.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "storage.fileJpeg": { "comment": "JPEG image. MIME type: image/jpeg.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputFileLocation": { "comment": "DEPRECATED location of a photo", "arguments": { "volume_id": "Server volume", "local_id": "File identifier", "secret": "Check sum to access the file", "file_reference": "File reference" } }, "inputPeerPhotoFileLocation": { "comment": "Location of profile photo of channel/group/supergroup/user", "arguments": { "flags": "Flags, see TL conditional fields", "big": "Whether to download the high-quality version of the picture", "peer": "The peer whose profile picture should be downloaded", "photo_id": "Photo ID" } }, "storage.filePng": { "comment": "PNG image. MIME type: image/png.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "storage.filePdf": { "comment": "PDF document image. MIME type: application/pdf.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "storage.fileMp3": { "comment": "Mp3 audio. MIME type: audio/mpeg.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "storage.fileMov": { "comment": "Quicktime video. MIME type: video/quicktime.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "storage.fileMp4": { "comment": "MPEG-4 video. MIME type: video/mp4.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "userEmpty": { "comment": "Empty constructor, non-existent user.", "arguments": { "id": "User identifier or 0" } }, "userProfilePhotoEmpty": { "comment": "Profile photo has not been set, or was hidden.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "storage.fileWebp": { "comment": "WEBP image. MIME type: image/webp.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "userStatusEmpty": { "comment": "User status has not been set yet.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "user": { "comment": "Indicates info about a certain user.\n\nUnless specified otherwise, when updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nSee here » for an implementation of the logic to use when updating the local user peer database.", "arguments": { "flags": "Flags, see TL conditional fields", "self": "Whether this user indicates the currently logged in user", "contact": "Whether this user is a contact
When updating the local peer database, do not apply changes to this field if the min flag is set.", "mutual_contact": "Whether this user is a mutual contact.
When updating the local peer database, do not apply changes to this field if the min flag is set.", "deleted": "Whether the account of this user was deleted.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info.", "bot": "Is this user a bot?
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info.", "bot_chat_history": "Can the bot see all messages in groups?", "bot_nochats": "Can the bot be added to groups?", "verified": "Whether this user is verified", "restricted": "Access to this user must be restricted for the reason specified in restriction_reason", "min": "See min", "bot_inline_geo": "Whether the bot can request our geolocation in inline mode", "support": "Whether this is an official support user", "scam": "This may be a scam user", "apply_min_photo": "If set and min is set, the value of photo can be used to update the local database, see the documentation of that flag for more info.", "fake": "If set, this user was reported by many users as a fake or scam user: be careful when interacting with them.", "bot_attach_menu": "Whether this bot offers an attachment menu web app", "premium": "Whether this user is a Telegram Premium user
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info.
Changes to this flag if the self flag is set should also trigger the following calls, to refresh the respective caches:
- The {@link help.RawGetConfigRequest} cache
- The {@link messages.RawGetTopReactionsRequest} cache if the bot flag is not set", "attach_menu_enabled": "Whether we installed the attachment menu web app offered by this bot.
When updating the local peer database, do not apply changes to this field if the min flag is set.", "flags2": "Flags, see TL conditional fields", "bot_can_edit": "Whether we can edit the profile picture, name, about text and description of this bot because we own it.
When updating the local peer database, do not apply changes to this field if the min flag is set.
Changes to this flag (if min is not set) should invalidate the local {@link RawUserFull} cache for this user ID.", "close_friend": "Whether we marked this user as a close friend, see here » for more info.
When updating the local peer database, do not apply changes to this field if the min flag is set.", "stories_hidden": "Whether we have hidden » all active stories of this user.
When updating the local peer database, do not apply changes to this field if the min flag is set.", "stories_unavailable": "No stories from this user are visible.", "contact_require_premium": "If set, we can only write to this user if they have already sent some messages to us, if we are subscribed to Telegram Premium, or if they're a mutual contact ({@link RawUser}.mutual_contact).
All the secondary conditions listed above must be checked separately to verify whether we can still write to the user, even if this flag is set (i.e. a mutual contact will have this flag set even if we can still write to them, and so on...); to avoid doing these extra checks if we haven't yet cached all the required information (for example while displaying the chat list in the sharing UI) the {@link users.RawGetIsPremiumRequiredToContactRequest} method may be invoked instead, passing the list of users currently visible in the UI, returning a list of booleans that directly specify whether we can or cannot write to each user; alternatively, the {@link RawUserFull}.contact_require_premium flag contains the same (fully checked, i.e. it's not just a copy of this flag) info returned by {@link users.RawGetIsPremiumRequiredToContactRequest}.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.new_noncontact_peers_require_premium flag.", "bot_business": "Whether this bot can be connected to a user as specified here ».", "bot_has_main_app": "If set, this bot has configured a Main Mini App ».", "id": "ID of the user, see here » for more info.", "access_hash": "Access hash of the user, see here » for more info.
If this flag is set, when updating the local peer database, generate a virtual flag called min_access_hash, which is:
- Set to true if min is set AND
- The phone flag is not set OR
- The phone flag is set and the associated phone number string is non-empty
- Set to false otherwise.

Then, apply both access_hash and min_access_hash to the local database if:
- min_access_hash is false OR
- min_access_hash is true AND
- There is no locally cached object for this user OR
- There is no access_hash in the local cache OR
- The cached object's min_access_hash is also true
If the final merged object stored to the database has the min_access_hash field set to true, the related access_hash is only suitable to use in {@link RawInputPeerPhotoFileLocation}, to directly download the profile pictures of users, everywhere else a inputPeer*FromMessage constructor will have to be generated as specified here ».
Bots can also use min access hashes in some conditions, by passing 0 instead of the min access hash.", "first_name": "First name.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set.", "last_name": "Last name.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set.", "username": "Main active username.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID if the above conditions are respected and the bot_can_edit flag is also set.", "phone": "Phone number.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set.", "photo": "Profile picture of user.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The apply_min_photo flag is set OR
- The min flag of the locally cached user entry is set.", "status": "Online status of user.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set OR
- The locally cached user entry is equal to {@link RawUserStatusEmpty}.", "bot_info_version": "Version of the {@link RawUserFull}, incremented every time it changes.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info.", "restriction_reason": "Contains the reason why access to this user must be restricted.", "bot_inline_placeholder": "Inline placeholder for this inline bot", "lang_code": "Language code of the user", "emoji_status": "Emoji status", "usernames": "Additional usernames.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
- The min flag of the locally cached user entry is set.
Changes to this flag (if the above conditions are respected) should invalidate the local {@link RawUserFull} cache for this user ID.", "stories_max_id": "ID of the maximum read story.
When updating the local peer database, do not apply changes to this field if the min flag of the incoming constructor is set.", "color": "The user's accent color.", "profile_color": "The user's profile color.", "bot_active_users": "Monthly Active Users (MAU) of this bot (may be absent for small bots)." } }, "userStatusRecently": { "comment": "Online status: last seen recently", "arguments": { "flags": "Flags, see TL conditional fields", "by_me": "If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info." } }, "userStatusLastWeek": { "comment": "Online status: last seen last week", "arguments": { "flags": "Flags, see TL conditional fields", "by_me": "If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info." } }, "userStatusOffline": { "comment": "The user's offline status.", "arguments": { "was_online": "Time the user was last seen online" } }, "userStatusLastMonth": { "comment": "Online status: last seen last month", "arguments": { "flags": "Flags, see TL conditional fields", "by_me": "If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info." } }, "userStatusOnline": { "comment": "Online status of the user.", "arguments": { "expires": "Time to expiration of the current online status" } }, "userProfilePhoto": { "comment": "User profile photo.", "arguments": { "flags": "Flags, see TL conditional fields", "has_video": "Whether an animated profile picture is available for this user", "personal": "Whether this profile photo is only visible to us (i.e. it was set using {@link photos.RawUploadContactProfilePhotoRequest}).", "photo_id": "Identifier of the respective photo", "stripped_thumb": "Stripped thumbnail", "dc_id": "DC ID where the photo is stored" } }, "chatEmpty": { "comment": "Empty constructor, group doesn't exist", "arguments": { "id": "Group identifier" } }, "chat": { "comment": "Info about a group.\n\nWhen updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nSee here » for an implementation of the logic to use when updating the local user peer database.", "arguments": { "flags": "Flags, see TL conditional fields", "creator": "Whether the current user is the creator of the group", "left": "Whether the current user has left the group", "deactivated": "Whether the group was migrated", "call_active": "Whether a group call is currently active", "call_not_empty": "Whether there's anyone in the group call", "noforwards": "Whether this group is protected, thus does not allow forwarding messages from it", "id": "ID of the group, see here » for more info", "title": "Title", "photo": "Chat photo", "participants_count": "Participant count", "date": "Date of creation of the group", "version": "Used in basic groups to reorder updates and make sure that all of them were received.", "migrated_to": "Means this chat was upgraded to a supergroup", "admin_rights": "Admin rights of the user in the group", "default_banned_rights": "Default banned rights of all users in the group" } }, "chatForbidden": { "comment": "A group to which the user has no access. E.g., because the user was kicked from the group.", "arguments": { "id": "User identifier", "title": "Group name" } }, "channel": { "comment": "Channel/supergroup info\n\nWhen updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nThe only exception to the above rule is when the min flag is set, in which case only the following fields must be applied over any locally stored version:\n\nSee here » for an implementation of the logic to use when updating the local user peer database.", "arguments": { "flags": "Flags, see TL conditional fields", "creator": "Whether the current user is the creator of this channel", "left": "Whether the current user has left or is not a member of this channel", "broadcast": "Is this a channel?", "verified": "Is this channel verified by telegram?", "megagroup": "Is this a supergroup?
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.", "restricted": "Whether viewing/writing in this channel for a reason (see restriction_reason)", "signatures": "Whether signatures are enabled (channels)", "min": "See min", "scam": "This channel/supergroup is probably a scam
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.", "has_link": "Whether this channel has a linked discussion group » (or this supergroup is a channel's discussion group). The actual ID of the linked channel/supergroup is contained in {@link RawChannelFull}.linked_chat_id.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.", "has_geo": "Whether this channel has a geo position", "slowmode_enabled": "Whether slow mode is enabled for groups to prevent flood in chat.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.", "call_active": "Whether a group call or livestream is currently active", "call_not_empty": "Whether there's anyone in the group call or livestream", "fake": "If set, this supergroup/channel was reported by many users as a fake or scam: be careful when interacting with it.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.", "gigagroup": "Whether this supergroup is a gigagroup
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.", "noforwards": "Whether this channel or group is protected, thus does not allow forwarding messages from it", "join_to_send": "Whether a user needs to join the supergroup before they can send messages: can be false only for discussion groups », toggle using {@link channels.RawToggleJoinToSendRequest}
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.", "join_request": "Whether a user's join request will have to be approved by administrators, toggle using {@link channels.RawToggleJoinRequestRequest}
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.", "forum": "Whether this supergroup is a forum.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.", "flags2": "Flags, see TL conditional fields", "stories_hidden": "Whether we have hidden all stories posted by this channel ».", "stories_hidden_min": "If set, indicates that the stories_hidden flag was not populated, and its value must cannot be relied on; use the previously cached value, or re-fetch the constructor using {@link channels.RawGetChannelsRequest} to obtain the latest value of the stories_hidden flag.", "stories_unavailable": "No stories from the channel are visible.", "id": "ID of the channel, see here » for more info", "access_hash": "Access hash, see here » for more info", "title": "Title", "username": "Main active username.", "photo": "Profile photo", "date": "Date when the user joined the supergroup/channel, or if the user isn't a member, its creation date", "restriction_reason": "Contains the reason why access to this channel must be restricted.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.", "admin_rights": "Admin rights of the user in this channel (see rights)", "banned_rights": "Banned rights of the user in this channel (see rights)", "default_banned_rights": "Default chat rights (see rights)", "participants_count": "Participant count", "usernames": "Additional usernames", "stories_max_id": "ID of the maximum read story.", "color": "The channel's accent color.", "profile_color": "The channel's profile color.", "emoji_status": "Emoji status", "level": "Boost level.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info." } }, "chatFull": { "comment": "Full info about a basic group.\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).", "arguments": { "flags": "Flags, see TL conditional fields", "can_set_username": "Can we change the username of this chat", "has_scheduled": "Whether scheduled messages are available", "translations_disabled": "Whether the real-time chat translation popup should be hidden.", "id": "ID of the chat", "about": "About string for this chat", "participants": "Participant list", "chat_photo": "Chat photo", "notify_settings": "Notification settings", "exported_invite": "Chat invite", "bot_info": "Info about bots that are in this chat", "pinned_msg_id": "Message ID of the last pinned message", "folder_id": "Peer folder ID, for more info click here", "call": "Group call information", "ttl_period": "Time-To-Live of messages sent by the current user to this chat", "groupcall_default_join_as": "When using {@link phone.RawGetGroupCallJoinAsRequest} to get a list of peers that can be used to join a group call, this field indicates the peer that should be selected by default.", "theme_emoticon": "Emoji representing a specific chat theme", "requests_pending": "Pending join requests »", "recent_requesters": "IDs of users who requested to join recently", "available_reactions": "Allowed message reactions »", "reactions_limit": "This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max)." } }, "channelFull": { "comment": "Full info about a channel, supergroup or gigagroup.\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).", "arguments": { "flags": "Flags, see TL conditional fields", "can_view_participants": "Can we view the participant list?", "can_set_username": "Can we set the channel's username?", "can_set_stickers": "Can we {@link channels.RawSetStickersRequest} a stickerpack to the supergroup?", "hidden_prehistory": "Is the history before we joined hidden to us?", "can_set_location": "Can we set the geolocation of this group (for geogroups)", "has_scheduled": "Whether scheduled messages are available", "can_view_stats": "Can the user view channel/supergroup statistics", "blocked": "Whether any anonymous admin of this supergroup was blocked: if set, you won't receive messages from anonymous group admins in discussion replies via @replies", "flags2": "Flags, see TL conditional fields", "can_delete_channel": "Can we delete this channel?", "antispam": "Whether native antispam functionality is enabled in this supergroup.", "participants_hidden": "Whether the participant list is hidden.", "translations_disabled": "Whether the real-time chat translation popup should be hidden.", "stories_pinned_available": "Whether this user has some pinned stories.", "view_forum_as_messages": "Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
This setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of this flag.", "restricted_sponsored": "Whether ads on this channel were disabled as specified here » (this flag is only visible to the owner of the channel).", "can_view_revenue": "If set, this user can view ad revenue statistics » for this channel.", "paid_media_allowed": "Whether the current user can send or forward paid media » to this channel.", "can_view_stars_revenue": "If set, this user can view Telegram Star revenue statistics » for this channel.", "id": "ID of the channel", "about": "Info about the channel", "participants_count": "Number of participants of the channel", "admins_count": "Number of channel admins", "kicked_count": "Number of users kicked from the channel", "banned_count": "Number of users banned from the channel", "online_count": "Number of users currently online", "read_inbox_max_id": "Position up to which all incoming messages are read.", "read_outbox_max_id": "Position up to which all outgoing messages are read.", "unread_count": "Count of unread messages", "chat_photo": "Channel picture", "notify_settings": "Notification settings", "exported_invite": "Invite link", "bot_info": "Info about bots in the channel/supergroup", "migrated_from_chat_id": "The chat ID from which this group was migrated", "migrated_from_max_id": "The message ID in the original chat at which this group was migrated", "pinned_msg_id": "Message ID of the last pinned message", "stickerset": "Associated stickerset", "available_min_id": "Identifier of a maximum unavailable message in a channel due to hidden history.", "folder_id": "Peer folder ID, for more info click here", "linked_chat_id": "ID of the linked discussion chat for channels (and vice versa, the ID of the linked channel for discussion chats).", "location": "Location of the geo group", "slowmode_seconds": "If specified, users in supergroups will only be able to send one message every slowmode_seconds seconds", "slowmode_next_send_date": "Indicates when the user will be allowed to send another message in the supergroup (unixtime)", "stats_dc": "If set, specifies the DC to use for fetching channel statistics", "pts": "Latest PTS for this channel", "call": "Livestream or group call information", "ttl_period": "Time-To-Live of messages in this channel or supergroup", "pending_suggestions": "A list of suggested actions for the supergroup admin, see here for more info ».", "groupcall_default_join_as": "When using {@link phone.RawGetGroupCallJoinAsRequest} to get a list of peers that can be used to join a group call, this field indicates the peer that should be selected by default.", "theme_emoticon": "Emoji representing a specific chat theme", "requests_pending": "Pending join requests »", "recent_requesters": "IDs of users who requested to join recently", "default_send_as": "Default peer used for sending messages to this channel", "available_reactions": "Allowed message reactions »", "reactions_limit": "This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max).", "stories": "Channel stories", "wallpaper": "Wallpaper", "boosts_applied": "The number of boosts the current user has applied to the current supergroup.", "boosts_unrestrict": "The number of boosts this supergroup requires to bypass slowmode and other restrictions, see here » for more info.", "emojiset": "Custom emoji stickerset associated to the current supergroup, set using {@link channels.RawSetEmojiStickersRequest} after reaching the appropriate boost level, see here » for more info." } }, "chatParticipant": { "comment": "Group member.", "arguments": { "user_id": "Member user ID", "inviter_id": "ID of the user that added the member to the group", "date": "Date added to the group" } }, "channelForbidden": { "comment": "Indicates a channel/supergroup we can't access because we were banned, or for some other reason.", "arguments": { "flags": "Flags, see TL conditional fields", "broadcast": "Is this a channel", "megagroup": "Is this a supergroup", "id": "Channel ID", "access_hash": "Access hash", "title": "Title", "until_date": "The ban is valid until the specified date" } }, "chatParticipantCreator": { "comment": "Represents the creator of the group", "arguments": { "user_id": "ID of the user that created the group" } }, "chatParticipantAdmin": { "comment": "Chat admin", "arguments": { "user_id": "ID of a group member that is admin", "inviter_id": "ID of the user that added the member to the group", "date": "Date when the user was added" } }, "chatPhoto": { "comment": "Group profile photo.", "arguments": { "flags": "Flags, see TL conditional fields", "has_video": "Whether the user has an animated profile picture", "photo_id": "Photo ID", "stripped_thumb": "Stripped thumbnail", "dc_id": "DC where this photo is stored" } }, "chatParticipants": { "comment": "Group members.", "arguments": { "chat_id": "Group identifier", "participants": "List of group members", "version": "Group version number" } }, "messageEmpty": { "comment": "Empty constructor, non-existent message.", "arguments": { "flags": "Flags, see TL conditional fields", "id": "Message identifier", "peer_id": "Peer ID, the chat where this message was sent" } }, "chatPhotoEmpty": { "comment": "Group photo is not set.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "chatParticipantsForbidden": { "comment": "Info on members is unavailable", "arguments": { "flags": "Flags, see TL conditional fields", "chat_id": "Group ID", "self_participant": "Info about the group membership of the current user" } }, "messageService": { "comment": "Indicates a service message", "arguments": { "flags": "Flags, see TL conditional fields", "out": "Whether the message is outgoing", "mentioned": "Whether we were mentioned in the message", "media_unread": "Whether the message contains unread media", "silent": "Whether the message is silent", "post": "Whether it's a channel post", "legacy": "This is a legacy message: it has to be refetched with the new layer", "id": "Message ID", "from_id": "ID of the sender of this message", "peer_id": "Sender of service message", "reply_to": "Reply (thread) information", "date": "Message date", "action": "Event connected with the service message", "ttl_period": "Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well." } }, "message": { "comment": "A message", "arguments": { "flags": "Flags, see TL conditional fields", "out": "Is this an outgoing message", "mentioned": "Whether we were mentioned in this message", "media_unread": "Whether there are unread media attachments in this message", "silent": "Whether this is a silent message (no notification triggered)", "post": "Whether this is a channel post", "from_scheduled": "Whether this is a scheduled message", "legacy": "This is a legacy message: it has to be refetched with the new layer", "edit_hide": "Whether the message should be shown as not modified to the user, even if an edit date is present", "pinned": "Whether this message is pinned", "noforwards": "Whether this message is protected and thus cannot be forwarded; clients should also prevent users from saving attached media (i.e. videos should only be streamed, photos should be kept in RAM, et cetera).", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "flags2": "Flags, see TL conditional fields", "offline": "If set, the message was sent because of a scheduled action by the message sender, for example, as away, or a greeting service message.", "id": "ID of the message", "from_id": "ID of the sender of the message", "from_boosts_applied": "Supergroups only, contains the number of boosts this user has given the current supergroup, and should be shown in the UI in the header of the message.
Only present for incoming messages from non-anonymous supergroup members that have boosted the supergroup.
Note that this counter should be locally overridden for non-anonymous outgoing messages, according to the current value of {@link RawChannelFull}.boosts_applied, to ensure the value is correct even for messages sent by the current user before a supergroup was boosted (or after a boost has expired or the number of boosts has changed); do not update this value for incoming messages from other users, even if their boosts have changed.", "peer_id": "Peer ID, the chat where this message was sent", "saved_peer_id": "Messages fetched from a saved messages dialog » will have peer={@link RawInputPeerSelf} and the saved_peer_id flag set to the ID of the saved dialog.
", "fwd_from": "Info about forwarded messages", "via_bot_id": "ID of the inline bot that generated the message", "via_business_bot_id": "Whether the message was sent by the business bot specified in via_bot_id on behalf of the user.", "reply_to": "Reply information", "date": "Date of the message", "message": "The message", "media": "Media attachment", "reply_markup": "Reply markup (bot/inline keyboards)", "entities": "Message entities for styled text", "views": "View count for channel posts", "forwards": "Forward counter", "replies": "Info about post comments (for channels) or message replies (for groups)", "edit_date": "Last edit date of this message", "post_author": "Name of the author of this message for channel posts (with signatures enabled)", "grouped_id": "Multiple media messages sent using {@link messages.RawSendMultiMediaRequest} with the same grouped ID indicate an album or media group", "reactions": "Reactions to this message", "restriction_reason": "Contains the reason why access to this message must be restricted.", "ttl_period": "Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well.", "quick_reply_shortcut_id": "If set, this message is a quick reply shortcut message » (note that quick reply shortcut messages sent to a private chat will not have this field set).", "effect": "A message effect that should be played as specified here ».", "factcheck": "Represents a fact-check »." } }, "messageMediaPhoto": { "comment": "Attached photo.", "arguments": { "flags": "Flags, see TL conditional fields", "spoiler": "Whether this media should be hidden behind a spoiler warning", "photo": "Photo", "ttl_seconds": "Time to live in seconds of self-destructing photo" } }, "messageMediaEmpty": { "comment": "Empty constructor.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messageMediaGeo": { "comment": "Attached map.", "arguments": { "geo": "GeoPoint" } }, "messageMediaUnsupported": { "comment": "Current version of the client does not support this media type.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messageMediaWebPage": { "comment": "Preview of webpage", "arguments": { "flags": "Flags, see TL conditional fields", "force_large_media": "If set, specifies that a large media preview should be used.", "force_small_media": "If set, specifies that a small media preview should be used.", "manual": "If set, indicates that the URL used for the webpage preview was specified manually using {@link RawInputMediaWebPage}, and may not be related to any of the URLs specified in the message.", "safe": "If set, the webpage can be opened directly without user confirmation; otherwise, user confirmation is required, showing the exact URL that will be opened.", "webpage": "Webpage preview" } }, "messageMediaContact": { "comment": "Attached contact.", "arguments": { "phone_number": "Phone number", "first_name": "Contact's first name", "last_name": "Contact's last name", "vcard": "VCARD of contact", "user_id": "User identifier or 0, if the user with the given phone number is not registered" } }, "messageMediaDocument": { "comment": "Document (video, audio, voice, sticker, any media type except photo)", "arguments": { "flags": "Flags, see TL conditional fields", "nopremium": "Whether this is a normal sticker, if not set this is a premium sticker and a premium sticker animation must be played.", "spoiler": "Whether this media should be hidden behind a spoiler warning", "video": "Whether this is a video.", "round": "Whether this is a round video.", "voice": "Whether this is a voice message.", "document": "Attached document", "alt_document": "Currently only used for story videos, may contain an alternative version of the story video, explicitly encoded using H.264 (in MPEG4 transport) at a lower resolution than document.", "ttl_seconds": "Time to live of self-destructing document" } }, "messageMediaVenue": { "comment": "Venue", "arguments": { "geo": "Geolocation of venue", "title": "Venue name", "address": "Address", "provider": "Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported", "venue_id": "Venue ID in the provider's database", "venue_type": "Venue type in the provider's database" } }, "messageMediaGame": { "comment": "Telegram game", "arguments": { "game": "Game" } }, "messageMediaInvoice": { "comment": "Invoice", "arguments": { "flags": "Flags, see TL conditional fields", "shipping_address_requested": "Whether the shipping address was requested", "test": "Whether this is an example invoice", "title": "Product name, 1-32 characters", "description": "Product description, 1-255 characters", "photo": "URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for.", "receipt_msg_id": "Message ID of receipt: if set, clients should change the text of the first {@link RawKeyboardButtonBuy} button always attached to the {@link RawMessage} to a localized version of the word Receipt", "currency": "Three-letter ISO 4217 currency code, or XTR for Telegram Stars.", "total_amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "start_param": "Unique bot deep-linking parameter that can be used to generate this invoice", "extended_media": "Deprecated" } }, "messageMediaGeoLive": { "comment": "Indicates a live geolocation", "arguments": { "flags": "Flags, see TL conditional fields", "geo": "Geolocation", "heading": "For live locations, a direction in which the location moves, in degrees; 1-360", "period": "Validity period of provided geolocation", "proximity_notification_radius": "For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)." } }, "messageMediaDice": { "comment": "Dice-based animated sticker", "arguments": { "value": "Dice value", "emoticon": "The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported" } }, "messageMediaStory": { "comment": "Represents a forwarded story or a story mention.", "arguments": { "flags": "Flags, see TL conditional fields", "via_mention": "If set, indicates that this someone has mentioned us in this story (i.e. by tagging us in the description) or vice versa, we have mentioned the other peer (if the message is outgoing).", "peer": "Peer that posted the story.", "id": "Story ID", "story": "The story itself, if absent fetch it using {@link stories.RawGetStoriesByIDRequest} and the peer/id parameters specified above." } }, "messageMediaGiveaway": { "comment": "Contains info about a giveaway, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "only_new_subscribers": "If set, only new subscribers starting from the giveaway creation date will be able to participate to the giveaway.", "winners_are_visible": "If set, giveaway winners are public and will be listed in a {@link RawMessageMediaGiveawayResults} message that will be automatically sent to the channel once the giveaway ends.", "channels": "The channels that the user must join to participate in the giveaway.", "countries_iso2": "If set, only users residing in these countries can participate in the giveaway, (specified as a list of two-letter ISO 3166-1 alpha-2 country codes); otherwise there are no country-based limitations.", "prize_description": "Can contain a textual description of additional giveaway prizes.", "quantity": "Number of Telegram Premium subscriptions given away.", "months": "Duration in months of each Telegram Premium subscription in the giveaway.", "until_date": "The end date of the giveaway." } }, "messageMediaPoll": { "comment": "Poll", "arguments": { "poll": "The poll", "results": "The results of the poll" } }, "messageMediaGiveawayResults": { "comment": "A giveaway with public winners has finished, this constructor contains info about the winners.", "arguments": { "flags": "Flags, see TL conditional fields", "only_new_subscribers": "If set, only new subscribers starting from the giveaway creation date participated in the giveaway.", "refunded": "If set, the giveaway was canceled and was fully refunded.", "channel_id": "ID of the channel/supergroup that was automatically boosted by the winners of the giveaway for duration of the Premium subscription.", "additional_peers_count": "Number of other channels that participated in the giveaway.", "launch_msg_id": "Identifier of the message with the giveaway in channel_id.", "winners_count": "Total number of winners in the giveaway.", "unclaimed_count": "Number of not-yet-claimed prizes.", "winners": "Up to 100 user identifiers of the winners of the giveaway.", "months": "Duration in months of each Telegram Premium subscription in the giveaway.", "prize_description": "Can contain a textual description of additional giveaway prizes.", "until_date": "Point in time (UNIX timestamp in seconds) when the winners were selected. May be bigger than winners selection date specified in initial parameters of the giveaway." } }, "messageMediaPaidMedia": { "comment": "Paid media, see here » for more info.", "arguments": { "stars_amount": "The price of the media in Telegram Stars.", "extended_media": "Either the paid-for media, or super low resolution media previews if the media wasn't purchased yet, see here » for more info." } }, "messageActionEmpty": { "comment": "Empty constructor.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messageActionChatCreate": { "comment": "Group created", "arguments": { "title": "Group name", "users": "List of group members" } }, "messageActionChatEditTitle": { "comment": "Group name changed.", "arguments": { "title": "New group name" } }, "messageActionChatEditPhoto": { "comment": "Group profile changed", "arguments": { "photo": "New group profile photo" } }, "messageActionChatDeletePhoto": { "comment": "Group profile photo removed.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messageActionChatAddUser": { "comment": "New member in the group", "arguments": { "users": "Users that were invited to the chat" } }, "messageActionChatDeleteUser": { "comment": "User left the group.", "arguments": { "user_id": "Leaving user ID" } }, "messageActionChatMigrateTo": { "comment": "Indicates the chat was migrated to the specified supergroup", "arguments": { "channel_id": "The supergroup it was migrated to" } }, "messageActionChannelCreate": { "comment": "The channel was created", "arguments": { "title": "Original channel/supergroup title" } }, "messageActionPinMessage": { "comment": "A message was pinned", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messageActionChatJoinedByLink": { "comment": "A user joined the chat via an invite link", "arguments": { "inviter_id": "ID of the user that created the invite link" } }, "messageActionChannelMigrateFrom": { "comment": "Indicates the channel was migrated from the specified chat", "arguments": { "title": "The old chat title", "chat_id": "The old chat ID" } }, "messageActionHistoryClear": { "comment": "Chat history was cleared", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messageActionGameScore": { "comment": "Someone scored in a game", "arguments": { "game_id": "Game ID", "score": "Score" } }, "messageActionPaymentSent": { "comment": "A payment was sent", "arguments": { "flags": "Flags, see TL conditional fields", "recurring_init": "Whether this is the first payment of a recurring payment we just subscribed to", "recurring_used": "Whether this payment is part of a recurring payment", "currency": "Three-letter ISO 4217 currency code, or XTR for Telegram Stars.", "total_amount": "Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "invoice_slug": "An invoice slug taken from an invoice deep link or from the premium_invoice_slug app config parameter »" } }, "messageActionPhoneCall": { "comment": "A phone call", "arguments": { "flags": "Flags, see TL conditional fields", "video": "Is this a video call?", "call_id": "Call ID", "reason": "If the call has ended, the reason why it ended", "duration": "Duration of the call in seconds" } }, "messageActionScreenshotTaken": { "comment": "A screenshot of the chat was taken", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messageActionCustomAction": { "comment": "Custom action (most likely not supported by the current layer, an upgrade might be needed)", "arguments": { "message": "Action message" } }, "messageActionBotAllowed": { "comment": "We have given the bot permission to send us direct messages.\n\nThe optional fields specify how did we authorize the bot to send us messages.", "arguments": { "flags": "Flags, see TL conditional fields", "attach_menu": "We have authorized the bot to send us messages by installing the bot's attachment menu.", "from_request": "We have allowed the bot to send us messages using {@link bots.RawAllowSendMessageRequest}.", "domain": "We have authorized the bot to send us messages by logging into a website via Telegram Login »; this field contains the domain name of the website on which the user has logged in.", "app": "We have authorized the bot to send us messages by opening the specified bot mini app." } }, "messageActionSecureValuesSentMe": { "comment": "Secure telegram passport values were received", "arguments": { "values": "Vector with information about documents and other Telegram Passport elements that were shared with the bot", "credentials": "Encrypted credentials required to decrypt the data" } }, "messageActionPaymentSentMe": { "comment": "A user just sent a payment to me (a bot)", "arguments": { "flags": "Flags, see TL conditional fields", "recurring_init": "Whether this is the first payment of a recurring payment we just subscribed to", "recurring_used": "Whether this payment is part of a recurring payment", "currency": "Three-letter ISO 4217 currency code, or XTR for Telegram Stars.", "total_amount": "Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "payload": "Bot specified invoice payload", "info": "Order info provided by the user", "shipping_option_id": "Identifier of the shipping option chosen by the user", "charge": "Provider payment identifier" } }, "messageActionSecureValuesSent": { "comment": "Request for secure telegram passport values was sent", "arguments": { "types": "Secure value types" } }, "messageActionContactSignUp": { "comment": "A contact just signed up to telegram", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messageActionGroupCall": { "comment": "The group call has ended", "arguments": { "flags": "Flags, see TL conditional fields", "call": "Group call", "duration": "Group call duration" } }, "messageActionInviteToGroupCall": { "comment": "A set of users was invited to the group call", "arguments": { "call": "The group call", "users": "The invited users" } }, "messageActionSetChatTheme": { "comment": "The chat theme was changed", "arguments": { "emoticon": "The emoji that identifies a chat theme" } }, "messageActionSetMessagesTTL": { "comment": "The Time-To-Live of messages in this chat was changed.", "arguments": { "flags": "Flags, see TL conditional fields", "period": "New Time-To-Live of all messages sent in this chat; if 0, autodeletion was disabled.", "auto_setting_from": "If set, the chat TTL setting was set not due to a manual change by one of participants, but automatically because one of the participants has the {@link messages.RawSetDefaultHistoryTTLRequest}. For example, when a user writes to us for the first time and we have set a default messages TTL of 1 week, this service message (with auto_setting_from=our_userid) will be emitted before our first message." } }, "messageActionGeoProximityReached": { "comment": "A user of the chat is now in proximity of another user", "arguments": { "from_id": "The user or chat that is now in proximity of to_id", "to_id": "The user or chat that subscribed to live geolocation proximity alerts", "distance": "Distance, in meters (0-100000)" } }, "messageActionWebViewDataSentMe": { "comment": "Data from an opened reply keyboard bot mini app was relayed to the bot that owns it (bot side service message).", "arguments": { "text": "Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app.", "data": "Relayed data." } }, "messageActionGroupCallScheduled": { "comment": "A group call was scheduled", "arguments": { "call": "The group call", "schedule_date": "When is this group call scheduled to start" } }, "messageActionChatJoinedByRequest": { "comment": "A user was accepted into the group by an admin", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messageActionWebViewDataSent": { "comment": "Data from an opened reply keyboard bot mini app was relayed to the bot that owns it (user side service message).\n\nClients should display a service message with the text Data from the «$text» button was transferred to the bot.", "arguments": { "text": "Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app." } }, "messageActionTopicCreate": { "comment": "A forum topic was created.", "arguments": { "flags": "Flags, see TL conditional fields", "title": "Topic name.", "icon_color": "If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F.", "icon_emoji_id": "ID of the custom emoji used as topic icon." } }, "messageActionGiftPremium": { "comment": "Info about a gifted Telegram Premium subscription", "arguments": { "flags": "Flags, see TL conditional fields", "currency": "Three-letter ISO 4217 currency code", "amount": "Price of the gift in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "months": "Duration of the gifted Telegram Premium subscription", "crypto_currency": "If the gift was bought using a cryptocurrency, the cryptocurrency name.", "crypto_amount": "If the gift was bought using a cryptocurrency, price of the gift in the smallest units of a cryptocurrency." } }, "messageActionRequestedPeer": { "comment": "Contains info about one or more peers that the we (the user) shared with the bot after clicking on a {@link RawKeyboardButtonRequestPeer} button (service message sent by the user).", "arguments": { "button_id": "button_id contained in the {@link RawKeyboardButtonRequestPeer}", "peers": "The shared peers" } }, "messageActionSuggestProfilePhoto": { "comment": "A new profile picture was suggested using {@link photos.RawUploadContactProfilePhotoRequest}.", "arguments": { "photo": "The photo that the user suggested we set as profile picture." } }, "messageActionTopicEdit": { "comment": "Forum topic information was edited.", "arguments": { "flags": "Flags, see TL conditional fields", "title": "New topic title.", "icon_emoji_id": "ID of the new custom emoji used as topic icon, or if it was removed.", "closed": "Whether the topic was opened or closed.", "hidden": "Whether the topic was hidden or unhidden (only valid for the \"General\" topic, id=1)." } }, "messageActionSetChatWallPaper": { "comment": "The wallpaper » of the current chat was changed.", "arguments": { "flags": "Flags, see TL conditional fields", "same": "If set, indicates the user applied a wallpaper » previously sent by the other user in a {@link RawMessageActionSetChatWallPaper} message.", "for_both": "If set, indicates the wallpaper was forcefully applied for both sides, without explicit confirmation from the other side.
If the message is incoming, and we did not like the new wallpaper the other user has chosen for us, we can re-set our previous wallpaper just on our side, by invoking {@link messages.RawSetChatWallPaperRequest}, providing only the revert flag (and obviously the peer parameter).", "wallpaper": "New wallpaper" } }, "messageActionGiftCode": { "comment": "Contains a Telegram Premium giftcode link.", "arguments": { "flags": "Flags, see TL conditional fields", "via_giveaway": "If set, this gift code was received from a giveaway » started by a channel/supergroup we're subscribed to.", "unclaimed": "If set, the link was not redeemed yet.", "boost_peer": "Identifier of the channel/supergroup that created the gift code either directly or through a giveaway: if we import this giftcode link, we will also automatically boost this channel/supergroup.", "months": "Duration in months of the gifted Telegram Premium subscription.", "slug": "Slug of the Telegram Premium giftcode link", "currency": "Three-letter ISO 4217 currency code", "amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "crypto_currency": "If set, the gift was made using the specified cryptocurrency.", "crypto_amount": "If crypto_currency is set, contains the paid amount, in the smallest units of the cryptocurrency." } }, "messageActionBoostApply": { "comment": "Some boosts » were applied to the channel or supergroup.", "arguments": { "boosts": "Number of applied boosts." } }, "messageActionGiveawayLaunch": { "comment": "A giveaway was started.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messageActionRequestedPeerSentMe": { "comment": "Contains info about one or more peers that the a user shared with the me (the bot) after clicking on a {@link RawKeyboardButtonRequestPeer} button (service message received by the bot).", "arguments": { "button_id": "button_id contained in the {@link RawKeyboardButtonRequestPeer}", "peers": "Info about the shared peers." } }, "messageActionGiveawayResults": { "comment": "A giveaway has ended.", "arguments": { "winners_count": "Number of winners in the giveaway", "unclaimed_count": "Number of undistributed prizes" } }, "messageActionGiftStars": { "comment": "You gifted or were gifted some Telegram Stars.", "arguments": { "flags": "Flags, see TL conditional fields", "currency": "Three-letter ISO 4217 currency code", "amount": "Price of the gift in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "stars": "Amount of gifted stars", "crypto_currency": "If the gift was bought using a cryptocurrency, the cryptocurrency name.", "crypto_amount": "If the gift was bought using a cryptocurrency, price of the gift in the smallest units of a cryptocurrency.", "transaction_id": "Identifier of the transaction, only visible to the receiver of the gift." } }, "messageActionPaymentRefunded": { "comment": "Describes a payment refund (service message received by both users and bots).", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Identifier of the peer that returned the funds.", "currency": "Currency, XTR for Telegram Stars.", "total_amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "payload": "Bot specified invoice payload (only received by bots).", "charge": "Provider payment identifier" } }, "dialog": { "comment": "Chat", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Is the dialog pinned", "unread_mark": "Whether the chat was manually marked as unread", "view_forum_as_messages": "Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
This setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of this flag.", "peer": "The chat", "top_message": "The latest message ID", "read_inbox_max_id": "Position up to which all incoming messages are read.", "read_outbox_max_id": "Position up to which all outgoing messages are read.", "unread_count": "Number of unread messages", "unread_mentions_count": "Number of unread mentions", "unread_reactions_count": "Number of unread reactions to messages you sent", "notify_settings": "Notification settings", "pts": "PTS", "draft": "Message draft", "folder_id": "Peer folder ID, for more info click here", "ttl_period": "Time-to-live of all messages sent in this dialog" } }, "dialogFolder": { "comment": "Dialog in folder", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Is this folder pinned", "folder": "The folder", "peer": "Peer in folder", "top_message": "Latest message ID of dialog", "unread_muted_peers_count": "Number of unread muted peers in folder", "unread_unmuted_peers_count": "Number of unread unmuted peers in folder", "unread_muted_messages_count": "Number of unread messages from muted peers in folder", "unread_unmuted_messages_count": "Number of unread messages from unmuted peers in folder" } }, "photoEmpty": { "comment": "Empty constructor, non-existent photo", "arguments": { "id": "Photo identifier" } }, "photo": { "comment": "Photo", "arguments": { "flags": "Flags, see TL conditional fields", "has_stickers": "Whether the photo has mask stickers attached to it", "id": "ID", "access_hash": "Access hash", "file_reference": "file reference", "date": "Date of upload", "sizes": "Available sizes for download", "video_sizes": "For animated profiles, the MPEG4 videos", "dc_id": "DC ID to use for download" } }, "photoSizeEmpty": { "comment": "Empty constructor. Image with this thumbnail is unavailable.", "arguments": { "type": "Thumbnail type »" } }, "photoStrippedSize": { "comment": "A low-resolution compressed JPG payload", "arguments": { "type": "Thumbnail type", "bytes": "Thumbnail data, see here for more info on decompression »" } }, "photoCachedSize": { "comment": "Description of an image and its content.", "arguments": { "type": "Thumbnail type", "w": "Image width", "h": "Image height", "bytes": "Binary data, file content" } }, "photoPathSize": { "comment": "Messages with animated stickers can have a compressed svg (< 300 bytes) to show the outline of the sticker before fetching the actual lottie animation.", "arguments": { "type": "Always j", "bytes": "Compressed SVG path payload, see here for decompression instructions" } }, "photoSizeProgressive": { "comment": "Progressively encoded photosize", "arguments": { "type": "Photosize type »", "w": "Photo width", "h": "Photo height", "sizes": "Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image." } }, "photoSize": { "comment": "Image description.", "arguments": { "type": "Thumbnail type »", "w": "Image width", "h": "Image height", "size": "File size" } }, "geoPointEmpty": { "comment": "Empty constructor.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "geoPoint": { "comment": "GeoPoint.", "arguments": { "flags": "Flags, see TL conditional fields", "long": "Longitude", "lat": "Latitude", "access_hash": "Access hash", "accuracy_radius": "The estimated horizontal accuracy of the location, in meters; as defined by the sender." } }, "auth.sentCode": { "comment": "Contains info about a sent verification code.", "arguments": { "flags": "Flags, see TL conditional fields", "type": "Phone code type", "phone_code_hash": "Phone code hash, to be stored and later re-used with {@link auth.RawSignInRequest}", "next_type": "Phone code type that will be sent next, if the phone code is not received within timeout seconds: to send it use {@link auth.RawResendCodeRequest}", "timeout": "Timeout for reception of the phone code" } }, "auth.sentCodeSuccess": { "comment": "The user successfully authorized using future auth tokens", "arguments": { "authorization": "Authorization info" } }, "inputNotifyPeer": { "comment": "Notifications generated by a certain user or group.", "arguments": { "peer": "User or group" } }, "auth.authorization": { "comment": "Contains user authorization info.", "arguments": { "flags": "Flags, see TL conditional fields", "setup_password_required": "Suggests the user to set up a 2-step verification password to be able to log in again", "otherwise_relogin_days": "Iff setup_password_required is set and the user declines to set a 2-step verification password, they will be able to log into their account via SMS again only after this many days pass.", "tmp_sessions": "Temporary passport sessions", "future_auth_token": "A future auth token", "user": "Info on authorized user" } }, "inputNotifyUsers": { "comment": "Notifications generated by all users.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "auth.exportedAuthorization": { "comment": "Data for copying of authorization between data centers.", "arguments": { "id": "current user identifier", "bytes": "authorizes key" } }, "auth.authorizationSignUpRequired": { "comment": "An account with this phone number doesn't exist on telegram: the user has to enter basic information and sign up", "arguments": { "flags": "Flags, see TL conditional fields", "terms_of_service": "Telegram's terms of service: the user must read and accept the terms of service before signing up to telegram" } }, "inputNotifyChats": { "comment": "Notifications generated by all groups.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputNotifyBroadcasts": { "comment": "All channels", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputNotifyForumTopic": { "comment": "Notifications generated by a topic in a forum.", "arguments": { "peer": "Forum ID", "top_msg_id": "Topic ID" } }, "inputPeerNotifySettings": { "comment": "Notification settings.", "arguments": { "flags": "Flags, see TL conditional fields", "show_previews": "If the text of the message shall be displayed in notification", "silent": "Peer was muted?", "mute_until": "Date until which all notifications shall be switched off", "sound": "Identifier of an audio file to play for notifications.", "stories_muted": "Whether story notifications should be disabled.", "stories_hide_sender": "Whether the sender name should be displayed in story notifications.", "stories_sound": "Identifier of an audio file to play for story notifications." } }, "peerSettings": { "comment": "List of actions that are possible when interacting with this user, to be shown as suggested actions in the chat action bar », see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "report_spam": "Whether we can still report the user for spam", "add_contact": "Whether we can add the user as contact", "block_contact": "Whether we can block the user", "share_contact": "Whether we can share the user's contact", "need_contacts_exception": "Whether a special exception for contacts is needed", "report_geo": "Whether we can report a geo group as irrelevant for this location", "autoarchived": "Whether this peer was automatically archived according to {@link RawGlobalPrivacySettings} and can be unarchived", "invite_members": "If set, this is a recently created group chat to which new members can be invited", "request_chat_broadcast": "This flag is set if request_chat_title and request_chat_date fields are set and the join request » is related to a channel (otherwise if only the request fields are set, the join request » is related to a chat).", "business_bot_paused": "This flag is set if both business_bot_id and business_bot_manage_url are set and all connected business bots » were paused in this chat using {@link account.RawToggleConnectedBotPausedRequest}.", "business_bot_can_reply": "This flag is set if both business_bot_id and business_bot_manage_url are set and connected business bots » can reply to messages in this chat, as specified by the settings during initial configuration.", "geo_distance": "Distance in meters between us and this peer", "request_chat_title": "If set, this is a private chat with an administrator of a chat or channel to which the user sent a join request, and this field contains the chat/channel's title.", "request_chat_date": "If set, this is a private chat with an administrator of a chat or channel to which the user sent a join request, and this field contains the timestamp when the join request » was sent.", "business_bot_id": "Contains the ID of the business bot » managing this chat, used to display info about the bot in the action bar.", "business_bot_manage_url": "Contains a deep link », used to open a management menu in the business bot. This flag is set if and only if business_bot_id is set." } }, "wallPaper": { "comment": "Represents a wallpaper based on an image.", "arguments": { "id": "Identifier", "flags": "Flags, see TL conditional fields", "creator": "Whether we created this wallpaper", "default": "Whether this is the default wallpaper", "pattern": "Whether this is a pattern wallpaper »", "dark": "Whether this wallpaper should be used in dark mode.", "access_hash": "Access hash", "slug": "Unique wallpaper ID, used when generating wallpaper links or importing wallpaper links.", "document": "The actual wallpaper", "settings": "Info on how to generate the wallpaper, according to these instructions »." } }, "peerNotifySettings": { "comment": "Notification settings.", "arguments": { "flags": "Flags, see TL conditional fields", "show_previews": "(Ternary value) If set, indicates whether or not to display previews of messages in notifications; otherwise the default behavior should be used.", "silent": "(Ternary value) If set, indicates whether to mute or unmute the peer; otherwise the default behavior should be used.", "mute_until": "Mute all notifications until this date", "ios_sound": "Notification sound for the official iOS application", "android_sound": "Notification sound for the official android application", "other_sound": "Notification sound for other applications", "stories_muted": "Whether story notifications should be disabled.", "stories_hide_sender": "Whether the sender name should be displayed in story notifications.", "stories_ios_sound": "Sound for story notifications on the official iOS application", "stories_android_sound": "Sound for story notifications on the official Android application", "stories_other_sound": "Sound for story notifications on other applications" } }, "wallPaperNoFile": { "comment": "Represents a wallpaper only based on colors/gradients.", "arguments": { "id": "Wallpaper ID", "flags": "Flags, see TL conditional fields", "default": "Whether this is the default wallpaper", "dark": "Whether this wallpaper should be used in dark mode.", "settings": "Info on how to generate the wallpaper." } }, "inputReportReasonSpam": { "comment": "Report for spam", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputReportReasonPornography": { "comment": "Report for pornography", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputReportReasonOther": { "comment": "Other", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputReportReasonViolence": { "comment": "Report for violence", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputReportReasonGeoIrrelevant": { "comment": "Report an irrelevant geo group", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputReportReasonIllegalDrugs": { "comment": "Report for illegal drugs", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputReportReasonFake": { "comment": "Report for impersonation", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputReportReasonCopyright": { "comment": "Report for copyrighted content", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "userFull": { "comment": "Extended user info\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).", "arguments": { "flags": "Flags, see TL conditional fields", "blocked": "Whether you have blocked this user", "phone_calls_available": "Whether this user can make VoIP calls", "phone_calls_private": "Whether this user's privacy settings allow you to call them", "can_pin_message": "Whether you can pin messages in the chat with this user, you can do this only for a chat with yourself", "has_scheduled": "Whether scheduled messages are available", "video_calls_available": "Whether the user can receive video calls", "voice_messages_forbidden": "Whether this user doesn't allow sending voice messages in a private chat with them", "translations_disabled": "Whether the real-time chat translation popup should be hidden.", "stories_pinned_available": "Whether this user has some pinned stories.", "blocked_my_stories_from": "Whether we've blocked this user, preventing them from seeing our stories ».", "wallpaper_overridden": "Whether the other user has chosen a custom wallpaper for us using {@link messages.RawSetChatWallPaperRequest} and the for_both flag, see here » for more info.", "contact_require_premium": "If set, we cannot write to this user: subscribe to Telegram Premium to get permission to write to this user.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.new_noncontact_peers_require_premium flag, see here » for more info.", "read_dates_private": "If set, we cannot fetch the exact read date of messages we send to this user using {@link messages.RawGetOutboxReadDateRequest}.
The exact read date of messages might still be unavailable for other reasons, see {@link messages.RawGetOutboxReadDateRequest} for more info.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.hide_read_marks flag.", "flags2": "Flags, see TL conditional fields", "sponsored_enabled": "Whether ads were re-enabled for the current account (only accessible to the currently logged-in user), see here » for more info.", "id": "User ID", "about": "Bio of the user", "settings": "Peer settings", "personal_photo": "Personal profile photo, to be shown instead of profile_photo.", "profile_photo": "Profile photo", "fallback_photo": "Fallback profile photo, displayed if no photo is present in profile_photo or personal_photo, due to privacy settings.", "notify_settings": "Notification settings", "bot_info": "For bots, info about the bot (bot commands, etc)", "pinned_msg_id": "Message ID of the last pinned message", "common_chats_count": "Chats in common with this user", "folder_id": "Peer folder ID, for more info click here", "ttl_period": "Time To Live of all messages in this chat; once a message is this many seconds old, it must be deleted.", "theme_emoticon": "Emoji associated with chat theme", "private_forward_name": "Anonymized text to be shown instead of the user's name on forwarded messages", "bot_group_admin_rights": "A suggested set of administrator rights for the bot, to be shown when adding the bot as admin to a group, see here for more info on how to handle them ».", "bot_broadcast_admin_rights": "A suggested set of administrator rights for the bot, to be shown when adding the bot as admin to a channel, see here for more info on how to handle them ».", "premium_gifts": "Telegram Premium subscriptions gift options", "wallpaper": "Wallpaper to use in the private chat with the user.", "stories": "Active stories »", "business_work_hours": "Telegram Business working hours ».", "business_location": "Telegram Business location ».", "business_greeting_message": "Telegram Business greeting message ».", "business_away_message": "Telegram Business away message ».", "business_intro": "Specifies a custom Telegram Business profile introduction ».", "birthday": "Contains info about the user's birthday ».", "personal_channel_id": "ID of the associated personal channel », that should be shown in the profile page.", "personal_channel_message": "ID of the latest message of the associated personal channel », that should be previewed in the profile page." } }, "contact": { "comment": "A contact of the current user that is registered in the system.", "arguments": { "user_id": "User identifier", "mutual": "Current user is in the user's contact list" } }, "inputReportReasonPersonalDetails": { "comment": "Report for divulgation of personal details", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputReportReasonChildAbuse": { "comment": "Report for child abuse", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "importedContact": { "comment": "Successfully imported contact.", "arguments": { "user_id": "User identifier", "client_id": "The contact's client identifier (passed to one of the InputContact constructors)" } }, "contacts.contactsNotModified": { "comment": "Contact list on the server is the same as the list on the client.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "contactStatus": { "comment": "Contact status: online / offline.", "arguments": { "user_id": "User identifier", "status": "Online status" } }, "contacts.contacts": { "comment": "The current user's contact list and info on users.", "arguments": { "contacts": "Contact list", "saved_count": "Number of contacts that were saved successfully", "users": "User list" } }, "contacts.importedContacts": { "comment": "Info on successfully imported contacts.", "arguments": { "imported": "List of successfully imported contacts", "popular_invites": "Popular contacts", "retry_contacts": "List of contact ids that could not be imported due to system limitation and will need to be imported at a later date.", "users": "List of users" } }, "contacts.blocked": { "comment": "Full list of blocked users.", "arguments": { "blocked": "List of blocked users", "chats": "Blocked chats", "users": "List of users" } }, "messages.dialogs": { "comment": "Full list of chats with messages and auxiliary data.", "arguments": { "dialogs": "List of chats", "messages": "List of last messages from each chat", "chats": "List of groups mentioned in the chats", "users": "List of users mentioned in messages and groups" } }, "contacts.blockedSlice": { "comment": "Incomplete list of blocked users.", "arguments": { "count": "Total number of elements in the list", "blocked": "List of blocked users", "chats": "Blocked chats", "users": "List of users" } }, "messages.dialogsSlice": { "comment": "Incomplete list of dialogs with messages and auxiliary data.", "arguments": { "count": "Total number of dialogs", "dialogs": "List of dialogs", "messages": "List of last messages from dialogs", "chats": "List of chats mentioned in dialogs", "users": "List of users mentioned in messages and chats" } }, "messages.dialogsNotModified": { "comment": "Dialogs haven't changed", "arguments": { "count": "Number of dialogs found server-side by the query" } }, "messages.messages": { "comment": "Full list of messages with auxiliary data.", "arguments": { "messages": "List of messages", "chats": "List of chats mentioned in dialogs", "users": "List of users mentioned in messages and chats" } }, "messages.messagesSlice": { "comment": "Incomplete list of messages and auxiliary data.", "arguments": { "flags": "Flags, see TL conditional fields", "inexact": "If set, indicates that the results may be inexact", "count": "Total number of messages in the list", "next_rate": "Rate to use in the offset_rate parameter in the next call to {@link messages.RawSearchGlobalRequest}", "offset_id_offset": "Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if the result was fetched using offset_id, and we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}.", "messages": "List of messages", "chats": "List of chats mentioned in messages", "users": "List of users mentioned in messages and chats" } }, "messages.channelMessages": { "comment": "Channel messages", "arguments": { "flags": "Flags, see TL conditional fields", "inexact": "If set, returned results may be inexact", "pts": "Event count after generation", "count": "Total number of results were found server-side (may not be all included here)", "offset_id_offset": "Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if the result was fetched using offset_id, and we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}.", "messages": "Found messages", "topics": "Forum topic information", "chats": "Chats", "users": "Users" } }, "messages.chats": { "comment": "List of chats with auxiliary data.", "arguments": { "chats": "List of chats" } }, "messages.messagesNotModified": { "comment": "No new messages matching the query were found", "arguments": { "count": "Number of results found server-side by the given query" } }, "messages.affectedHistory": { "comment": "Affected part of communication history with the user or in a chat.", "arguments": { "pts": "Number of events occurred in a text box", "pts_count": "Number of affected events", "offset": "If a parameter contains positive value, it is necessary to repeat the method call using the given value; during the proceeding of all the history the value itself shall gradually decrease" } }, "inputMessagesFilterPhotos": { "comment": "Filter for messages containing photos.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterEmpty": { "comment": "Filter is absent.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterDocument": { "comment": "Filter for messages containing documents.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.chatFull": { "comment": "Full info about a channel, supergroup, gigagroup or basic group.", "arguments": { "full_chat": "Full info", "chats": "Mentioned chats", "users": "Mentioned users" } }, "inputMessagesFilterPhotoVideo": { "comment": "Filter for messages containing photos or videos.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterVideo": { "comment": "Filter for messages containing videos.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterMusic": { "comment": "Return only messages containing audio files", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterVoice": { "comment": "Return only messages containing voice notes", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterPhoneCalls": { "comment": "Return only phone calls", "arguments": { "flags": "Flags, see TL conditional fields", "missed": "Return only missed phone calls" } }, "inputMessagesFilterUrl": { "comment": "Return only messages containing URLs", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterGif": { "comment": "Return only messages containing gifs", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterChatPhotos": { "comment": "Return only chat photo changes", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterRoundVideo": { "comment": "Return only round videos", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterRoundVoice": { "comment": "Return only round videos and voice notes", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterMyMentions": { "comment": "Return only messages where the current user was mentioned.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterContacts": { "comment": "Return only messages containing contacts", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterGeo": { "comment": "Return only messages containing geolocations", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputMessagesFilterPinned": { "comment": "Fetch only pinned messages", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateNewMessage": { "comment": "New message in a private chat or in a basic group.", "arguments": { "message": "Message", "pts": "New quantity of actions in a message box", "pts_count": "Number of generated events" } }, "updateMessageID": { "comment": "Sent message with random_id client identifier was assigned an identifier.", "arguments": { "id": "id identifier of a respective Message", "random_id": "Previously transferred client random_id identifier" } }, "updateDeleteMessages": { "comment": "Messages were deleted.", "arguments": { "messages": "List of identifiers of deleted messages", "pts": "New quality of actions in a message box", "pts_count": "Number of generated events" } }, "updateChatUserTyping": { "comment": "The user is preparing a message in a group; typing, recording, uploading, etc. This update is valid for 6 seconds. If no further updates of this kind are received after 6 seconds, it should be considered that the user stopped doing whatever they were doing", "arguments": { "chat_id": "Group id", "from_id": "Peer that started typing (can be the chat itself, in case of anonymous admins).", "action": "Type of action" } }, "updateUserStatus": { "comment": "Contact status update.", "arguments": { "user_id": "User identifier", "status": "New status" } }, "updateUserTyping": { "comment": "The user is preparing a message; typing, recording, uploading, etc. This update is valid for 6 seconds. If no further updates of this kind are received after 6 seconds, it should be considered that the user stopped doing whatever they were doing", "arguments": { "user_id": "User id", "action": "Action type" } }, "updateChatParticipants": { "comment": "Composition of chat participants changed.", "arguments": { "participants": "Updated chat participants" } }, "updateNewAuthorization": { "comment": "A new session logged into the current user's account through an unknown device.", "arguments": { "flags": "Flags, see TL conditional fields", "unconfirmed": "Whether the session is unconfirmed, see here » for more info.", "hash": "Hash used for caching, for more info click here", "date": "Authorization date", "device": "Name of device, for example Android", "location": "Location, for example USA, NY (IP=1.2.3.4)" } }, "messages.chatsSlice": { "comment": "Partial list of chats, more would have to be fetched with pagination", "arguments": { "count": "Total number of results that were found server-side (not all are included in chats)", "chats": "Chats" } }, "updateUserName": { "comment": "Changes the user's first name, last name and username.", "arguments": { "user_id": "User identifier", "first_name": "New first name. Corresponds to the new value of real_first_name field of the {@link RawUserFull} constructor.", "last_name": "New last name. Corresponds to the new value of real_last_name field of the {@link RawUserFull} constructor.", "usernames": "Usernames." } }, "updateNewEncryptedMessage": { "comment": "New encrypted message.", "arguments": { "message": "Message", "qts": "New qts value, see updates » for more info." } }, "updateEncryptedChatTyping": { "comment": "Interlocutor is typing a message in an encrypted chat. Update period is 6 second. If upon this time there is no repeated update, it shall be considered that the interlocutor stopped typing.", "arguments": { "chat_id": "Chat ID" } }, "updateEncryptedMessagesRead": { "comment": "Communication history in an encrypted chat was marked as read.", "arguments": { "chat_id": "Chat ID", "max_date": "Maximum value of data for read messages", "date": "Time when messages were read" } }, "updateChatParticipantAdd": { "comment": "New group member.", "arguments": { "chat_id": "Group ID", "user_id": "ID of the new member", "inviter_id": "ID of the user, who added member to the group", "date": "When was the participant added", "version": "Chat version number" } }, "updateEncryption": { "comment": "Change of state in an encrypted chat.", "arguments": { "chat": "Encrypted chat", "date": "Date of change" } }, "updateChatParticipantDelete": { "comment": "A member has left the group.", "arguments": { "chat_id": "Group ID", "user_id": "ID of the user", "version": "Used in basic groups to reorder updates and make sure that all of them was received." } }, "updateDcOptions": { "comment": "Changes in the data center configuration options.", "arguments": { "dc_options": "New connection options" } }, "updateNotifySettings": { "comment": "Changes in notification settings.", "arguments": { "peer": "Notification source", "notify_settings": "New notification settings" } }, "updateServiceNotification": { "comment": "A service message for the user.\n\nThe app must show the message to the user upon receiving this update. In case the popup parameter was passed, the text message must be displayed in a popup alert immediately upon receipt. It is recommended to handle the text as you would an ordinary message in terms of highlighting links, etc. The message must also be stored locally as part of the message history with the user id 777000 (Telegram Notifications).", "arguments": { "flags": "Flags, see TL conditional fields", "popup": "If set, the message must be displayed in a popup.", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "inbox_date": "When was the notification received
The message must also be stored locally as part of the message history with the user id 777000 (Telegram Notifications).", "type": "String, identical in format and contents to the type field in API errors. Describes type of service message. It is acceptable to ignore repeated messages of the same type within a short period of time (15 minutes).", "message": "Message text", "media": "Media content (optional)", "entities": "Message entities for styled text" } }, "updateReadHistoryInbox": { "comment": "Incoming messages were read", "arguments": { "flags": "Flags, see TL conditional fields", "folder_id": "Peer folder ID, for more info click here", "peer": "Peer", "max_id": "Maximum ID of messages read", "still_unread_count": "Number of messages that are still unread", "pts": "Event count after generation", "pts_count": "Number of events that were generated" } }, "updateUserPhone": { "comment": "A user's phone number was changed", "arguments": { "user_id": "User ID", "phone": "New phone number" } }, "updateReadHistoryOutbox": { "comment": "Outgoing messages were read", "arguments": { "peer": "Peer", "max_id": "Maximum ID of read outgoing messages", "pts": "Event count after generation", "pts_count": "Number of events that were generated" } }, "updateChannelTooLong": { "comment": "There are new updates in the specified channel, the client must fetch them.
\nIf the difference is too long or if the channel isn't currently in the states, start fetching from the specified pts.", "arguments": { "flags": "Flags, see TL conditional fields", "channel_id": "The channel", "pts": "The PTS." } }, "updateWebPage": { "comment": "An instant view webpage preview was generated", "arguments": { "webpage": "Webpage preview", "pts": "Event count after generation", "pts_count": "Number of events that were generated" } }, "updateChannel": { "comment": "Channel/supergroup ({@link RawChannel} and/or {@link RawChannelFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawChannel}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawChannelFull}) must be invalidated for channel_id when receiving this update.", "arguments": { "channel_id": "Channel ID" } }, "updateReadChannelInbox": { "comment": "Incoming messages in a channel/supergroup were read", "arguments": { "flags": "Flags, see TL conditional fields", "folder_id": "Peer folder ID, for more info click here", "channel_id": "Channel/supergroup ID", "max_id": "Position up to which all incoming messages are read.", "still_unread_count": "Count of messages weren't read yet", "pts": "Event count after generation" } }, "updateNewChannelMessage": { "comment": "A new message was sent in a channel/supergroup", "arguments": { "message": "New message", "pts": "Event count after generation", "pts_count": "Number of events that were generated" } }, "updateDeleteChannelMessages": { "comment": "Some messages in a supergroup/channel were deleted", "arguments": { "channel_id": "Channel ID", "messages": "IDs of messages that were deleted", "pts": "Event count after generation", "pts_count": "Number of events that were generated" } }, "updateChatParticipantAdmin": { "comment": "Admin permissions of a user in a basic group were changed", "arguments": { "chat_id": "Chat ID", "user_id": "ID of the (de)admined user", "is_admin": "Whether the user was rendered admin", "version": "Used in basic groups to reorder updates and make sure that all of them was received." } }, "updateReadMessagesContents": { "comment": "Contents of messages in the common message box were read", "arguments": { "flags": "Flags, see TL conditional fields", "messages": "IDs of read messages", "pts": "Event count after generation", "pts_count": "Number of events that were generated", "date": "When was the last message in messages marked as read." } }, "updateSavedGifs": { "comment": "The saved gif list has changed, the client should refetch it using {@link messages.RawGetSavedGifsRequest}", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateStickerSets": { "comment": "Installed stickersets have changed, the client should refetch them as described in the docs.", "arguments": { "flags": "Flags, see TL conditional fields", "masks": "Whether mask stickersets have changed", "emojis": "Whether the list of installed custom emoji stickersets has changed" } }, "updateBotInlineSend": { "comment": "The result of an inline query that was chosen by a user and sent to their chat partner. Please see our documentation on the feedback collecting for details on how to enable these updates for your bot.", "arguments": { "flags": "Flags, see TL conditional fields", "user_id": "The user that chose the result", "query": "The query that was used to obtain the result", "geo": "Optional. Sender location, only for bots that require user location", "id": "The unique identifier for the result that was chosen", "msg_id": "Identifier of the sent inline message. Available only if there is an inline keyboard attached to the message. Will be also received in callback queries and can be used to edit the message." } }, "updateNewStickerSet": { "comment": "A new stickerset was installed", "arguments": { "stickerset": "The installed stickerset" } }, "updateChannelMessageViews": { "comment": "The view counter of a message in a channel has changed", "arguments": { "channel_id": "Channel ID", "id": "ID of the message", "views": "New view counter" } }, "updateStickerSetsOrder": { "comment": "The order of stickersets was changed", "arguments": { "flags": "Flags, see TL conditional fields", "masks": "Whether the updated stickers are mask stickers", "emojis": "Whether the updated stickers are custom emoji stickers", "order": "New sticker order by sticker ID" } }, "updateBotInlineQuery": { "comment": "An incoming inline query", "arguments": { "flags": "Flags, see TL conditional fields", "query_id": "Query ID", "user_id": "User that sent the query", "query": "Text of query", "geo": "Attached geolocation", "peer_type": "Type of the chat from which the inline query was sent.", "offset": "Offset to navigate through results" } }, "updateEditChannelMessage": { "comment": "A message was edited in a channel/supergroup", "arguments": { "message": "The new message", "pts": "Event count after generation", "pts_count": "Number of events that were generated" } }, "updateBotCallbackQuery": { "comment": "A callback button was pressed, and the button data was sent to the bot that created the button", "arguments": { "flags": "Flags, see TL conditional fields", "query_id": "Query ID", "user_id": "ID of the user that pressed the button", "peer": "Chat where the inline keyboard was sent", "msg_id": "Message ID", "chat_instance": "Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games.", "data": "Callback data", "game_short_name": "Short name of a Game to be returned, serves as the unique identifier for the game" } }, "updateInlineBotCallbackQuery": { "comment": "This notification is received by bots when a button is pressed", "arguments": { "flags": "Flags, see TL conditional fields", "query_id": "Query ID", "user_id": "ID of the user that pressed the button", "msg_id": "ID of the inline message with the button", "chat_instance": "Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games.", "data": "Data associated with the callback button. Be aware that a bad client can send arbitrary data in this field.", "game_short_name": "Short name of a Game to be returned, serves as the unique identifier for the game" } }, "updateReadChannelOutbox": { "comment": "Outgoing messages in a channel/supergroup were read", "arguments": { "channel_id": "Channel/supergroup ID", "max_id": "Position up to which all outgoing messages are read." } }, "updateDraftMessage": { "comment": "Notifies a change of a message draft.", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "The peer to which the draft is associated", "top_msg_id": "ID of the forum topic to which the draft is associated", "draft": "The draft" } }, "updateEditMessage": { "comment": "A message was edited", "arguments": { "message": "The new edited message", "pts": "PTS", "pts_count": "PTS count" } }, "updateReadFeaturedStickers": { "comment": "Some featured stickers were marked as read", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updatePtsChanged": { "comment": "Common message box sequence PTS has changed, state has to be refetched using updates.getState", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateConfig": { "comment": "The server-side configuration has changed; the client should re-fetch the config using {@link help.RawGetConfigRequest} and {@link help.RawGetAppConfigRequest}.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateChannelWebPage": { "comment": "A webpage preview of a link in a channel/supergroup message was generated", "arguments": { "channel_id": "Channel/supergroup ID", "webpage": "Generated webpage preview", "pts": "Event count after generation", "pts_count": "Number of events that were generated" } }, "updateBotWebhookJSON": { "comment": "A new incoming event; for bots only", "arguments": { "data": "The event" } }, "updatePrivacy": { "comment": "Privacy rules were changed", "arguments": { "key": "Peers to which the privacy rules apply", "rules": "New privacy rules" } }, "updatePinnedDialogs": { "comment": "Pinned dialogs were updated", "arguments": { "flags": "Flags, see TL conditional fields", "folder_id": "Peer folder ID, for more info click here", "order": "New order of pinned dialogs" } }, "updateRecentStickers": { "comment": "The recent sticker list was updated", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateBotWebhookJSONQuery": { "comment": "A new incoming query; for bots only", "arguments": { "query_id": "Query identifier", "data": "Query data", "timeout": "Query timeout" } }, "updateDialogPinned": { "comment": "A dialog was pinned/unpinned", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Whether the dialog was pinned", "folder_id": "Peer folder ID, for more info click here", "peer": "The dialog" } }, "updateBotPrecheckoutQuery": { "comment": "This object contains information about an incoming pre-checkout query.", "arguments": { "flags": "Flags, see TL conditional fields", "query_id": "Unique query identifier", "user_id": "User who sent the query", "payload": "Bot specified invoice payload", "info": "Order info provided by the user", "shipping_option_id": "Identifier of the shipping option chosen by the user", "currency": "Three-letter ISO 4217 currency code, or XTR for Telegram Stars.", "total_amount": "Total amount in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." } }, "updateBotShippingQuery": { "comment": "This object contains information about an incoming shipping query.", "arguments": { "query_id": "Unique query identifier", "user_id": "User who sent the query", "payload": "Bot specified invoice payload", "shipping_address": "User specified shipping address" } }, "updateLangPackTooLong": { "comment": "A language pack has changed, the client should manually fetch the changed strings using {@link langpack.RawGetDifferenceRequest}", "arguments": { "lang_code": "Language code" } }, "updatePhoneCall": { "comment": "An incoming phone call", "arguments": { "phone_call": "Phone call" } }, "updateLangPack": { "comment": "Language pack updated", "arguments": { "difference": "Changed strings" } }, "updateChannelReadMessagesContents": { "comment": "The specified channel/supergroup messages were read", "arguments": { "flags": "Flags, see TL conditional fields", "channel_id": "Channel/supergroup ID", "top_msg_id": "Forum topic ID.", "messages": "IDs of messages that were read" } }, "updateFavedStickers": { "comment": "The list of favorited stickers was changed, the client should call {@link messages.RawGetFavedStickersRequest} to refetch the new list", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateChannelAvailableMessages": { "comment": "The history of a channel/supergroup was hidden.", "arguments": { "channel_id": "Channel/supergroup ID", "available_min_id": "Identifier of a maximum unavailable message in a channel due to hidden history." } }, "updateContactsReset": { "comment": "All contacts were deleted", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateMessagePoll": { "comment": "The results of a poll have changed", "arguments": { "flags": "Flags, see TL conditional fields", "poll_id": "Poll ID", "poll": "If the server knows the client hasn't cached this poll yet, the poll itself", "results": "New poll results" } }, "updateChatDefaultBannedRights": { "comment": "Default banned rights in a normal chat were updated", "arguments": { "peer": "The chat", "default_banned_rights": "New default banned rights", "version": "Version" } }, "updateDialogUnreadMark": { "comment": "The manual unread mark of a chat was changed", "arguments": { "flags": "Flags, see TL conditional fields", "unread": "Was the chat marked or unmarked as read", "peer": "The dialog" } }, "updatePeerSettings": { "comment": "Settings of a certain peer have changed", "arguments": { "peer": "The peer", "settings": "Associated peer settings" } }, "updatePeerLocated": { "comment": "List of peers near you was updated", "arguments": { "peers": "Geolocated peer list update" } }, "updateNewScheduledMessage": { "comment": "A message was added to the schedule queue of a chat", "arguments": { "message": "Message" } }, "updateFolderPeers": { "comment": "The peer list of a peer folder was updated", "arguments": { "folder_peers": "New peer list", "pts": "Event count after generation", "pts_count": "Number of events that were generated" } }, "updateDeleteScheduledMessages": { "comment": "Some scheduled messages were deleted from the schedule queue of a chat", "arguments": { "peer": "Peer", "messages": "Deleted scheduled messages" } }, "updateTheme": { "comment": "A cloud theme was updated", "arguments": { "theme": "Theme" } }, "updateDialogFilter": { "comment": "A new folder was added", "arguments": { "flags": "Flags, see TL conditional fields", "id": "Folder ID", "filter": "Folder info" } }, "updateGeoLiveViewed": { "comment": "Live geo position message was viewed", "arguments": { "peer": "The user that viewed the live geo position", "msg_id": "Message ID of geo position message" } }, "updateLoginToken": { "comment": "A login token (for login via QR code) was accepted.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateMessagePollVote": { "comment": "A specific peer has voted in a poll", "arguments": { "poll_id": "Poll ID", "peer": "The peer that voted in the poll", "options": "Chosen option(s)", "qts": "New qts value, see updates » for more info." } }, "updateDialogFilterOrder": { "comment": "New folder order", "arguments": { "order": "Ordered folder IDs" } }, "updateDialogFilters": { "comment": "Clients should update folder info", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateChannelMessageForwards": { "comment": "The forward counter of a message in a channel has changed", "arguments": { "channel_id": "Channel ID", "id": "ID of the message", "forwards": "New forward counter" } }, "updateReadChannelDiscussionInbox": { "comment": "Incoming comments in a discussion thread were marked as read", "arguments": { "flags": "Flags, see TL conditional fields", "channel_id": "Discussion group ID", "top_msg_id": "ID of the group message that started the thread (message in linked discussion group)", "read_max_id": "Message ID of latest read incoming message for this thread", "broadcast_id": "If set, contains the ID of the channel that contains the post that started the comment thread in the discussion group (channel_id)", "broadcast_post": "If set, contains the ID of the channel post that started the comment thread" } }, "updatePeerBlocked": { "comment": "We blocked a peer, see here » for more info on blocklists.", "arguments": { "flags": "Flags, see TL conditional fields", "blocked": "Whether the peer was blocked or unblocked", "blocked_my_stories_from": "Whether the peer was added/removed to/from the story blocklist; if not set, this update affects the main blocklist, see here » for more info.", "peer_id": "The (un)blocked peer" } }, "updatePhoneCallSignalingData": { "comment": "Incoming phone call signaling payload", "arguments": { "phone_call_id": "Phone call ID", "data": "Signaling payload" } }, "updateReadChannelDiscussionOutbox": { "comment": "Outgoing comments in a discussion thread were marked as read", "arguments": { "channel_id": "Supergroup ID", "top_msg_id": "ID of the group message that started the thread", "read_max_id": "Message ID of latest read outgoing message for this thread" } }, "updatePinnedChannelMessages": { "comment": "Messages were pinned/unpinned in a channel/supergroup", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Whether the messages were pinned or unpinned", "channel_id": "Channel ID", "messages": "Messages", "pts": "Event count after generation", "pts_count": "Number of events that were generated" } }, "updateChannelUserTyping": { "comment": "A user is typing in a supergroup, channel or message thread", "arguments": { "flags": "Flags, see TL conditional fields", "channel_id": "Channel ID", "top_msg_id": "Thread ID", "from_id": "The peer that is typing", "action": "Whether the user is typing, sending a media or doing something else" } }, "updatePinnedMessages": { "comment": "Some messages were pinned in a chat", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Whether the messages were pinned or unpinned", "peer": "Peer", "messages": "Message IDs", "pts": "Event count after generation", "pts_count": "Number of events that were generated" } }, "updateChat": { "comment": "Chat ({@link RawChat} and/or {@link RawChatFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawChat}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawChatFull}) must be invalidated for chat_id when receiving this update.", "arguments": { "chat_id": "Chat ID" } }, "updateGroupCallParticipants": { "comment": "The participant list of a certain group call has changed", "arguments": { "call": "Group call", "participants": "New participant list", "version": "Version" } }, "updateChannelParticipant": { "comment": "A participant has left, joined, was banned or admined in a channel or supergroup.", "arguments": { "flags": "Flags, see TL conditional fields", "via_chatlist": "Whether the participant joined using a chat folder deep link ».", "channel_id": "Channel ID", "date": "Date of the event", "actor_id": "User that triggered the change (inviter, admin that kicked the user, or the even the user_id itself)", "user_id": "User that was affected by the change", "prev_participant": "Previous participant status", "new_participant": "New participant status", "invite": "Chat invite used to join the channel/supergroup", "qts": "New qts value, see updates » for more info." } }, "updateGroupCall": { "comment": "A new groupcall was started", "arguments": { "chat_id": "The channel/supergroup where this group call or livestream takes place", "call": "Info about the group call or livestream" } }, "updateBotStopped": { "comment": "A bot was stopped or re-started.", "arguments": { "user_id": "The user ID", "date": "When did this action occur", "stopped": "Whether the bot was stopped or started", "qts": "New qts value, see updates » for more info." } }, "updatePeerHistoryTTL": { "comment": "The Time-To-Live for messages sent by the current user in a specific chat has changed", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "The chat", "ttl_period": "The new Time-To-Live" } }, "updateChatParticipant": { "comment": "A user has joined or left a specific chat", "arguments": { "flags": "Flags, see TL conditional fields", "chat_id": "Chat ID", "date": "When did this event occur", "actor_id": "User that triggered the change (inviter, admin that kicked the user, or the even the user_id itself)", "user_id": "User that was affected by the change", "prev_participant": "Previous participant info (empty if this participant just joined)", "new_participant": "New participant info (empty if this participant just left)", "invite": "The invite that was used to join the group", "qts": "New qts value, see updates » for more info." } }, "updateGroupCallConnection": { "comment": "New WebRTC parameters", "arguments": { "flags": "Flags, see TL conditional fields", "presentation": "Are these parameters related to the screen capture session currently in progress?", "params": "WebRTC parameters" } }, "updateBotCommands": { "comment": "The command set of a certain bot in a certain chat has changed.", "arguments": { "peer": "The affected chat", "bot_id": "ID of the bot that changed its command set", "commands": "New bot commands" } }, "updateMessageReactions": { "comment": "New message reactions » are available", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer", "msg_id": "Message ID", "top_msg_id": "Forum topic ID", "reactions": "Reactions" } }, "updateBotChatInviteRequester": { "comment": "Someone has requested to join a chat or channel (bots only, users will receive an {@link RawUpdatePendingJoinRequests}, instead)", "arguments": { "peer": "The chat or channel in question", "date": "When was the join request » made", "user_id": "The user ID that is asking to join the chat or channel", "about": "Bio of the user", "invite": "Chat invite link that was used by the user to send the join request »", "qts": "QTS event sequence identifier" } }, "updatePendingJoinRequests": { "comment": "Someone has requested to join a chat or channel", "arguments": { "peer": "Chat or channel", "requests_pending": "Number of pending join requests » for the chat or channel", "recent_requesters": "IDs of users that have recently requested to join" } }, "updateAttachMenuBots": { "comment": "The list of installed attachment menu entries » has changed, use {@link messages.RawGetAttachMenuBotsRequest} to fetch the updated list.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateBotMenuButton": { "comment": "The menu button behavior for the specified bot has changed", "arguments": { "bot_id": "Bot ID", "button": "New menu button" } }, "updateWebViewResultSent": { "comment": "Indicates to a bot that a webview was closed and an inline message was sent on behalf of the user using {@link messages.RawSendWebViewResultMessageRequest}", "arguments": { "query_id": "Web app interaction ID" } }, "updateSavedRingtones": { "comment": "The list of saved notification sounds has changed, use {@link account.RawGetSavedRingtonesRequest} to fetch the new list.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateRecentEmojiStatuses": { "comment": "The list of recent emoji statuses has changed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateTranscribedAudio": { "comment": "A pending voice message transcription » initiated with {@link messages.RawTranscribeAudioRequest} was updated.", "arguments": { "flags": "Flags, see TL conditional fields", "pending": "Whether this transcription is still pending and further {@link RawUpdateTranscribedAudio} about it will be sent in the future.", "peer": "Peer of the transcribed message", "msg_id": "Transcribed message ID", "transcription_id": "Transcription ID", "text": "Transcribed text" } }, "updateUserEmojiStatus": { "comment": "The emoji status of a certain user has changed", "arguments": { "user_id": "User ID", "emoji_status": "New emoji status" } }, "updateReadFeaturedEmojiStickers": { "comment": "Some featured custom emoji stickers were marked as read", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateRecentReactions": { "comment": "The list of recent message reactions has changed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateMoveStickerSetToTop": { "comment": "A stickerset was just moved to top, see here for more info »", "arguments": { "flags": "Flags, see TL conditional fields", "masks": "This update is referring to a mask stickerset", "emojis": "This update is referring to a custom emoji stickerset", "stickerset": "Stickerset ID" } }, "updateChannelPinnedTopics": { "comment": "The pinned topics of a forum have changed.", "arguments": { "flags": "Flags, see TL conditional fields", "channel_id": "Forum ID.", "order": "Ordered list containing the IDs of all pinned topics." } }, "updateUser": { "comment": "User ({@link RawUser} and/or {@link RawUserFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawUser}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawUserFull}) must be invalidated for user_id when receiving this update.", "arguments": { "user_id": "User ID" } }, "updateChannelPinnedTopic": { "comment": "A forum topic » was pinned or unpinned.", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Whether the topic was pinned or unpinned", "channel_id": "The forum ID", "topic_id": "The topic ID" } }, "updateStory": { "comment": "A new story was posted.", "arguments": { "peer": "ID of the poster.", "story": "The story that was posted." } }, "updateAutoSaveSettings": { "comment": "Media autosave settings have changed and must be refetched using {@link account.RawGetAutoSaveSettingsRequest}.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateReadStories": { "comment": "Stories of a specific peer were marked as read.", "arguments": { "peer": "The peer", "max_id": "ID of the last story that was marked as read" } }, "updateStoryID": { "comment": "A story was successfully uploaded.\n\nOnce a story is successfully uploaded, an {@link RawUpdateStoryID} will be returned, indicating the story ID (id) that was attributed to the story (like for messages, random_id indicates the random_id that was passed to {@link stories.RawSendStoryRequest}: this way, you can tell which story was assigned a specific id by checking which {@link stories.RawSendStoryRequest} call has the returned random_id).", "arguments": { "id": "The id that was attributed to the story.", "random_id": "The random_id that was passed to {@link stories.RawSendStoryRequest}." } }, "updateStoriesStealthMode": { "comment": "Indicates that stories stealth mode was activated.", "arguments": { "stealth_mode": "Information about the current stealth mode session." } }, "updateSentStoryReaction": { "comment": "Indicates we reacted to a story ».", "arguments": { "peer": "The peer that sent the story", "story_id": "ID of the story we reacted to", "reaction": "The reaction that was sent" } }, "updateBotChatBoost": { "comment": "A channel/supergroup boost has changed (bots only)", "arguments": { "peer": "Channel", "boost": "New boost information", "qts": "QTS event sequence identifier" } }, "updateMessageExtendedMedia": { "comment": "You bought a paid media »: this update contains the revealed media.", "arguments": { "peer": "Peer where the paid media was posted", "msg_id": "ID of the message containing the paid media", "extended_media": "Revealed media, contains only {@link RawMessageExtendedMedia} constructors." } }, "updateChannelViewForumAsMessages": { "comment": "Users may also choose to display messages from all topics as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
\nThis setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of the view_forum_as_messages flag of {@link RawChannelFull} or {@link RawDialog} and emit an {@link RawUpdateChannelViewForumAsMessages}.", "arguments": { "channel_id": "The forum ID", "enabled": "The new value of the toggle." } }, "updateSavedDialogPinned": { "comment": "A saved message dialog was pinned/unpinned", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Whether the dialog was pinned", "peer": "The dialog" } }, "updatePinnedSavedDialogs": { "comment": "Pinned saved dialogs » were updated", "arguments": { "flags": "Flags, see TL conditional fields", "order": "New order of pinned saved dialogs" } }, "updateBotMessageReactions": { "comment": "Bots only: the number of reactions on a message with anonymous reactions has changed.", "arguments": { "peer": "Peer of the reacted-to message.", "msg_id": "ID of the reacted-to message.", "date": "Date of the change.", "reactions": "New reaction counters.", "qts": "QTS event sequence identifier" } }, "updateSavedReactionTags": { "comment": "The list of reaction tag » names assigned by the user has changed and should be refetched using {@link messages.RawGetSavedReactionTagsRequest}.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateBotMessageReaction": { "comment": "Bots only: a user has changed their reactions on a message with public reactions.", "arguments": { "peer": "Peer of the reacted-to message.", "msg_id": "ID of the reacted-to message.", "date": "Date of the change.", "actor": "The user that (un)reacted to the message.", "old_reactions": "Old reactions", "new_reactions": "New reactions", "qts": "QTS event sequence identifier" } }, "updatePeerWallpaper": { "comment": "The wallpaper » of a given peer has changed.", "arguments": { "flags": "Flags, see TL conditional fields", "wallpaper_overridden": "Whether the other user has chosen a custom wallpaper for us using {@link messages.RawSetChatWallPaperRequest} and the for_both flag, see here » for more info.", "peer": "The peer where the wallpaper has changed.", "wallpaper": "The new wallpaper, if none the wallpaper was removed and the default wallpaper should be used." } }, "updateSmsJob": { "comment": "A new SMS job was received", "arguments": { "job_id": "SMS job ID" } }, "updateQuickReplies": { "comment": "Info about or the order of quick reply shortcuts » was changed.", "arguments": { "quick_replies": "New quick reply shortcut order and information." } }, "updateNewQuickReply": { "comment": "A new quick reply shortcut » was created.", "arguments": { "quick_reply": "Quick reply shortcut." } }, "updateQuickReplyMessage": { "comment": "A new message was added to a quick reply shortcut ».", "arguments": { "message": "The message that was added (the {@link RawMessage}.quick_reply_shortcut_id field will contain the shortcut ID)." } }, "updateDeleteQuickReply": { "comment": "A quick reply shortcut » was deleted. This will not emit {@link RawUpdateDeleteQuickReplyMessages} updates, even if all the messages in the shortcut are also deleted by this update.", "arguments": { "shortcut_id": "ID of the quick reply shortcut that was deleted." } }, "updateDeleteQuickReplyMessages": { "comment": "One or more messages in a quick reply shortcut » were deleted.", "arguments": { "shortcut_id": "Quick reply shortcut ID.", "messages": "IDs of the deleted messages." } }, "updateBotNewBusinessMessage": { "comment": "A message was received via a connected business chat ».", "arguments": { "flags": "Flags, see TL conditional fields", "connection_id": "Connection ID.", "message": "New message.", "reply_to_message": "The message that message is replying to.", "qts": "New qts value, see updates » for more info." } }, "updateBotEditBusinessMessage": { "comment": "A message was edited in a connected business chat ».", "arguments": { "flags": "Flags, see TL conditional fields", "connection_id": "Business connection ID", "message": "New message.", "reply_to_message": "The message that message is replying to.", "qts": "New qts value, see updates » for more info." } }, "updateBotDeleteBusinessMessage": { "comment": "A message was deleted in a connected business chat ».", "arguments": { "connection_id": "Business connection ID.", "peer": "Peer where the messages were deleted.", "messages": "IDs of the messages that were deleted.", "qts": "New qts value, see updates » for more info." } }, "updateBotBusinessConnect": { "comment": "Connecting or disconnecting a business bot or changing the connection settings will emit an {@link RawUpdateBotBusinessConnect} update to the bot, with the new settings and a connection_id that will be used by the bot to handle updates from and send messages as the user.", "arguments": { "connection": "Business connection settings", "qts": "New qts value, see updates » for more info." } }, "updateNewStoryReaction": { "comment": "Represents a new reaction to a story.", "arguments": { "story_id": "Story ID.", "peer": "The peer where the story was posted.", "reaction": "The reaction." } }, "updateBroadcastRevenueTransactions": { "comment": "A new channel ad revenue transaction was made, see here » for more info.", "arguments": { "peer": "Channel", "balances": "New ad revenue balance." } }, "updateStarsBalance": { "comment": "The current account's Telegram Stars balance » has changed.", "arguments": { "balance": "New balance." } }, "updateBusinessBotCallbackQuery": { "comment": "A callback button sent via a business connection was pressed, and the button data was sent to the bot that created the button.", "arguments": { "flags": "Flags, see TL conditional fields", "query_id": "Query ID", "user_id": "ID of the user that pressed the button", "connection_id": "Business connection ID", "message": "Message that contains the keyboard (also contains info about the chat where the message was sent).", "reply_to_message": "The message that message is replying to.", "chat_instance": "Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games.", "data": "Callback data" } }, "updates.difference": { "comment": "Full list of occurred events.", "arguments": { "new_messages": "List of new messages", "new_encrypted_messages": "List of new encrypted secret chat messages", "other_updates": "List of updates", "chats": "List of chats mentioned in events", "users": "List of users mentioned in events", "state": "Current state" } }, "updates.state": { "comment": "Updates state.", "arguments": { "pts": "Number of events occurred in a text box", "qts": "Position in a sequence of updates in secret chats. For further details refer to article secret chats", "date": "Date of condition", "seq": "Number of sent updates", "unread_count": "Number of unread messages" } }, "updates.differenceEmpty": { "comment": "No events.", "arguments": { "date": "Current date", "seq": "Number of sent updates" } }, "updateStarsRevenueStatus": { "comment": "The Telegram Star balance of a channel/bot we own has changed ».", "arguments": { "peer": "Channel/bot", "status": "New Telegram Star balance." } }, "updates.differenceSlice": { "comment": "Incomplete list of occurred events.", "arguments": { "new_messages": "List of new messages", "new_encrypted_messages": "New messages from the encrypted event sequence", "other_updates": "List of updates", "chats": "List of chats mentioned in events", "users": "List of users mentioned in events", "intermediate_state": "Intermediary state" } }, "updatesTooLong": { "comment": "Too many updates, it is necessary to execute {@link updates.RawGetDifferenceRequest}.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updateShort": { "comment": "Shortened constructor containing info on one update not requiring auxiliary data", "arguments": { "update": "Update", "date": "Date of event" } }, "updates.differenceTooLong": { "comment": "The difference is too long, and the specified state must be used to refetch updates.", "arguments": { "pts": "The new state to use." } }, "updatesCombined": { "comment": "Constructor for a group of updates.", "arguments": { "updates": "List of updates", "users": "List of users mentioned in updates", "chats": "List of chats mentioned in updates", "date": "Current date", "seq_start": "Value seq for the earliest update in a group", "seq": "Value seq for the latest update in a group" } }, "updates": { "comment": "Full constructor of updates", "arguments": { "updates": "List of updates", "users": "List of users mentioned in updates", "chats": "List of chats mentioned in updates", "date": "Current date", "seq": "Total number of sent updates" } }, "updateShortSentMessage": { "comment": "Shortened constructor containing info on one outgoing message to a contact (the destination chat has to be extracted from the method call that returned this object).", "arguments": { "flags": "Flags, see TL conditional fields", "out": "Whether the message is outgoing", "id": "ID of the sent message", "pts": "PTS", "pts_count": "PTS count", "date": "date", "media": "Attached media", "entities": "Entities for styled text", "ttl_period": "Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well." } }, "updateShortChatMessage": { "comment": "Shortened constructor containing info on one new incoming text message from a chat", "arguments": { "flags": "Flags, see TL conditional fields", "out": "Whether the message is outgoing", "mentioned": "Whether we were mentioned in this message", "media_unread": "Whether the message contains some unread mentions", "silent": "If true, the message is a silent message, no notifications should be triggered", "id": "ID of the message", "from_id": "ID of the sender of the message", "chat_id": "ID of the chat where the message was sent", "message": "Message", "pts": "PTS", "pts_count": "PTS count", "date": "date", "fwd_from": "Info about a forwarded message", "via_bot_id": "Info about the inline bot used to generate this message", "reply_to": "Reply (thread) information", "entities": "Entities for styled text", "ttl_period": "Time To Live of the message, once updateShortChatMessage.date+updateShortChatMessage.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well." } }, "photos.photos": { "comment": "Full list of photos with auxiliary data.", "arguments": { "photos": "List of photos", "users": "List of mentioned users" } }, "photos.photosSlice": { "comment": "Incomplete list of photos with auxiliary data.", "arguments": { "count": "Total number of photos", "photos": "List of photos", "users": "List of mentioned users" } }, "photos.photo": { "comment": "Photo with auxiliary data.", "arguments": { "photo": "Photo", "users": "Users" } }, "upload.file": { "comment": "File content.", "arguments": { "type": "File type", "mtime": "Modification time", "bytes": "Binary data, file content" } }, "updateShortMessage": { "comment": "Info about a message sent to (received from) another user", "arguments": { "flags": "Flags, see TL conditional fields", "out": "Whether the message is outgoing", "mentioned": "Whether we were mentioned in the message", "media_unread": "Whether there are some unread mentions in this message", "silent": "If true, the message is a silent message, no notifications should be triggered", "id": "The message ID", "user_id": "The ID of the sender (if outgoing will be the ID of the destination) of the message", "message": "The message", "pts": "PTS", "pts_count": "PTS count", "date": "date", "fwd_from": "Info about a forwarded message", "via_bot_id": "Info about the inline bot used to generate this message", "reply_to": "Reply and thread information", "entities": "Entities for styled text", "ttl_period": "Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well." } }, "dcOption": { "comment": "Data center", "arguments": { "flags": "Flags, see TL conditional fields", "ipv6": "Whether the specified IP is an IPv6 address", "media_only": "Whether this DC should only be used to download or upload files", "tcpo_only": "Whether this DC only supports connection with transport obfuscation", "cdn": "Whether this is a CDN DC.", "static": "If set, this IP should be used when connecting through a proxy", "this_port_only": "If set, clients must connect using only the specified port, without trying any other port.", "id": "DC ID", "ip_address": "IP address of DC", "port": "Port", "secret": "If the tcpo_only flag is set, specifies the secret to use when connecting using transport obfuscation" } }, "nearestDc": { "comment": "Nearest data center, according to geo-ip.", "arguments": { "country": "Country code determined by geo-ip", "this_dc": "Number of current data center", "nearest_dc": "Number of nearest data center" } }, "upload.fileCdnRedirect": { "comment": "The file must be downloaded from a CDN DC.", "arguments": { "dc_id": "CDN DC ID", "file_token": "File token (see CDN files)", "encryption_key": "Encryption key (see CDN files)", "encryption_iv": "Encryption IV (see CDN files)", "file_hashes": "File hashes (see CDN files)" } }, "config": { "comment": "Current configuration", "arguments": { "flags": "Flags, see TL conditional fields", "default_p2p_contacts": "Whether the client should use P2P by default for phone calls with contacts", "preload_featured_stickers": "Whether the client should preload featured stickers", "revoke_pm_inbox": "Whether incoming private messages can be deleted for both participants", "blocked_mode": "Indicates that telegram is probably censored by governments/ISPs in the current region", "force_try_ipv6": "Whether to forcefully connect using IPv6 dcOptions, even if the client knows that IPv4 is available.", "date": "Current date at the server", "expires": "Expiration date of this config: when it expires it'll have to be refetched using {@link help.RawGetConfigRequest}", "test_mode": "Whether we're connected to the test DCs", "this_dc": "ID of the DC that returned the reply", "dc_options": "DC IP list", "dc_txt_domain_name": "Domain name for fetching encrypted DC list from DNS TXT record", "chat_size_max": "Maximum member count for normal groups", "megagroup_size_max": "Maximum member count for supergroups", "forwarded_count_max": "Maximum number of messages that can be forwarded at once using {@link messages.RawForwardMessagesRequest}.", "online_update_period_ms": "The client should {@link account.RawUpdateStatusRequest} every N milliseconds", "offline_blur_timeout_ms": "Delay before offline status needs to be sent to the server", "offline_idle_timeout_ms": "Time without any user activity after which it should be treated offline", "online_cloud_timeout_ms": "If we are offline, but were online from some other client in last online_cloud_timeout_ms milliseconds after we had gone offline, then delay offline notification for notify_cloud_delay_ms milliseconds.", "notify_cloud_delay_ms": "If we are offline, but online from some other client then delay sending the offline notification for notify_cloud_delay_ms milliseconds.", "notify_default_delay_ms": "If some other client is online, then delay notification for notification_default_delay_ms milliseconds", "push_chat_period_ms": "Not for client use", "push_chat_limit": "Not for client use", "edit_time_limit": "Only messages with age smaller than the one specified can be edited", "revoke_time_limit": "Only channel/supergroup messages with age smaller than the specified can be deleted", "revoke_pm_time_limit": "Only private messages with age smaller than the specified can be deleted", "rating_e_decay": "Exponential decay rate for computing top peer rating", "stickers_recent_limit": "Maximum number of recent stickers", "channels_read_media_period": "Indicates that round videos (video notes) and voice messages sent in channels and older than the specified period must be marked as read", "tmp_sessions": "Temporary passport sessions", "call_receive_timeout_ms": "Maximum allowed outgoing ring time in VoIP calls: if the user we're calling doesn't reply within the specified time (in milliseconds), we should hang up the call", "call_ring_timeout_ms": "Maximum allowed incoming ring time in VoIP calls: if the current user doesn't reply within the specified time (in milliseconds), the call will be automatically refused", "call_connect_timeout_ms": "VoIP connection timeout: if the instance of libtgvoip on the other side of the call doesn't connect to our instance of libtgvoip within the specified time (in milliseconds), the call must be aborted", "call_packet_timeout_ms": "If during a VoIP call a packet isn't received for the specified period of time, the call must be aborted", "me_url_prefix": "The domain to use to parse deep links ».", "autoupdate_url_prefix": "URL to use to auto-update the current app", "gif_search_username": "Username of the bot to use to search for GIFs", "venue_search_username": "Username of the bot to use to search for venues", "img_search_username": "Username of the bot to use for image search", "static_maps_provider": "ID of the map provider to use for venues", "caption_length_max": "Maximum length of caption (length in utf8 codepoints)", "message_length_max": "Maximum length of messages (length in utf8 codepoints)", "webfile_dc_id": "DC ID to use to download webfiles", "suggested_lang_code": "Suggested language code", "lang_pack_version": "Language pack version", "base_lang_pack_version": "Basic language pack version", "reactions_default": "Default message reaction", "autologin_token": "Autologin token, click here for more info on URL authorization »." } }, "help.noAppUpdate": { "comment": "No updates are available for the application.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.inviteText": { "comment": "Text of a text message with an invitation to install Telegram.", "arguments": { "message": "Text of the message" } }, "help.appUpdate": { "comment": "An update is available for the application.", "arguments": { "flags": "Flags, see TL conditional fields", "can_not_skip": "Unskippable, the new info must be shown to the user (with a popup or something else)", "id": "Update ID", "version": "New version name", "text": "Text description of the update", "entities": "Message entities for styled text", "document": "Application binary", "url": "Application download URL", "sticker": "Associated sticker" } }, "inputEncryptedFile": { "comment": "Sets forwarded encrypted file for attachment.", "arguments": { "id": "File ID, value of id parameter from {@link RawEncryptedFile}", "access_hash": "Checking sum, value of access_hash parameter from {@link RawEncryptedFile}" } }, "inputEncryptedFileUploaded": { "comment": "Sets new encrypted file saved by parts using upload.saveFilePart method.", "arguments": { "id": "Random file ID created by client", "parts": "Number of saved parts", "md5_checksum": "In case md5-HASH of the (already encrypted) file was transmitted, file content will be checked prior to use", "key_fingerprint": "32-bit fingerprint of the key used to encrypt a file" } }, "inputEncryptedFileEmpty": { "comment": "Empty constructor.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "encryptedChatRequested": { "comment": "Request to create an encrypted chat.", "arguments": { "flags": "Flags, see TL conditional fields", "folder_id": "Peer folder ID, for more info click here", "id": "Chat ID", "access_hash": "Check sum depending on user ID", "date": "Chat creation date", "admin_id": "Chat creator ID", "participant_id": "ID of second chat participant", "g_a": "A = g ^ a mod p, see Wikipedia" } }, "encryptedChatDiscarded": { "comment": "Discarded or deleted chat.", "arguments": { "flags": "Flags, see TL conditional fields", "history_deleted": "Whether both users of this secret chat should also remove all of its messages", "id": "Chat ID" } }, "messages.dhConfigNotModified": { "comment": "Configuring parameters did not change.", "arguments": { "random": "Random sequence of bytes of assigned length" } }, "encryptedChatEmpty": { "comment": "Empty constructor.", "arguments": { "id": "Chat ID" } }, "inputEncryptedFileBigUploaded": { "comment": "Assigns a new big encrypted file (over 10 MB in size), saved in parts using the method {@link upload.RawSaveBigFilePartRequest}.", "arguments": { "id": "Random file id, created by the client", "parts": "Number of saved parts", "key_fingerprint": "32-bit imprint of the key used to encrypt the file" } }, "encryptedMessage": { "comment": "Encrypted message.", "arguments": { "random_id": "Random message ID, assigned by the author of message", "chat_id": "ID of encrypted chat", "date": "Date of sending", "bytes": "TL-serialization of DecryptedMessage type, encrypted with the key created at chat initialization", "file": "Attached encrypted file" } }, "encryptedFileEmpty": { "comment": "Empty constructor, non-existing file.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "encryptedMessageService": { "comment": "Encrypted service message", "arguments": { "random_id": "Random message ID, assigned by the author of message", "chat_id": "ID of encrypted chat", "date": "Date of sending", "bytes": "TL-serialization of the DecryptedMessage type, encrypted with the key created at chat initialization" } }, "encryptedChat": { "comment": "Encrypted chat", "arguments": { "id": "Chat ID", "access_hash": "Check sum dependent on the user ID", "date": "Date chat was created", "admin_id": "Chat creator ID", "participant_id": "ID of the second chat participant", "g_a_or_b": "B = g ^ b mod p, if the currently authorized user is the chat's creator,
or A = g ^ a mod p otherwise
See Wikipedia for more info", "key_fingerprint": "64-bit fingerprint of received key" } }, "encryptedFile": { "comment": "Encrypted file.", "arguments": { "id": "File ID", "access_hash": "Checking sum depending on user ID", "size": "File size in bytes", "dc_id": "Number of data center", "key_fingerprint": "32-bit fingerprint of key used for file encryption" } }, "messages.dhConfig": { "comment": "New set of configuring parameters.", "arguments": { "g": "New value prime, see Wikipedia", "p": "New value primitive root, see Wikipedia", "version": "Version of set of parameters", "random": "Random sequence of bytes of assigned length" } }, "inputEncryptedChat": { "comment": "Creates an encrypted chat.", "arguments": { "chat_id": "Chat ID", "access_hash": "Checking sum from constructor {@link RawEncryptedChat}, {@link RawEncryptedChatWaiting} or {@link RawEncryptedChatRequested}" } }, "encryptedChatWaiting": { "comment": "Chat waiting for approval of second participant.", "arguments": { "id": "Chat ID", "access_hash": "Checking sum depending on user ID", "date": "Date of chat creation", "admin_id": "Chat creator ID", "participant_id": "ID of second chat participant" } }, "messages.sentEncryptedMessage": { "comment": "Message without file attachments sent to an encrypted file.", "arguments": { "date": "Date of sending" } }, "messages.sentEncryptedFile": { "comment": "Message with a file enclosure sent to a protected chat", "arguments": { "date": "Sending date", "file": "Attached file" } }, "document": { "comment": "Document", "arguments": { "flags": "Flags, see TL conditional fields", "id": "Document ID", "access_hash": "Check sum, dependent on document ID", "file_reference": "File reference", "date": "Creation date", "mime_type": "MIME type", "size": "Size", "thumbs": "Thumbnails", "video_thumbs": "Video thumbnails", "dc_id": "DC ID", "attributes": "Attributes" } }, "documentEmpty": { "comment": "Empty constructor, document doesn't exist.", "arguments": { "id": "Document ID or 0" } }, "inputDocument": { "comment": "Defines a document for subsequent interaction.", "arguments": { "id": "Document ID", "access_hash": "access_hash parameter from the {@link RawDocument} constructor", "file_reference": "File reference" } }, "notifyPeer": { "comment": "Notifications generated by a certain user or group.", "arguments": { "peer": "user or group" } }, "notifyChats": { "comment": "Notifications generated by all groups.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "notifyForumTopic": { "comment": "Notifications generated by a topic in a forum.", "arguments": { "peer": "Forum ID", "top_msg_id": "Topic ID" } }, "notifyBroadcasts": { "comment": "Channel notification settings", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputDocumentEmpty": { "comment": "Empty constructor.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "notifyUsers": { "comment": "Notifications generated by all users.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "sendMessageCancelAction": { "comment": "Invalidate all previous action updates. E.g. when user deletes entered text or aborts a video upload.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "sendMessageRecordVideoAction": { "comment": "User is recording a video.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "sendMessageTypingAction": { "comment": "User is typing.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.support": { "comment": "Info on support user.", "arguments": { "phone_number": "Phone number", "user": "User" } }, "sendMessageUploadVideoAction": { "comment": "User is uploading a video.", "arguments": { "progress": "Progress percentage" } }, "sendMessageRecordAudioAction": { "comment": "User is recording a voice message.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "sendMessageUploadDocumentAction": { "comment": "User is uploading a file.", "arguments": { "progress": "Progress percentage" } }, "sendMessageUploadAudioAction": { "comment": "User is uploading a voice message.", "arguments": { "progress": "Progress percentage" } }, "sendMessageUploadPhotoAction": { "comment": "User is uploading a photo.", "arguments": { "progress": "Progress percentage" } }, "sendMessageGeoLocationAction": { "comment": "User is selecting a location to share.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "sendMessageChooseContactAction": { "comment": "User is selecting a contact to share.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "speakingInGroupCallAction": { "comment": "User is currently speaking in the group call", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "sendMessageGamePlayAction": { "comment": "User is playing a game", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "sendMessageUploadRoundAction": { "comment": "User is uploading a round video", "arguments": { "progress": "Progress percentage" } }, "sendMessageEmojiInteractionSeen": { "comment": "User is watching an animated emoji reaction triggered by another user, click here for more info ».", "arguments": { "emoticon": "Emoji" } }, "sendMessageHistoryImportAction": { "comment": "Chat history is being imported", "arguments": { "progress": "Progress percentage" } }, "sendMessageChooseStickerAction": { "comment": "User is choosing a sticker", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "sendMessageEmojiInteraction": { "comment": "User has clicked on an animated emoji triggering a reaction, click here for more info ».", "arguments": { "emoticon": "Emoji", "msg_id": "Message ID of the animated emoji that was clicked", "interaction": "A JSON object with interaction info, click here for more info »" } }, "contacts.found": { "comment": "Users found by name substring and auxiliary data.", "arguments": { "my_results": "Personalized results", "results": "List of found user identifiers", "chats": "Found chats", "users": "List of users" } }, "inputPrivacyKeyStatusTimestamp": { "comment": "Whether people will be able to see our exact last online timestamp.\n\nNote that if we decide to hide our exact last online timestamp to someone (i.e., users A, B, C, or all users) and we do not have a Premium subscription, we won't be able to see the exact last online timestamp of those users (A, B, C, or all users), even if those users do share it with us.\n\nIf those users do share their exact online status with us, but we can't see it due to the reason mentioned above, the by_me flag of {@link RawUserStatusRecently}, {@link RawUserStatusLastWeek}, {@link RawUserStatusLastMonth} will be set.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyKeyPhoneCall": { "comment": "Whether you will accept phone calls", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyKeyChatInvite": { "comment": "Whether people will be able to invite you to chats", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyKeyProfilePhoto": { "comment": "Whether people will be able to see your profile picture", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyKeyPhoneNumber": { "comment": "Whether people will be able to see your phone number", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyKeyPhoneP2P": { "comment": "Whether to allow P2P communication during VoIP calls", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyKeyAddedByPhone": { "comment": "Whether people can add you to their contact list by your phone number", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyKeyForwards": { "comment": "Whether messages forwarded from you will be anonymous", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyKeyVoiceMessages": { "comment": "Whether people can send you voice messages or round videos (Premium users only).", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyKeyStatusTimestamp": { "comment": "Whether we can see the last online timestamp of this user.\n\nNote that if we decide to hide our exact last online timestamp to someone (i.e., users A, B, C, or all users) and we do not have a Premium subscription, we won't be able to see the exact last online timestamp of those users (A, B, C, or all users), even if those users do share it with us.\n\nIf those users do share their exact online status with us, but we can't see it due to the reason mentioned above, the by_me flag of {@link RawUserStatusRecently}, {@link RawUserStatusLastWeek}, {@link RawUserStatusLastMonth} will be set.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyKeyAbout": { "comment": "Whether people can see your bio", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "sendMessageRecordRoundAction": { "comment": "User is recording a round video to share", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyKeyBirthday": { "comment": "Whether the user can see our birthday.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyKeyChatInvite": { "comment": "Whether the user can be invited to chats", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyKeyForwards": { "comment": "Whether messages forwarded from the user will be anonymously forwarded", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyKeyPhoneP2P": { "comment": "Whether P2P connections in phone calls with this user are allowed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyKeyProfilePhoto": { "comment": "Whether the profile picture of the user is visible", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyKeyPhoneCall": { "comment": "Whether the user accepts phone calls", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyKeyAddedByPhone": { "comment": "Whether this user can be added to our contact list by their phone number", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyKeyBirthday": { "comment": "Whether the user can see our birthday.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyKeyVoiceMessages": { "comment": "Whether the user accepts voice messages", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyKeyPhoneNumber": { "comment": "Whether the user allows us to see their phone number", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyValueAllowContacts": { "comment": "Allow only contacts", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyKeyAbout": { "comment": "Whether people can see your bio", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyValueDisallowUsers": { "comment": "Disallow only certain users", "arguments": { "users": "Users to disallow" } }, "inputPrivacyValueDisallowContacts": { "comment": "Disallow only contacts", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyValueAllowCloseFriends": { "comment": "Allow only close friends »", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyValueAllowChatParticipants": { "comment": "Allow only participants of certain chats", "arguments": { "chats": "Allowed chat IDs" } }, "inputPrivacyValueDisallowChatParticipants": { "comment": "Disallow only participants of certain chats", "arguments": { "chats": "Disallowed chat IDs" } }, "inputPrivacyValueAllowPremium": { "comment": "Allow only users with a Premium subscription », currently only usable for {@link RawInputPrivacyKeyChatInvite}.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyValueAllowAll": { "comment": "Allow all users", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyValueAllowContacts": { "comment": "Allow all contacts", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputPrivacyValueAllowUsers": { "comment": "Allow only certain users", "arguments": { "users": "Allowed users" } }, "inputPrivacyValueAllowAll": { "comment": "Allow all users", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyValueDisallowContacts": { "comment": "Disallow only contacts", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyValueAllowUsers": { "comment": "Allow only certain users", "arguments": { "users": "Allowed users" } }, "privacyValueDisallowAll": { "comment": "Disallow all users", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyValueAllowChatParticipants": { "comment": "Allow all participants of certain chats", "arguments": { "chats": "Allowed chats" } }, "privacyValueDisallowUsers": { "comment": "Disallow only certain users", "arguments": { "users": "Disallowed users" } }, "privacyValueDisallowChatParticipants": { "comment": "Disallow only participants of certain chats", "arguments": { "chats": "Disallowed chats" } }, "inputPrivacyValueDisallowAll": { "comment": "Disallow all", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "accountDaysTTL": { "comment": "Time to live in days of the current account", "arguments": { "days": "This account will self-destruct in the specified number of days" } }, "privacyValueAllowPremium": { "comment": "Allow only users with a Premium subscription », currently only usable for {@link RawInputPrivacyKeyChatInvite}.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.privacyRules": { "comment": "Privacy rules", "arguments": { "rules": "Privacy rules", "chats": "Chats to which the rules apply", "users": "Users to which the rules apply" } }, "documentAttributeImageSize": { "comment": "Defines the width and height of an image uploaded as document", "arguments": { "w": "Width of image", "h": "Height of image" } }, "documentAttributeAnimated": { "comment": "Defines an animated GIF", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "privacyValueAllowCloseFriends": { "comment": "Allow only close friends »", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "documentAttributeSticker": { "comment": "Defines a sticker", "arguments": { "flags": "Flags, see TL conditional fields", "mask": "Whether this is a mask sticker", "alt": "Alternative emoji representation of sticker", "stickerset": "Associated stickerset", "mask_coords": "Mask coordinates (if this is a mask sticker, attached to a photo)" } }, "documentAttributeVideo": { "comment": "Defines a video", "arguments": { "flags": "Flags, see TL conditional fields", "round_message": "Whether this is a round video", "supports_streaming": "Whether the video supports streaming", "nosound": "Whether the specified document is a video file with no audio tracks (a GIF animation (even as MPEG4), for example)", "duration": "Duration in seconds", "w": "Video width", "h": "Video height", "preload_prefix_size": "Number of bytes to preload when preloading videos (particularly video stories).", "video_start_ts": "Floating point UNIX timestamp in seconds, indicating the frame of the video that should be used as static preview and thumbnail." } }, "documentAttributeFilename": { "comment": "A simple document with a file name", "arguments": { "file_name": "The file name" } }, "documentAttributeAudio": { "comment": "Represents an audio file", "arguments": { "flags": "Flags, see TL conditional fields", "voice": "Whether this is a voice message", "duration": "Duration in seconds", "title": "Name of song", "performer": "Performer", "waveform": "Waveform: consists in a series of bitpacked 5-bit values.
Example implementation: android." } }, "documentAttributeHasStickers": { "comment": "Whether the current document has stickers attached", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "documentAttributeCustomEmoji": { "comment": "Info about a custom emoji", "arguments": { "flags": "Flags, see TL conditional fields", "free": "Whether this custom emoji can be sent by non-Premium users", "text_color": "Whether the color of this TGS custom emoji should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context.", "alt": "The actual emoji", "stickerset": "The emoji stickerset to which this emoji belongs." } }, "messages.stickersNotModified": { "comment": "No new stickers were found for the given query", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.stickers": { "comment": "Found stickers", "arguments": { "hash": "Hash used for caching, for more info click here", "stickers": "Stickers" } }, "stickerPack": { "comment": "A stickerpack is a group of stickers associated to the same emoji.
\nIt is not a sticker pack the way it is usually intended, you may be looking for a StickerSet.", "arguments": { "emoticon": "Emoji", "documents": "Stickers" } }, "messages.allStickersNotModified": { "comment": "Info about all installed stickers hasn't changed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.allStickers": { "comment": "Info about all installed stickers", "arguments": { "hash": "Hash used for caching, for more info click here", "sets": "All stickersets" } }, "webPageEmpty": { "comment": "No preview is available for the webpage", "arguments": { "flags": "Flags, see TL conditional fields", "id": "Preview ID", "url": "URL of the webpage." } }, "webPagePending": { "comment": "A preview of the webpage is currently being generated", "arguments": { "flags": "Flags, see TL conditional fields", "id": "ID of preview", "url": "URL of the webpage", "date": "When was the processing started" } }, "messages.affectedMessages": { "comment": "Events affected by operation", "arguments": { "pts": "Event count after generation", "pts_count": "Number of events that were generated" } }, "webPageNotModified": { "comment": "The preview of the webpage hasn't changed", "arguments": { "flags": "Flags, see TL conditional fields", "cached_page_views": "Page view count" } }, "webPage": { "comment": "Webpage preview", "arguments": { "flags": "Flags, see TL conditional fields", "has_large_media": "Whether the size of the media in the preview can be changed.", "id": "Preview ID", "url": "URL of previewed webpage", "display_url": "Webpage URL to be displayed to the user", "hash": "Hash used for caching, for more info click here", "type": "Type of the web page. Can be: article, photo, audio, video, document, profile, app, or something else, see here » for a full list.", "site_name": "Short name of the site (e.g., Google Docs, App Store)", "title": "Title of the content", "description": "Content description", "photo": "Image representing the content", "embed_url": "URL to show in the embedded preview", "embed_type": "MIME type of the embedded preview, (e.g., text/html or video/mp4)", "embed_width": "Width of the embedded preview", "embed_height": "Height of the embedded preview", "duration": "Duration of the content, in seconds", "author": "Author of the content", "document": "Preview of the content as a media file", "cached_page": "Page contents in instant view format", "attributes": "Webpage attributes" } }, "account.authorizations": { "comment": "Logged-in sessions", "arguments": { "authorization_ttl_days": "Time-to-live of session", "authorizations": "Logged-in sessions" } }, "authorization": { "comment": "Logged-in session", "arguments": { "flags": "Flags, see TL conditional fields", "current": "Whether this is the current session", "official_app": "Whether the session is from an official app", "password_pending": "Whether the session is still waiting for a 2FA password", "encrypted_requests_disabled": "Whether this session will accept encrypted chats", "call_requests_disabled": "Whether this session will accept phone calls", "unconfirmed": "Whether the session is unconfirmed, see here » for more info.", "hash": "Identifier", "device_model": "Device model", "platform": "Platform", "system_version": "System version", "api_id": "API ID", "app_name": "App name", "app_version": "App version", "date_created": "When was the session created", "date_active": "When was the session last active", "ip": "Last known IP", "country": "Country determined from IP", "region": "Region determined from IP" } }, "account.password": { "comment": "Configuration for two-factor authorization", "arguments": { "flags": "Flags, see TL conditional fields", "has_recovery": "Whether the user has a recovery method configured", "has_secure_values": "Whether telegram passport is enabled", "has_password": "Whether the user has a password", "current_algo": "The KDF algorithm for SRP two-factor authentication of the current password", "srp_B": "Srp B param for SRP authorization", "srp_id": "Srp ID param for SRP authorization", "hint": "Text hint for the password", "email_unconfirmed_pattern": "A password recovery email with the specified pattern is still awaiting verification", "new_algo": "The KDF algorithm for SRP two-factor authentication to use when creating new passwords", "new_secure_algo": "The KDF algorithm for telegram passport", "secure_random": "Secure random string", "pending_reset_date": "The 2FA password will be automatically removed at this date, unless the user cancels the operation", "login_email_pattern": "A verified login email with the specified pattern is configured" } }, "account.passwordSettings": { "comment": "Private info associated to the password info (recovery email, telegram passport info & so on)", "arguments": { "flags": "Flags, see TL conditional fields", "email": "2FA Recovery email", "secure_settings": "Telegram passport settings" } }, "account.passwordInputSettings": { "comment": "Settings for setting up a new password", "arguments": { "flags": "Flags, see TL conditional fields", "new_algo": "The SRP algorithm to use", "new_password_hash": "The computed password hash", "hint": "Text hint for the password", "email": "Password recovery email", "new_secure_settings": "Telegram passport settings" } }, "auth.passwordRecovery": { "comment": "Recovery info of a 2FA password, only for accounts with a recovery email configured.", "arguments": { "email_pattern": "The email to which the recovery code was sent must match this pattern." } }, "chatInviteExported": { "comment": "Exported chat invite", "arguments": { "flags": "Flags, see TL conditional fields", "revoked": "Whether this chat invite was revoked", "permanent": "Whether this chat invite has no expiration", "request_needed": "Whether users importing this invite link will have to be approved to join the channel or group", "link": "Chat invitation link", "admin_id": "ID of the admin that created this chat invite", "date": "When was this chat invite created", "start_date": "When was this chat invite last modified", "expire_date": "When does this chat invite expire", "usage_limit": "Maximum number of users that can join using this link", "usage": "How many users joined using this link", "requested": "Number of users that have already used this link to join", "title": "Custom description for the invite link, visible only to admins" } }, "receivedNotifyMessage": { "comment": "Message ID, for which PUSH-notifications were cancelled.", "arguments": { "id": "Message ID, for which PUSH-notifications were canceled", "flags": "Reserved for future use" } }, "chatInviteAlready": { "comment": "The user has already joined this chat", "arguments": { "chat": "The chat connected to the invite" } }, "chatInvite": { "comment": "Chat invite info", "arguments": { "flags": "Flags, see TL conditional fields", "channel": "Whether this is a channel/supergroup or a normal group", "broadcast": "Whether this is a channel", "public": "Whether this is a public channel/supergroup", "megagroup": "Whether this is a supergroup", "request_needed": "Whether the join request » must be first approved by an administrator", "verified": "Is this chat or channel verified by Telegram?", "scam": "This chat is probably a scam", "fake": "If set, this chat was reported by many users as a fake or scam: be careful when interacting with it.", "title": "Chat/supergroup/channel title", "about": "Description of the group of channel", "photo": "Chat/supergroup/channel photo", "participants_count": "Participant count", "participants": "A few of the participants that are in the group", "color": "Profile color palette ID" } }, "chatInvitePublicJoinRequests": { "comment": "Used in updates and in the channel log to indicate when a user is requesting to join or has joined a discussion group", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputStickerSetEmpty": { "comment": "Empty constructor", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputStickerSetID": { "comment": "Stickerset by ID", "arguments": { "id": "ID", "access_hash": "Access hash" } }, "inputStickerSetShortName": { "comment": "Stickerset by short name, from a stickerset deep link »", "arguments": { "short_name": "Short name from a stickerset deep link »" } }, "inputStickerSetAnimatedEmoji": { "comment": "Animated emojis stickerset", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputStickerSetPremiumGifts": { "comment": "Stickers to show when receiving a gifted Telegram Premium subscription", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputStickerSetAnimatedEmojiAnimations": { "comment": "Animated emoji reaction stickerset (contains animations to play when a user clicks on a given animated emoji)", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputStickerSetEmojiGenericAnimations": { "comment": "Generic animation stickerset containing animations to play when reacting to messages using a normal emoji without a custom animation", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputStickerSetEmojiChannelDefaultStatuses": { "comment": "Default custom emoji status stickerset for channel statuses", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputStickerSetDice": { "comment": "Used for fetching animated dice stickers", "arguments": { "emoticon": "The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported" } }, "inputStickerSetEmojiDefaultTopicIcons": { "comment": "Default custom emoji stickerset for forum topic icons", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.stickerSet": { "comment": "Stickerset and stickers inside it", "arguments": { "set": "The stickerset", "packs": "Emoji info for stickers", "keywords": "Keywords for some or every sticker in the stickerset.", "documents": "Stickers in stickerset" } }, "chatInvitePeek": { "comment": "A chat invitation that also allows peeking into the group to read messages without joining it.", "arguments": { "chat": "Chat information", "expires": "Read-only anonymous access to this group will be revoked at this date" } }, "messages.stickerSetNotModified": { "comment": "The stickerset hasn't changed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "botInfo": { "comment": "Info about bots (available bot commands, etc)", "arguments": { "flags": "Flags, see TL conditional fields", "has_preview_medias": "If set, the bot has some preview medias for the configured Main Mini App, see here » for more info on Main Mini App preview medias.", "user_id": "ID of the bot", "description": "Description of the bot", "description_photo": "Description photo", "description_document": "Description animation in MPEG4 format", "commands": "Bot commands that can be used in the chat", "menu_button": "Indicates the action to execute when pressing the in-UI menu button for bots" } }, "keyboardButton": { "comment": "Bot keyboard button", "arguments": { "text": "Button text" } }, "inputStickerSetEmojiDefaultStatuses": { "comment": "Default custom emoji status stickerset", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "botCommand": { "comment": "Describes a bot command that can be used in a chat", "arguments": { "command": "/command name", "description": "Description of the command" } }, "stickerSet": { "comment": "Represents a stickerset (stickerpack)", "arguments": { "flags": "Flags, see TL conditional fields", "archived": "Whether this stickerset was archived (due to too many saved stickers in the current account)", "official": "Is this stickerset official", "masks": "Is this a mask stickerset", "emojis": "This is a custom emoji stickerset", "text_color": "Whether the color of this TGS custom emoji stickerset should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context.", "channel_emoji_status": "If set, this custom emoji stickerset can be used in channel/supergroup emoji statuses.", "creator": "Whether we created this stickerset", "installed_date": "When was this stickerset installed", "id": "ID of the stickerset", "access_hash": "Access hash of stickerset", "title": "Title of stickerset", "short_name": "Short name of stickerset, used when sharing stickerset using stickerset deep links.", "thumbs": "Stickerset thumbnail", "thumb_dc_id": "DC ID of thumbnail", "thumb_version": "Thumbnail version", "thumb_document_id": "Document ID of custom emoji thumbnail, fetch the document using {@link messages.RawGetCustomEmojiDocumentsRequest}", "count": "Number of stickers in pack", "hash": "Hash" } }, "keyboardButtonCallback": { "comment": "Callback button", "arguments": { "flags": "Flags, see TL conditional fields", "requires_password": "Whether the user should verify their identity by entering their 2FA SRP parameters to the {@link messages.RawGetBotCallbackAnswerRequest} method. NOTE: telegram and the bot WILL NOT have access to the plaintext password, thanks to SRP. This button is mainly used by the official @botfather bot, for verifying the user's identity before transferring ownership of a bot to another user.", "text": "Button text", "data": "Callback data" } }, "keyboardButtonUrl": { "comment": "URL button", "arguments": { "text": "Button label", "url": "URL" } }, "keyboardButtonRequestPhone": { "comment": "Button to request a user's phone number", "arguments": { "text": "Button text" } }, "keyboardButtonGame": { "comment": "Button to start a game", "arguments": { "text": "Button text" } }, "keyboardButtonSwitchInline": { "comment": "Button to force a user to switch to inline mode: 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.", "arguments": { "flags": "Flags, see TL conditional fields", "same_peer": "If set, pressing the button will insert the bot's username and the specified inline query in the current chat's input field.", "text": "Button label", "query": "The inline query to use", "peer_types": "Filter to use when selecting chats." } }, "inputKeyboardButtonUrlAuth": { "comment": "Button to request a user to {@link messages.RawAcceptUrlAuthRequest} via URL using Seamless Telegram Login.", "arguments": { "flags": "Flags, see TL conditional fields", "request_write_access": "Set this flag to request the permission for your bot to send messages to the user.", "text": "Button text", "fwd_text": "New text of the button in forwarded messages.", "url": "An HTTP URL to be opened with user authorization data added to the query string when the button is pressed. If the user refuses to provide authorization data, the original URL without information about the user will be opened. The data added is the same as described in Receiving authorization data.
NOTE: You must always check the hash of the received data to verify the authentication and the integrity of the data as described in Checking authorization.", "bot": "Username of a bot, which will be used for user authorization. See Setting up a bot for more details. If not specified, the current bot's username will be assumed. The url's domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details." } }, "keyboardButtonBuy": { "comment": "Button to buy a product", "arguments": { "text": "Button text" } }, "keyboardButtonUrlAuth": { "comment": "Button to request a user to authorize via URL using Seamless Telegram Login. When the user clicks on such a button, {@link messages.RawRequestUrlAuthRequest} should be called, providing the button_id and the ID of the container message. The returned {@link RawUrlAuthResultRequest} object will contain more details about the authorization request (request_write_access if the bot would like to send messages to the user along with the username of the bot which will be used for user authorization). Finally, the user can choose to call {@link messages.RawAcceptUrlAuthRequest} to get a {@link RawUrlAuthResultAccepted} with the URL to open instead of the url of this constructor, or a {@link RawUrlAuthResultDefault}, in which case the url of this constructor must be opened, instead. If the user refuses the authorization request but still wants to open the link, the url of this constructor must be used.", "arguments": { "flags": "Flags, see TL conditional fields", "text": "Button label", "fwd_text": "New text of the button in forwarded messages.", "url": "An HTTP URL to be opened with user authorization data added to the query string when the button is pressed. If the user refuses to provide authorization data, the original URL without information about the user will be opened. The data added is the same as described in Receiving authorization data.

NOTE: Services must always check the hash of the received data to verify the authentication and the integrity of the data as described in Checking authorization.", "button_id": "ID of the button to pass to {@link messages.RawRequestUrlAuthRequest}" } }, "keyboardButtonRequestPoll": { "comment": "A button that allows the user to create and send a poll when pressed; available only in private", "arguments": { "flags": "Flags, see TL conditional fields", "quiz": "If set, only quiz polls can be sent", "text": "Button text" } }, "keyboardButtonUserProfile": { "comment": "Button that links directly to a user profile", "arguments": { "text": "Button text", "user_id": "User ID" } }, "inputKeyboardButtonUserProfile": { "comment": "Button that links directly to a user profile", "arguments": { "text": "Button text", "user_id": "User ID" } }, "keyboardButtonRequestGeoLocation": { "comment": "Button to request a user's geolocation", "arguments": { "text": "Button text" } }, "keyboardButtonWebView": { "comment": "Button to open a bot mini app using {@link messages.RawRequestWebViewRequest}, sending over user information after user confirmation.\n\nCan only be sent or received as part of an inline keyboard, use {@link RawKeyboardButtonSimpleWebView} for reply keyboards.", "arguments": { "text": "Button text", "url": "Web app url" } }, "keyboardButtonSimpleWebView": { "comment": "Button to open a bot mini app using {@link messages.RawRequestSimpleWebViewRequest}, without sending user information to the web app.\n\nCan only be sent or received as part of a reply keyboard, use {@link RawKeyboardButtonWebView} for inline keyboards.", "arguments": { "text": "Button text", "url": "Web app URL" } }, "keyboardButtonRow": { "comment": "Inline keyboard row", "arguments": { "buttons": "Bot or inline keyboard buttons" } }, "replyKeyboardHide": { "comment": "Hide sent bot keyboard", "arguments": { "flags": "Flags, see TL conditional fields", "selective": "Use this flag 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 reply_to_message_id), 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" } }, "inputKeyboardButtonRequestPeer": { "comment": "Prompts the user to select and share one or more peers with the bot using {@link messages.RawSendBotRequestedPeerRequest}.", "arguments": { "flags": "Flags, see TL conditional fields", "name_requested": "Set this flag to request the peer's name.", "username_requested": "Set this flag to request the peer's @username (if any).", "photo_requested": "Set this flag to request the peer's photo (if any).", "text": "Button text", "button_id": "Button ID, to be passed to {@link messages.RawSendBotRequestedPeerRequest}.", "peer_type": "Filtering criteria to use for the peer selection list shown to the user.
The list should display all existing peers of the specified type, and should also offer an option for the user to create and immediately use one or more (up to max_quantity) peers of the specified type, if needed.", "max_quantity": "Maximum number of peers that can be chosen." } }, "replyKeyboardForceReply": { "comment": "Force the user to send a reply", "arguments": { "flags": "Flags, see TL conditional fields", "single_use": "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.", "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 reply_to_message_id), 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.", "placeholder": "The placeholder to be shown in the input field when the keyboard is active; 1-64 characters." } }, "replyKeyboardMarkup": { "comment": "Bot keyboard", "arguments": { "flags": "Flags, see TL conditional fields", "resize": "Requests clients to resize the keyboard vertically for optimal fit (e.g., make the keyboard smaller if there are just two rows of buttons). If not set, the custom keyboard is always of the same height as the app's standard keyboard.", "single_use": "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.", "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 reply_to_message_id), 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.", "persistent": "Requests clients to always show the keyboard when the regular keyboard is hidden.", "rows": "Button row", "placeholder": "The placeholder to be shown in the input field when the keyboard is active; 1-64 characters." } }, "keyboardButtonRequestPeer": { "comment": "Prompts the user to select and share one or more peers with the bot using {@link messages.RawSendBotRequestedPeerRequest}", "arguments": { "text": "Button text", "button_id": "Button ID, to be passed to {@link messages.RawSendBotRequestedPeerRequest}.", "peer_type": "Filtering criteria to use for the peer selection list shown to the user.
The list should display all existing peers of the specified type, and should also offer an option for the user to create and immediately use one or more (up to max_quantity) peers of the specified type, if needed.", "max_quantity": "Maximum number of peers that can be chosen." } }, "messageEntityHashtag": { "comment": "#hashtag message entity", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "replyInlineMarkup": { "comment": "Bot or inline keyboard", "arguments": { "rows": "Bot or inline keyboard rows" } }, "messageEntityUnknown": { "comment": "Unknown message entity", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityMention": { "comment": "Message entity mentioning a user by @username; {@link RawMessageEntityMentionName} can also be used to mention users by their ID.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityBotCommand": { "comment": "Message entity representing a bot /command", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityUrl": { "comment": "Message entity representing an in-text url: https://google.com; for text urls, use {@link RawMessageEntityTextUrl}.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityEmail": { "comment": "Message entity representing an email@example.com.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityBold": { "comment": "Message entity representing bold text.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityCode": { "comment": "Message entity representing a codeblock.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityItalic": { "comment": "Message entity representing italic text.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityPre": { "comment": "Message entity representing a preformatted codeblock, allowing the user to specify a programming language for the codeblock.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)", "language": "Programming language of the code" } }, "messageEntityMentionName": { "comment": "Message entity representing a user mention: for creating a mention use {@link RawInputMessageEntityMentionName}.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)", "user_id": "Identifier of the user that was mentioned" } }, "messageEntityTextUrl": { "comment": "Message entity representing a text url: for in-text urls like https://google.com use {@link RawMessageEntityUrl}.\n\nNote that an additional confirmation popup with the full URL must be displayed to the user before opening this link, unless the domain satisfies the conditions specified in the domain whitelist documentation ».", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)", "url": "The actual URL" } }, "inputMessageEntityMentionName": { "comment": "Message entity that can be used to create a user user mention: received mentions use the {@link RawMessageEntityMentionName} constructor, instead.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)", "user_id": "Identifier of the user that was mentioned" } }, "messageEntityPhone": { "comment": "Message entity representing a phone number.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityUnderline": { "comment": "Message entity representing underlined text.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityStrike": { "comment": "Message entity representing strikethrough text.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntitySpoiler": { "comment": "Message entity representing a spoiler", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityBankCard": { "comment": "Indicates a credit card number", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityBlockquote": { "comment": "Message entity representing a block quote.", "arguments": { "flags": "Flags, see TL conditional fields", "collapsed": "Whether the quote is collapsed by default.", "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "messageEntityCashtag": { "comment": "Message entity representing a $cashtag.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)" } }, "inputChannel": { "comment": "Represents a channel", "arguments": { "channel_id": "Channel ID", "access_hash": "Access hash taken from the {@link RawChannel} constructor" } }, "inputChannelFromMessage": { "comment": "Defines a min channel that was seen in a certain message of a certain chat.", "arguments": { "peer": "The chat where the channel was seen", "msg_id": "The message ID in the chat where the channel was seen", "channel_id": "The channel ID" } }, "messageRange": { "comment": "Indicates a range of chat messages", "arguments": { "min_id": "Start of range (message ID)", "max_id": "End of range (message ID)" } }, "inputChannelEmpty": { "comment": "Represents the absence of a channel", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "contacts.resolvedPeer": { "comment": "Resolved peer", "arguments": { "peer": "The peer", "chats": "Chats", "users": "Users" } }, "messageEntityCustomEmoji": { "comment": "Represents a custom emoji.
\nNote that this entity must wrap exactly one regular emoji (the one contained in {@link RawDocumentAttributeCustomEmoji}.alt) in the related text, otherwise the server will ignore it.", "arguments": { "offset": "Offset of message entity within message (in UTF-16 code units)", "length": "Length of message entity within message (in UTF-16 code units)", "document_id": "Document ID of the custom emoji, use {@link messages.RawGetCustomEmojiDocumentsRequest} to fetch the emoji animation and the actual emoji it represents." } }, "updates.channelDifferenceEmpty": { "comment": "There are no new updates", "arguments": { "flags": "Flags, see TL conditional fields", "final": "Whether there are more updates that must be fetched (always false)", "pts": "The latest PTS", "timeout": "Clients are supposed to refetch the channel difference after timeout seconds have elapsed, if the user is currently viewing the chat, see here » for more info." } }, "channelMessagesFilterEmpty": { "comment": "No filter", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updates.channelDifference": { "comment": "The new updates", "arguments": { "flags": "Flags, see TL conditional fields", "final": "Whether there are more updates to be fetched using getDifference, starting from the provided pts", "pts": "The PTS from which to start getting updates the next time", "timeout": "Clients are supposed to refetch the channel difference after timeout seconds have elapsed, if the user is currently viewing the chat, see here » for more info.", "new_messages": "New messages", "other_updates": "Other updates", "chats": "Chats", "users": "Users" } }, "channelMessagesFilter": { "comment": "Filter for getting only certain types of channel messages", "arguments": { "flags": "Flags, see TL conditional fields", "exclude_new_messages": "Whether to exclude new messages from the search", "ranges": "A range of messages to fetch" } }, "updates.channelDifferenceTooLong": { "comment": "The provided pts + limit < remote pts. Simply, there are too many updates to be fetched (more than limit), the client has to resolve the update gap in one of the following ways (assuming the existence of a persistent database to locally store messages):\n\nIt should be also noted that some messages like live location messages shouldn't be deleted.", "arguments": { "flags": "Flags, see TL conditional fields", "final": "Whether there are more updates that must be fetched (always false)", "timeout": "Clients are supposed to refetch the channel difference after timeout seconds have elapsed", "dialog": "Dialog containing the latest PTS that can be used to reset the channel state", "messages": "The latest messages", "chats": "Chats from messages", "users": "Users from messages" } }, "channelParticipantSelf": { "comment": "Myself", "arguments": { "flags": "Flags, see TL conditional fields", "via_request": "Whether I joined upon specific approval of an admin", "user_id": "User ID", "inviter_id": "User that invited me to the channel/supergroup", "date": "When did I join the channel/supergroup" } }, "channelParticipant": { "comment": "Channel/supergroup participant", "arguments": { "user_id": "Participant user ID", "date": "Date joined" } }, "channelParticipantAdmin": { "comment": "Admin", "arguments": { "flags": "Flags, see TL conditional fields", "can_edit": "Can this admin promote other admins with the same permissions?", "self": "Is this the current user", "user_id": "Admin user ID", "inviter_id": "User that invited the admin to the channel/group", "promoted_by": "User that promoted the user to admin", "date": "When did the user join", "admin_rights": "Admin rights", "rank": "The role (rank) of the admin in the group: just an arbitrary string, admin by default" } }, "channelParticipantBanned": { "comment": "Banned/kicked user", "arguments": { "flags": "Flags, see TL conditional fields", "left": "Whether the user has left the group", "peer": "The banned peer", "kicked_by": "User was kicked by the specified admin", "date": "When did the user join the group", "banned_rights": "Banned rights" } }, "channelParticipantsBots": { "comment": "Fetch only bot participants", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "channelParticipantsRecent": { "comment": "Fetch only recent participants", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "channelParticipantLeft": { "comment": "A participant that left the channel/supergroup", "arguments": { "peer": "The peer that left" } }, "channelParticipantsBanned": { "comment": "Fetch only banned participants", "arguments": { "q": "Optional filter for searching banned participants by name (otherwise empty)" } }, "channelParticipantsContacts": { "comment": "Fetch only participants that are also contacts", "arguments": { "q": "Optional search query for searching contact participants by name" } }, "channelParticipantsAdmins": { "comment": "Fetch only admin participants", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "channelParticipantsKicked": { "comment": "Fetch only kicked participants", "arguments": { "q": "Optional filter for searching kicked participants by name (otherwise empty)" } }, "channelParticipantsSearch": { "comment": "Query participants by name", "arguments": { "q": "Search query" } }, "channelParticipantsMentions": { "comment": "This filter is used when looking for supergroup members to mention.
\nThis filter will automatically remove anonymous admins, and return even non-participant users that replied to a specific thread through the comment section of a channel.", "arguments": { "flags": "Flags, see TL conditional fields", "q": "Filter by user name or username", "top_msg_id": "Look only for users that posted in this thread" } }, "channelParticipantCreator": { "comment": "Channel/supergroup creator", "arguments": { "flags": "Flags, see TL conditional fields", "user_id": "User ID", "admin_rights": "Creator admin rights", "rank": "The role (rank) of the group creator in the group: just an arbitrary string, admin by default" } }, "channels.channelParticipants": { "comment": "Represents multiple channel participants", "arguments": { "count": "Total number of participants that correspond to the given query", "participants": "Participants", "chats": "Mentioned chats", "users": "Users mentioned in participant info" } }, "messages.savedGifsNotModified": { "comment": "No new saved gifs were found", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "channels.channelParticipant": { "comment": "Represents a channel participant", "arguments": { "participant": "The channel participant", "chats": "Mentioned chats", "users": "Users" } }, "help.termsOfService": { "comment": "Info about the latest telegram Terms Of Service", "arguments": { "flags": "Flags, see TL conditional fields", "popup": "Whether a prompt must be showed to the user, in order to accept the new terms.", "id": "ID of the new terms", "text": "Text of the new terms", "entities": "Message entities for styled text", "min_age_confirm": "Minimum age required to sign up to telegram, the user must confirm that they is older than the minimum age." } }, "inputBotInlineMessageText": { "comment": "Simple text message", "arguments": { "flags": "Flags, see TL conditional fields", "no_webpage": "Disable webpage preview", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "message": "Message", "entities": "Message entities for styled text", "reply_markup": "Inline keyboard" } }, "inputBotInlineMessageMediaAuto": { "comment": "A media", "arguments": { "flags": "Flags, see TL conditional fields", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "message": "Caption", "entities": "Message entities for styled text", "reply_markup": "Inline keyboard" } }, "inputBotInlineMessageMediaVenue": { "comment": "Venue", "arguments": { "flags": "Flags, see TL conditional fields", "geo_point": "Geolocation", "title": "Venue name", "address": "Address", "provider": "Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported", "venue_id": "Venue ID in the provider's database", "venue_type": "Venue type in the provider's database", "reply_markup": "Inline keyboard" } }, "channels.channelParticipantsNotModified": { "comment": "No new participant info could be found", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputBotInlineMessageMediaContact": { "comment": "A contact", "arguments": { "flags": "Flags, see TL conditional fields", "phone_number": "Phone number", "first_name": "First name", "last_name": "Last name", "vcard": "VCard info", "reply_markup": "Inline keyboard" } }, "inputBotInlineMessageMediaInvoice": { "comment": "An invoice", "arguments": { "flags": "Flags, see TL conditional fields", "title": "Product name, 1-32 characters", "description": "Product description, 1-255 characters", "photo": "Invoice photo", "invoice": "The invoice", "payload": "Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes.", "provider": "Payments provider token, obtained via Botfather", "provider_data": "A JSON-serialized object for data about the invoice, which will be shared with the payment provider. A detailed description of the required fields should be provided by the payment provider.", "reply_markup": "Inline keyboard" } }, "inputBotInlineMessageGame": { "comment": "A game", "arguments": { "flags": "Flags, see TL conditional fields", "reply_markup": "Inline keyboard" } }, "inputBotInlineResult": { "comment": "An inline bot result", "arguments": { "flags": "Flags, see TL conditional fields", "id": "ID of result", "type": "Result type (see bot API docs)", "title": "Result title", "description": "Result description", "url": "URL of result", "thumb": "Thumbnail for result", "content": "Result contents", "send_message": "Message to send when the result is selected" } }, "inputBotInlineMessageMediaGeo": { "comment": "Geolocation", "arguments": { "flags": "Flags, see TL conditional fields", "geo_point": "Geolocation", "heading": "For live locations, a direction in which the location moves, in degrees; 1-360", "period": "Validity period", "proximity_notification_radius": "For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)", "reply_markup": "Reply markup for bot/inline keyboards" } }, "inputBotInlineMessageMediaWebPage": { "comment": "Specifies options that will be used to generate the link preview for the message, or even a standalone link preview without an attached message.", "arguments": { "flags": "Flags, see TL conditional fields", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "force_large_media": "If set, specifies that a large media preview should be used.", "force_small_media": "If set, specifies that a small media preview should be used.", "optional": "If not set, a WEBPAGE_NOT_FOUND RPC error will be emitted if a webpage preview cannot be generated for the specified url; otherwise, no error will be emitted (unless the provided message is also empty, in which case a MESSAGE_EMPTY will be emitted, instead).", "message": "The message, can be empty.", "entities": "Message entities for styled text", "url": "The URL to use for the link preview.", "reply_markup": "Inline keyboard" } }, "messages.savedGifs": { "comment": "Saved gifs", "arguments": { "hash": "Hash used for caching, for more info click here", "gifs": "List of saved gifs" } }, "inputBotInlineResultDocument": { "comment": "Document (media of any type except for photos)", "arguments": { "flags": "Flags, see TL conditional fields", "id": "Result ID", "type": "Result type (see bot API docs)", "title": "Result title", "description": "Result description", "document": "Document to send", "send_message": "Message to send when the result is selected" } }, "inputBotInlineResultGame": { "comment": "Game", "arguments": { "id": "Result ID", "short_name": "Game short name", "send_message": "Message to send when the result is selected" } }, "inputBotInlineResultPhoto": { "comment": "Photo", "arguments": { "id": "Result ID", "type": "Result type (see bot API docs)", "photo": "Photo to send", "send_message": "Message to send when the result is selected" } }, "botInlineMessageText": { "comment": "Send a simple text message", "arguments": { "flags": "Flags, see TL conditional fields", "no_webpage": "Disable webpage preview", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "message": "The message", "entities": "Message entities for styled text", "reply_markup": "Inline keyboard" } }, "botInlineMessageMediaAuto": { "comment": "Send whatever media is attached to the {@link RawBotInlineMediaResult}", "arguments": { "flags": "Flags, see TL conditional fields", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "message": "Caption", "entities": "Message entities for styled text", "reply_markup": "Inline keyboard" } }, "botInlineMessageMediaGeo": { "comment": "Send a geolocation", "arguments": { "flags": "Flags, see TL conditional fields", "geo": "Geolocation", "heading": "For live locations, a direction in which the location moves, in degrees; 1-360.", "period": "Validity period", "proximity_notification_radius": "For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000).", "reply_markup": "Inline keyboard" } }, "botInlineMessageMediaVenue": { "comment": "Send a venue", "arguments": { "flags": "Flags, see TL conditional fields", "geo": "Geolocation of venue", "title": "Venue name", "address": "Address", "provider": "Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported", "venue_id": "Venue ID in the provider's database", "venue_type": "Venue type in the provider's database", "reply_markup": "Inline keyboard" } }, "botInlineMessageMediaWebPage": { "comment": "Specifies options that must be used to generate the link preview for the message, or even a standalone link preview without an attached message.", "arguments": { "flags": "Flags, see TL conditional fields", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "force_large_media": "If set, specifies that a large media preview should be used.", "force_small_media": "If set, specifies that a small media preview should be used.", "manual": "If set, indicates that the URL used for the webpage preview was specified manually using {@link RawInputMediaWebPage}, and may not be related to any of the URLs specified in the message.", "safe": "If set, the link can be opened directly without user confirmation.", "message": "The message, can be empty.", "entities": "Message entities for styled text", "url": "The URL to use for the link preview.", "reply_markup": "Reply markup for sending bot buttons" } }, "botInlineMessageMediaInvoice": { "comment": "Send an invoice", "arguments": { "flags": "Flags, see TL conditional fields", "shipping_address_requested": "Set this flag if you require the user's shipping address to complete the order", "test": "Test invoice", "title": "Product name, 1-32 characters", "description": "Product description, 1-255 characters", "photo": "Product photo", "currency": "Three-letter ISO 4217 currency code, or XTR for Telegram Stars.", "total_amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "reply_markup": "Inline keyboard" } }, "botInlineResult": { "comment": "Generic result", "arguments": { "flags": "Flags, see TL conditional fields", "id": "Result ID", "type": "Result type (see bot API docs)", "title": "Result title", "description": "Result description", "url": "URL of article or webpage", "thumb": "Thumbnail for the result", "content": "Content of the result", "send_message": "Message to send" } }, "botInlineMediaResult": { "comment": "Media result", "arguments": { "flags": "Flags, see TL conditional fields", "id": "Result ID", "type": "Result type (see bot API docs)", "photo": "If type is photo, the photo to send", "document": "If type is document, the document to send", "title": "Result title", "description": "Description", "send_message": "Depending on the type and on the constructor, contains the caption of the media or the content of the message to be sent instead of the media" } }, "messages.botResults": { "comment": "Result of a query to an inline bot", "arguments": { "flags": "Flags, see TL conditional fields", "gallery": "Whether the result is a picture gallery", "query_id": "Query ID", "next_offset": "The next offset to use when navigating through results", "switch_pm": "Shown as a button on top of the remaining inline result list; if clicked, redirects the user to a private chat with the bot with the specified start parameter.", "switch_webview": "Shown as a button on top of the remaining inline result list; if clicked, opens the specified inline mode mini app.", "results": "The results", "cache_time": "Caching validity of the results", "users": "Users mentioned in the results" } }, "auth.codeTypeSms": { "comment": "The next time, the authentication code will be delivered via an immediately canceled incoming call.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "auth.codeTypeCall": { "comment": "The next time, the authentication code is to be delivered via an outgoing phone call.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "botInlineMessageMediaContact": { "comment": "Send a contact", "arguments": { "flags": "Flags, see TL conditional fields", "phone_number": "Phone number", "first_name": "First name", "last_name": "Last name", "vcard": "VCard info", "reply_markup": "Inline keyboard" } }, "auth.codeTypeFlashCall": { "comment": "The next time, the authentication code will be delivered via an immediately canceled incoming call.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messageFwdHeader": { "comment": "Info about a forwarded message", "arguments": { "flags": "Flags, see TL conditional fields", "imported": "Whether this message was imported from a foreign chat service, click here for more info »", "saved_out": "Only for messages forwarded to saved messages », set if the original message was outgoing (though the message may have been originally outgoing even if this flag is not set, if from_id points to the current user).", "from_id": "The ID of the user that originally sent the message", "from_name": "The name of the user that originally sent the message", "date": "When was the message originally sent", "channel_post": "ID of the channel message that was forwarded", "post_author": "For channels and if signatures are enabled, author of the channel message", "saved_from_peer": "Only for messages forwarded to saved messages », contains the dialog where the message was originally sent.", "saved_from_msg_id": "Only for messages forwarded to saved messages », contains the original ID of the message in saved_from_peer.", "saved_from_id": "Only for forwarded messages reforwarded to saved messages », contains the sender of the original message (i.e. if user A sends a message, then user B forwards it somewhere, then user C saves it to saved messages, this field will contain the ID of user B and from_id will contain the ID of user A).", "saved_from_name": "Only for forwarded messages from users with forward privacy enabled, sent by users with forward privacy enabled, reforwarded to saved messages », contains the sender of the original message (i.e. if user A (fwd privacy enabled) sends a message, then user B (fwd privacy enabled) forwards it somewhere, then user C saves it to saved messages, this field will contain the name of user B and from_name will contain the name of user A).", "saved_date": "Only for forwarded messages reforwarded to saved messages », indicates when was the original message sent (i.e. if user A sends a message @ unixtime 1, then user B forwards it somewhere @ unixtime 2, then user C saves it to saved messages @ unixtime 3, this field will contain 2, date will contain 1 and the date of the containing {@link RawMessage} will contain 3).", "psa_type": "PSA type" } }, "exportedMessageLink": { "comment": "Link to a message in a supergroup/channel", "arguments": { "link": "URL", "html": "Embed code" } }, "auth.codeTypeMissedCall": { "comment": "The next time, the authentication code will be delivered via an immediately canceled incoming call, handled manually by the user.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "auth.codeTypeFragmentSms": { "comment": "The next time, the authentication code will be delivered via fragment.com", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "auth.sentCodeTypeApp": { "comment": "The code was sent through the telegram app", "arguments": { "length": "Length of the code in bytes" } }, "auth.sentCodeTypeSms": { "comment": "The code was sent via SMS", "arguments": { "length": "Length of the code in bytes" } }, "auth.sentCodeTypeFlashCall": { "comment": "The code will be sent via a flash phone call, that will be closed immediately. The phone code will then be the phone number itself, just make sure that the phone number matches the specified pattern.", "arguments": { "pattern": "pattern to match" } }, "auth.sentCodeTypeCall": { "comment": "The code will be sent via a phone call: a synthesized voice will tell the user which verification code to input.", "arguments": { "length": "Length of the verification code" } }, "auth.sentCodeTypeMissedCall": { "comment": "The code will be sent via a flash phone call, that will be closed immediately. The last digits of the phone number that calls are the code that must be entered manually by the user.", "arguments": { "prefix": "Prefix of the phone number from which the call will be made", "length": "Length of the verification code" } }, "auth.sentCodeTypeSetUpEmailRequired": { "comment": "The user should add and verify an email address in order to login as described here ».", "arguments": { "flags": "Flags, see TL conditional fields", "apple_signin_allowed": "Whether authorization through Apple ID is allowed", "google_signin_allowed": "Whether authorization through Google ID is allowed" } }, "auth.sentCodeTypeEmailCode": { "comment": "The code was sent via the previously configured login email »", "arguments": { "flags": "Flags, see TL conditional fields", "apple_signin_allowed": "Whether authorization through Apple ID is allowed", "google_signin_allowed": "Whether authorization through Google ID is allowed", "email_pattern": "Pattern of the email", "length": "Length of the sent verification code", "reset_available_period": "Clients should wait for the specified amount of seconds before allowing the user to invoke {@link auth.RawResetLoginEmailRequest} (will be 0 for Premium users).", "reset_pending_date": "An email reset was already requested, and will occur at the specified date." } }, "auth.sentCodeTypeFirebaseSms": { "comment": "An authentication code should be delivered via SMS after Firebase attestation, as described in the auth documentation ».", "arguments": { "flags": "Flags, see TL conditional fields", "nonce": "On Android, the nonce to be used as described in the auth documentation »", "play_integrity_project_id": "Google Play Integrity project ID", "play_integrity_nonce": "Play Integrity API nonce", "receipt": "On iOS, must be compared with the receipt extracted from the received push notification.", "push_timeout": "On iOS: if a push notification with the ios_push_secret isn't received within push_timeout seconds, the next_type authentication method must be used, with {@link auth.RawResendCodeRequest}.", "length": "Length of the code that will be delivered." } }, "auth.sentCodeTypeFragmentSms": { "comment": "The code was delivered via fragment.com.", "arguments": { "url": "Open the specified URL to log into fragment.com with the wallet that owns the specified phone number and view the code.", "length": "Length of the delivered code." } }, "auth.sentCodeTypeSmsPhrase": { "comment": "The code was sent via SMS as a secret phrase starting with the word specified in beginning", "arguments": { "flags": "Flags, see TL conditional fields", "beginning": "If set, the secret phrase (and the SMS) starts with this word." } }, "auth.sentCodeTypeSmsWord": { "comment": "The code was sent via SMS as a secret word, starting with the letter specified in beginning", "arguments": { "flags": "Flags, see TL conditional fields", "beginning": "If set, the secret word in the sent SMS (which may contain multiple words) starts with this letter." } }, "messages.botCallbackAnswer": { "comment": "Callback answer sent by the bot in response to a button press", "arguments": { "flags": "Flags, see TL conditional fields", "alert": "Whether an alert should be shown to the user instead of a toast notification", "has_url": "Whether an URL is present", "native_ui": "Whether to show games in WebView or in native UI.", "message": "Alert to show", "url": "URL to open", "cache_time": "For how long should this answer be cached" } }, "inputBotInlineMessageID": { "comment": "Represents a sent inline message from the perspective of a bot (legacy constructor)", "arguments": { "dc_id": "DC ID to use when working with this inline message", "id": "ID of message, contains both the (32-bit, legacy) owner ID and the message ID, used only for Bot API backwards compatibility with 32-bit user ID.", "access_hash": "Access hash of message" } }, "inputBotInlineMessageID64": { "comment": "Represents a sent inline message from the perspective of a bot", "arguments": { "dc_id": "DC ID to use when working with this inline message", "owner_id": "ID of the owner of this message", "id": "ID of message", "access_hash": "Access hash of message" } }, "inlineBotSwitchPM": { "comment": "The bot requested the user to message them in private", "arguments": { "text": "Text for the button that switches the user to a private chat with the bot and sends the bot a start message with the parameter start_parameter (can be empty)", "start_param": "The parameter for the /start parameter" } }, "messages.peerDialogs": { "comment": "Dialog info of multiple peers", "arguments": { "dialogs": "Dialog info", "messages": "Messages mentioned in dialog info", "chats": "Chats", "users": "Users", "state": "Current update state of dialog" } }, "messages.messageEditData": { "comment": "Message edit data for media", "arguments": { "flags": "Flags, see TL conditional fields", "caption": "Media caption, if the specified media's caption can be edited" } }, "topPeer": { "comment": "Top peer", "arguments": { "peer": "Peer", "rating": "Rating as computed in top peer rating »" } }, "topPeerCategoryBotsPM": { "comment": "Most used bots", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "topPeerCategoryBotsInline": { "comment": "Most used inline bots", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "topPeerCategoryGroups": { "comment": "Often-opened groups and supergroups", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "topPeerCategoryChannels": { "comment": "Most frequently visited channels", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "topPeerCategoryPhoneCalls": { "comment": "Most frequently called users", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "topPeerCategoryForwardUsers": { "comment": "Users to which the users often forwards messages to", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "topPeerCategoryCorrespondents": { "comment": "Users we've chatted most frequently with", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "topPeerCategoryBotsApp": { "comment": "Most frequently used Main Mini Bot Apps.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "topPeerCategoryPeers": { "comment": "Top peer category", "arguments": { "category": "Top peer category of peers", "count": "Count of peers", "peers": "Peers" } }, "topPeerCategoryForwardChats": { "comment": "Chats to which the users often forwards messages to", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "contacts.topPeersDisabled": { "comment": "Top peers disabled", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "contacts.topPeers": { "comment": "Top peers", "arguments": { "categories": "Top peers by top peer category", "chats": "Chats", "users": "Users" } }, "contacts.topPeersNotModified": { "comment": "Top peer info hasn't changed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "draftMessageEmpty": { "comment": "Empty draft", "arguments": { "flags": "Flags, see TL conditional fields", "date": "When was the draft last updated" } }, "messages.featuredStickers": { "comment": "Featured stickersets", "arguments": { "flags": "Flags, see TL conditional fields", "premium": "Whether this is a premium stickerset", "hash": "Hash used for caching, for more info click here", "count": "Total number of featured stickers", "sets": "Featured stickersets", "unread": "IDs of new featured stickersets" } }, "messages.featuredStickersNotModified": { "comment": "Featured stickers haven't changed", "arguments": { "count": "Total number of featured stickers" } }, "messages.recentStickersNotModified": { "comment": "No new recent sticker was found", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "draftMessage": { "comment": "Represents a message draft.", "arguments": { "flags": "Flags, see TL conditional fields", "no_webpage": "Whether no webpage preview will be generated", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "reply_to": "If set, indicates that the message should be sent in reply to the specified message or story.", "message": "The draft", "entities": "Message entities for styled text.", "media": "Media.", "date": "Date of last update of the draft.", "effect": "A message effect that should be played as specified here »." } }, "messages.recentStickers": { "comment": "Recently used stickers", "arguments": { "hash": "Hash used for caching, for more info click here", "packs": "Emojis associated to stickers", "stickers": "Recent stickers", "dates": "When was each sticker last used" } }, "messages.archivedStickers": { "comment": "Archived stickersets", "arguments": { "count": "Number of archived stickers", "sets": "Archived stickersets" } }, "messages.stickerSetInstallResultArchive": { "comment": "The stickerset was installed, but since there are too many stickersets some were archived", "arguments": { "sets": "Archived stickersets" } }, "messages.stickerSetInstallResultSuccess": { "comment": "The stickerset was installed successfully", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "stickerSetFullCovered": { "comment": "Stickerset preview with all stickers of the stickerset included.
\nCurrently used only for custom emoji stickersets, to avoid a further call to {@link messages.RawGetStickerSetRequest}.", "arguments": { "set": "Stickerset", "packs": "Emoji information about every sticker in the stickerset", "keywords": "Keywords for some or every sticker in the stickerset.", "documents": "Stickers" } }, "stickerSetMultiCovered": { "comment": "Stickerset, with multiple stickers as preview", "arguments": { "set": "Stickerset", "covers": "Preview stickers" } }, "stickerSetNoCovered": { "comment": "Just the stickerset information, with no previews.", "arguments": { "set": "Stickerset information." } }, "inputStickeredMediaPhoto": { "comment": "A photo with stickers attached", "arguments": { "id": "The photo" } }, "maskCoords": { "comment": "Position on a photo where a mask should be placed when attaching stickers to media »\n\nThe n position indicates where the mask should be placed:", "arguments": { "n": "Part of the face, relative to which the mask should be placed", "x": "Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just to the left of the default mask position)", "y": "Shift by Y-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just below the default mask position)", "zoom": "Mask scaling coefficient. (For example, 2.0 means a doubled size)" } }, "stickerSetCovered": { "comment": "Stickerset with a single sticker as preview", "arguments": { "set": "Stickerset", "cover": "Preview" } }, "inputStickeredMediaDocument": { "comment": "A document with stickers attached", "arguments": { "id": "The document" } }, "game": { "comment": "Indicates an already sent game", "arguments": { "flags": "Flags, see TL conditional fields", "id": "ID of the game", "access_hash": "Access hash of the game", "short_name": "Short name for the game", "title": "Title of the game", "description": "Game description", "photo": "Game preview", "document": "Optional attached document" } }, "inputGameID": { "comment": "Indicates an already sent game", "arguments": { "id": "game ID from Game constructor", "access_hash": "access hash from Game constructor" } }, "inputGameShortName": { "comment": "Game by short name", "arguments": { "bot_id": "The bot that provides the game", "short_name": "The game's short name, usually obtained from a game link »" } }, "textPlain": { "comment": "Plain text", "arguments": { "text": "Text" } }, "highScore": { "comment": "Game highscore", "arguments": { "pos": "Position in highscore list", "user_id": "User ID", "score": "Score" } }, "textItalic": { "comment": "Italic text", "arguments": { "text": "Text" } }, "textUnderline": { "comment": "Underlined text", "arguments": { "text": "Text" } }, "textEmpty": { "comment": "Empty rich text element", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.highScores": { "comment": "Highscores in a game", "arguments": { "scores": "Highscores", "users": "Users, associated to the highscores" } }, "textUrl": { "comment": "Link", "arguments": { "text": "Text of link", "url": "Webpage HTTP URL", "webpage_id": "If a preview was already generated for the page, the page ID" } }, "textBold": { "comment": "Bold text", "arguments": { "text": "Text" } }, "textFixed": { "comment": "fixed-width rich text", "arguments": { "text": "Text" } }, "textConcat": { "comment": "Concatenation of rich texts", "arguments": { "texts": "Concatenated rich texts" } }, "textSubscript": { "comment": "Subscript text", "arguments": { "text": "Text" } }, "textStrike": { "comment": "Strikethrough text", "arguments": { "text": "Text" } }, "textEmail": { "comment": "Rich text email link", "arguments": { "text": "Link text", "email": "Email address" } }, "textSuperscript": { "comment": "Superscript text", "arguments": { "text": "Text" } }, "textMarked": { "comment": "Highlighted text", "arguments": { "text": "Text" } }, "textAnchor": { "comment": "Text linking to another section of the page", "arguments": { "text": "Text", "name": "Section name" } }, "textImage": { "comment": "Inline image", "arguments": { "document_id": "Document ID", "w": "Width", "h": "Height" } }, "textPhone": { "comment": "Rich text linked to a phone number", "arguments": { "text": "Text", "phone": "Phone number" } }, "pageBlockTitle": { "comment": "Title", "arguments": { "text": "Title" } }, "pageBlockSubtitle": { "comment": "Subtitle", "arguments": { "text": "Text" } }, "pageBlockAuthorDate": { "comment": "Author and date of creation of article", "arguments": { "author": "Author name", "published_date": "Date of publication" } }, "pageBlockSubheader": { "comment": "Subheader", "arguments": { "text": "Subheader" } }, "pageBlockHeader": { "comment": "Page header", "arguments": { "text": "Contents" } }, "pageBlockParagraph": { "comment": "A paragraph", "arguments": { "text": "Text" } }, "pageBlockDivider": { "comment": "An empty block separating a page", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "pageBlockPreformatted": { "comment": "Preformatted (
 text)", "arguments": { "text": "Text", "language": "Programming language of preformatted text" } }, "pageBlockFooter": { "comment": "Page footer", "arguments": { "text": "Contents" } }, "pageBlockList": { "comment": "Unordered list of IV blocks", "arguments": { "items": "List of blocks in an IV page" } }, "pageBlockBlockquote": { "comment": "Quote (equivalent to the HTML 
)", "arguments": { "text": "Quote contents", "caption": "Caption" } }, "pageBlockAnchor": { "comment": "Link to section within the page itself (like anchor)", "arguments": { "name": "Name of target section" } }, "pageBlockPullquote": { "comment": "Pullquote", "arguments": { "text": "Text", "caption": "Caption" } }, "pageBlockCover": { "comment": "A page cover", "arguments": { "cover": "Cover" } }, "pageBlockUnsupported": { "comment": "Unsupported IV element", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "pageBlockPhoto": { "comment": "A photo", "arguments": { "flags": "Flags, see TL conditional fields", "photo_id": "Photo ID", "caption": "Caption", "url": "HTTP URL of page the photo leads to when clicked", "webpage_id": "ID of preview of the page the photo leads to when clicked" } }, "pageBlockEmbed": { "comment": "An embedded webpage", "arguments": { "flags": "Flags, see TL conditional fields", "full_width": "Whether the block should be full width", "allow_scrolling": "Whether scrolling should be allowed", "url": "Web page URL, if available", "html": "HTML-markup of the embedded page", "poster_photo_id": "Poster photo, if available", "w": "Block width, if known", "h": "Block height, if known", "caption": "Caption" } }, "pageBlockVideo": { "comment": "Video", "arguments": { "flags": "Flags, see TL conditional fields", "autoplay": "Whether the video is set to autoplay", "loop": "Whether the video is set to loop", "video_id": "Video ID", "caption": "Caption" } }, "pageBlockSlideshow": { "comment": "Slideshow", "arguments": { "items": "Slideshow items", "caption": "Caption" } }, "pageBlockCollage": { "comment": "Collage of media", "arguments": { "items": "Media elements", "caption": "Caption" } }, "pageBlockChannel": { "comment": "Reference to a telegram channel", "arguments": { "channel": "The channel/supergroup/chat" } }, "pageBlockKicker": { "comment": "Kicker", "arguments": { "text": "Contents" } }, "pageBlockTable": { "comment": "Table", "arguments": { "flags": "Flags, see TL conditional fields", "bordered": "Does the table have a visible border?", "striped": "Is the table striped?", "title": "Title", "rows": "Table rows" } }, "pageBlockEmbedPost": { "comment": "An embedded post", "arguments": { "url": "Web page URL", "webpage_id": "ID of generated webpage preview", "author_photo_id": "ID of the author's photo", "author": "Author name", "date": "Creation date", "blocks": "Post contents", "caption": "Caption" } }, "pageBlockOrderedList": { "comment": "Ordered list of IV blocks", "arguments": { "items": "List items" } }, "pageBlockMap": { "comment": "A map", "arguments": { "geo": "Location of the map center", "zoom": "Map zoom level; 13-20", "w": "Map width in pixels before applying scale; 16-102", "h": "Map height in pixels before applying scale; 16-1024", "caption": "Caption" } }, "phoneCallDiscardReasonMissed": { "comment": "The phone call was missed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "phoneCallDiscardReasonDisconnect": { "comment": "The phone call was disconnected", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "pageBlockDetails": { "comment": "A collapsible details block", "arguments": { "flags": "Flags, see TL conditional fields", "open": "Whether the block is open by default", "blocks": "Block contents", "title": "Always visible heading for the block" } }, "pageBlockRelatedArticles": { "comment": "Related articles", "arguments": { "title": "Title", "articles": "Related articles" } }, "phoneCallDiscardReasonHangup": { "comment": "The phone call was ended normally", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "pageBlockAudio": { "comment": "Audio", "arguments": { "audio_id": "Audio ID (to be fetched from the container {@link RawPage} constructor", "caption": "Audio caption" } }, "dataJSON": { "comment": "Represents a json-encoded object", "arguments": { "data": "JSON-encoded object" } }, "labeledPrice": { "comment": "This object represents a portion of the price for goods or services.", "arguments": { "label": "Portion label", "amount": "Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." } }, "phoneCallDiscardReasonBusy": { "comment": "The phone call was discarded because the user is busy in another call", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "invoice": { "comment": "Invoice", "arguments": { "flags": "Flags, see TL conditional fields", "test": "Test invoice", "name_requested": "Set this flag if you require the user's full name to complete the order", "phone_requested": "Set this flag if you require the user's phone number to complete the order", "email_requested": "Set this flag if you require the user's email address to complete the order", "shipping_address_requested": "Set this flag if you require the user's shipping address to complete the order", "flexible": "Set this flag if the final price depends on the shipping method", "phone_to_provider": "Set this flag if user's phone number should be sent to provider", "email_to_provider": "Set this flag if user's email address should be sent to provider", "recurring": "Whether this is a recurring payment", "currency": "Three-letter ISO 4217 currency code, or XTR for Telegram Stars.", "prices": "Price breakdown, a list of components (e.g. product price, tax, discount, delivery cost, delivery tax, bonus, etc.)", "max_tip_amount": "The maximum accepted amount for tips in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "suggested_tip_amounts": "A vector of suggested amounts of tips in the smallest units of the currency (integer, not float/double). At most 4 suggested tip amounts can be specified. The suggested tip amounts must be positive, passed in a strictly increased order and must not exceed max_tip_amount.", "terms_url": "Terms of service URL" } }, "paymentCharge": { "comment": "Payment identifier", "arguments": { "id": "Telegram payment identifier", "provider_charge_id": "Provider payment identifier" } }, "postAddress": { "comment": "Shipping address", "arguments": { "street_line1": "First line for the address", "street_line2": "Second line for the address", "city": "City", "state": "State, if applicable (empty otherwise)", "country_iso2": "ISO 3166-1 alpha-2 country code", "post_code": "Address post code" } }, "webDocument": { "comment": "Remote document", "arguments": { "url": "Document URL", "access_hash": "Access hash", "size": "File size", "mime_type": "MIME type", "attributes": "Attributes for media types" } }, "paymentRequestedInfo": { "comment": "Order info provided by the user", "arguments": { "flags": "Flags, see TL conditional fields", "name": "User's full name", "phone": "User's phone number", "email": "User's email address", "shipping_address": "User's shipping address" } }, "webDocumentNoProxy": { "comment": "Remote document that can be downloaded without proxying through telegram", "arguments": { "url": "Document URL", "size": "File size", "mime_type": "MIME type", "attributes": "Attributes for media types" } }, "paymentSavedCredentialsCard": { "comment": "Saved credit card", "arguments": { "id": "Card ID", "title": "Title" } }, "inputWebFileLocation": { "comment": "Location of a remote HTTP(s) file", "arguments": { "url": "HTTP URL of file", "access_hash": "Access hash" } }, "inputWebFileGeoPointLocation": { "comment": "Used to download a server-generated image with the map preview from a {@link RawGeoPoint}, see the webfile docs for more info ».", "arguments": { "geo_point": "Generated from the lat, long and accuracy_radius parameters of the {@link RawGeoPoint}", "access_hash": "Access hash of the {@link RawGeoPoint}", "w": "Map width in pixels before applying scale; 16-1024", "h": "Map height in pixels before applying scale; 16-1024", "zoom": "Map zoom level; 13-20", "scale": "Map scale; 1-3" } }, "inputWebDocument": { "comment": "The document", "arguments": { "url": "Remote document URL to be downloaded using the appropriate method", "size": "Remote file size", "mime_type": "Mime type", "attributes": "Attributes for media types" } }, "upload.webFile": { "comment": "Represents a chunk of an HTTP webfile downloaded through telegram's secure MTProto servers", "arguments": { "size": "File size", "mime_type": "Mime type", "file_type": "File type", "mtime": "Modified time", "bytes": "Data" } }, "payments.paymentForm": { "comment": "Payment form", "arguments": { "flags": "Flags, see TL conditional fields", "can_save_credentials": "Whether the user can choose to save credentials.", "password_missing": "Indicates that the user can save payment credentials, but only after setting up a 2FA password (currently the account doesn't have a 2FA password)", "form_id": "Form ID", "bot_id": "Bot ID", "title": "Form title", "description": "Description", "photo": "Product photo", "invoice": "Invoice", "provider_id": "Payment provider ID.", "url": "Payment form URL", "native_provider": "Payment provider name.
One of the following:
- stripe", "native_params": "Contains information about the payment provider, if available, to support it natively without the need for opening the URL.
A JSON object that can contain the following fields:

- apple_pay_merchant_id: Apple Pay merchant ID
- google_pay_public_key: Google Pay public key
- need_country: True, if the user country must be provided,
- need_zip: True, if the user ZIP/postal code must be provided,
- need_cardholder_name: True, if the cardholder name must be provided
", "additional_methods": "Additional payment methods", "saved_info": "Saved server-side order information", "saved_credentials": "Contains information about saved card credentials", "users": "Users" } }, "inputWebFileAudioAlbumThumbLocation": { "comment": "Used to download an album cover for any music file using {@link upload.RawGetWebFileRequest}, see the webfile docs for more info ».", "arguments": { "flags": "Flags, see TL conditional fields", "small": "Used to return a thumbnail with 100x100 resolution (instead of the default 600x600)", "document": "The audio file in question: must NOT be provided in secret chats, provide the title and performer fields instead.", "title": "Song title: should only be used in secret chats, in normal chats provide document instead, as it has more lax rate limits.", "performer": "Song performer: should only be used in secret chats, in normal chats provide document instead, as it has more lax rate limits." } }, "payments.paymentResult": { "comment": "Payment result", "arguments": { "updates": "Info about the payment" } }, "payments.paymentFormStars": { "comment": "Represents a payment form, for payments to be using Telegram Stars, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "form_id": "Form ID.", "bot_id": "Bot ID.", "title": "Form title", "description": "Description", "photo": "Product photo", "invoice": "Invoice", "users": "Info about users mentioned in the other fields." } }, "payments.paymentVerificationNeeded": { "comment": "Payment was not successful, additional verification is needed", "arguments": { "url": "URL for additional payment credentials verification" } }, "payments.paymentReceiptStars": { "comment": "Receipt for payment made using Telegram Stars.", "arguments": { "flags": "Flags, see TL conditional fields", "date": "Date of generation", "bot_id": "Bot ID", "title": "Title", "description": "Description", "photo": "Product photo", "invoice": "Invoice", "currency": "Currency, always XTR.", "total_amount": "Amount of Telegram Stars.", "transaction_id": "Transaction ID", "users": "Info about users mentioned in the other fields." } }, "payments.savedInfo": { "comment": "Saved server-side order information", "arguments": { "flags": "Flags, see TL conditional fields", "has_saved_credentials": "Whether the user has some saved payment credentials", "saved_info": "Saved server-side order information" } }, "payments.validatedRequestedInfo": { "comment": "Validated user-provided info", "arguments": { "flags": "Flags, see TL conditional fields", "id": "ID", "shipping_options": "Shipping options" } }, "inputPaymentCredentialsSaved": { "comment": "Saved payment credentials", "arguments": { "id": "Credential ID", "tmp_password": "Temporary password" } }, "inputPaymentCredentials": { "comment": "Payment credentials", "arguments": { "flags": "Flags, see TL conditional fields", "save": "Save payment credential for future use", "data": "Payment credentials" } }, "inputPaymentCredentialsApplePay": { "comment": "Apple pay payment credentials", "arguments": { "payment_data": "Payment data" } }, "inputStickerSetItem": { "comment": "Sticker in a stickerset", "arguments": { "flags": "Flags, see TL conditional fields", "document": "The sticker", "emoji": "Associated emoji", "mask_coords": "Coordinates for mask sticker", "keywords": "Set of keywords, separated by commas (can't be provided for mask stickers)" } }, "inputPhoneCall": { "comment": "Phone call", "arguments": { "id": "Call ID", "access_hash": "Access hash" } }, "shippingOption": { "comment": "Shipping option", "arguments": { "id": "Option ID", "title": "Title", "prices": "List of price portions" } }, "inputPaymentCredentialsGooglePay": { "comment": "Google Pay payment credentials", "arguments": { "payment_token": "Payment token" } }, "account.tmpPassword": { "comment": "Temporary payment password", "arguments": { "tmp_password": "Temporary password", "valid_until": "Validity period" } }, "phoneCallEmpty": { "comment": "Empty constructor", "arguments": { "id": "Call ID" } }, "phoneCallRequested": { "comment": "Requested phone call", "arguments": { "flags": "Flags, see TL conditional fields", "video": "Whether this is a video call", "id": "Phone call ID", "access_hash": "Access hash", "date": "When was the phone call created", "admin_id": "ID of the creator of the phone call", "participant_id": "ID of the other participant of the phone call", "g_a_hash": "Parameter for key exchange", "protocol": "Call protocol info to be passed to libtgvoip" } }, "phoneCallWaiting": { "comment": "Incoming phone call", "arguments": { "flags": "Flags, see TL conditional fields", "video": "Is this a video call", "id": "Call ID", "access_hash": "Access hash", "date": "Date", "admin_id": "Admin ID", "participant_id": "Participant ID", "protocol": "Phone call protocol info", "receive_date": "When was the phone call received" } }, "phoneCall": { "comment": "Phone call", "arguments": { "flags": "Flags, see TL conditional fields", "p2p_allowed": "Whether P2P connection to the other peer is allowed", "video": "Whether this is a video call", "id": "Call ID", "access_hash": "Access hash", "date": "Date of creation of the call", "admin_id": "User ID of the creator of the call", "participant_id": "User ID of the other participant in the call", "g_a_or_b": "Parameter for key exchange", "key_fingerprint": "Key fingerprint", "protocol": "Call protocol info to be passed to libtgvoip", "connections": "List of endpoints the user can connect to exchange call data", "start_date": "When was the call actually started", "custom_parameters": "Custom JSON-encoded call parameters to be passed to tgcalls." } }, "phoneCallAccepted": { "comment": "An accepted phone call", "arguments": { "flags": "Flags, see TL conditional fields", "video": "Whether this is a video call", "id": "ID of accepted phone call", "access_hash": "Access hash of phone call", "date": "When was the call accepted", "admin_id": "ID of the call creator", "participant_id": "ID of the other user in the call", "g_b": "B parameter for secure E2E phone call key exchange", "protocol": "Protocol to use for phone call" } }, "phoneCallDiscarded": { "comment": "Indicates a discarded phone call", "arguments": { "flags": "Flags, see TL conditional fields", "need_rating": "Whether the server required the user to {@link phone.RawSetCallRatingRequest} the call", "need_debug": "Whether the server required the client to {@link phone.RawSaveCallDebugRequest} the libtgvoip call debug data", "video": "Whether the call was a video call", "id": "Call ID", "reason": "Why was the phone call discarded", "duration": "Duration of the phone call in seconds" } }, "phoneConnectionWebrtc": { "comment": "WebRTC connection parameters", "arguments": { "flags": "Flags, see TL conditional fields", "turn": "Whether this is a TURN endpoint", "stun": "Whether this is a STUN endpoint", "id": "Endpoint ID", "ip": "IP address", "ipv6": "IPv6 address", "port": "Port", "username": "Username", "password": "Password" } }, "phoneCallProtocol": { "comment": "Protocol info for libtgvoip", "arguments": { "flags": "Flags, see TL conditional fields", "udp_p2p": "Whether to allow P2P connection to the other participant", "udp_reflector": "Whether to allow connection to the other participants through the reflector servers", "min_layer": "Minimum layer for remote libtgvoip", "max_layer": "Maximum layer for remote libtgvoip", "library_versions": "When using {@link phone.RawRequestCallRequest} and {@link phone.RawAcceptCallRequest}, specify all library versions supported by the client.
The server will merge and choose the best library version supported by both peers, returning only the best value in the result of the callee's {@link phone.RawAcceptCallRequest} and in the {@link RawPhoneCallAccepted} update received by the caller." } }, "payments.paymentReceipt": { "comment": "Receipt", "arguments": { "flags": "Flags, see TL conditional fields", "date": "Date of generation", "bot_id": "Bot ID", "provider_id": "Provider ID", "title": "Title", "description": "Description", "photo": "Photo", "invoice": "Invoice", "info": "Info", "shipping": "Selected shipping option", "tip_amount": "Tipped amount", "currency": "Three-letter ISO 4217 currency code", "total_amount": "Total amount in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "credentials_title": "Payment credential name", "users": "Users" } }, "phoneConnection": { "comment": "Identifies an endpoint that can be used to connect to the other user in a phone call", "arguments": { "flags": "Flags, see TL conditional fields", "tcp": "Whether TCP should be used", "id": "Endpoint ID", "ip": "IP address of endpoint", "ipv6": "IPv6 address of endpoint", "port": "Port ID", "peer_tag": "Our peer tag" } }, "phone.phoneCall": { "comment": "A VoIP phone call", "arguments": { "phone_call": "The VoIP phone call", "users": "VoIP phone call participants" } }, "upload.cdnFileReuploadNeeded": { "comment": "The file was cleared from the temporary RAM cache of the CDN and has to be re-uploaded.", "arguments": { "request_token": "Request token (see CDN)" } }, "upload.cdnFile": { "comment": "Represent a chunk of a CDN file.", "arguments": { "bytes": "The data" } }, "cdnPublicKey": { "comment": "Public key to use only during handshakes to CDN DCs.", "arguments": { "dc_id": "CDN DC ID", "public_key": "RSA public key" } }, "cdnConfig": { "comment": "Configuration for CDN file downloads.", "arguments": { "public_keys": "Vector of public keys to use only during handshakes to CDN DCs." } }, "langPackString": { "comment": "Translated localization string", "arguments": { "key": "Language key", "value": "Value" } }, "langPackLanguage": { "comment": "Identifies a localization pack", "arguments": { "flags": "Flags, see TL conditional fields", "official": "Whether the language pack is official", "rtl": "Is this a localization pack for an RTL language", "beta": "Is this a beta localization pack?", "name": "Language name", "native_name": "Language name in the language itself", "lang_code": "Language code (pack identifier)", "base_lang_code": "Identifier of a base language pack; may be empty. If a string is missed in the language pack, then it should be fetched from base language pack. Unsupported in custom language packs", "plural_code": "A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info", "strings_count": "Total number of non-deleted strings from the language pack", "translated_count": "Total number of translated strings from the language pack", "translations_url": "Link to language translation interface; empty for custom local language packs" } }, "langPackStringPluralized": { "comment": "A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info", "arguments": { "flags": "Flags, see TL conditional fields", "key": "Localization key", "zero_value": "Value for zero objects", "one_value": "Value for one object", "two_value": "Value for two objects", "few_value": "Value for a few objects", "many_value": "Value for many objects", "other_value": "Default value" } }, "channelAdminLogEventActionChangeAbout": { "comment": "The description was changed", "arguments": { "prev_value": "Previous description", "new_value": "New description" } }, "langPackDifference": { "comment": "Changes to the app's localization pack", "arguments": { "lang_code": "Language code", "from_version": "Previous version number", "version": "New version number", "strings": "Localized strings" } }, "channelAdminLogEventActionChangeTitle": { "comment": "Channel/supergroup title was changed", "arguments": { "prev_value": "Previous title", "new_value": "New title" } }, "langPackStringDeleted": { "comment": "Deleted localization string", "arguments": { "key": "Localization key" } }, "channelAdminLogEventActionToggleInvites": { "comment": "Invites were enabled/disabled", "arguments": { "new_value": "New value" } }, "channelAdminLogEventActionChangeUsername": { "comment": "Channel/supergroup username was changed", "arguments": { "prev_value": "Old username", "new_value": "New username" } }, "channelAdminLogEventActionUpdatePinned": { "comment": "A message was pinned", "arguments": { "message": "The message that was pinned" } }, "channelAdminLogEventActionEditMessage": { "comment": "A message was edited", "arguments": { "prev_message": "Old message", "new_message": "New message" } }, "channelAdminLogEventActionDeleteMessage": { "comment": "A message was deleted", "arguments": { "message": "The message that was deleted" } }, "channelAdminLogEventActionToggleSignatures": { "comment": "Channel signatures were enabled/disabled", "arguments": { "new_value": "New value" } }, "channelAdminLogEventActionParticipantLeave": { "comment": "A user left the channel/supergroup (in the case of big groups, info of the user that has joined isn't shown)", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "channelAdminLogEventActionParticipantJoin": { "comment": "A user has joined the group (in the case of big groups, info of the user that has joined isn't shown)", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "channelAdminLogEventActionChangePhoto": { "comment": "The channel/supergroup's picture was changed", "arguments": { "prev_photo": "Previous picture", "new_photo": "New picture" } }, "channelAdminLogEventActionParticipantInvite": { "comment": "A user was invited to the group", "arguments": { "participant": "The user that was invited" } }, "channelAdminLogEventActionParticipantToggleAdmin": { "comment": "The admin rights of a user were changed", "arguments": { "prev_participant": "Previous admin rights", "new_participant": "New admin rights" } }, "channelAdminLogEventActionParticipantToggleBan": { "comment": "The banned rights of a user were changed", "arguments": { "prev_participant": "Old banned rights of user", "new_participant": "New banned rights of user" } }, "channelAdminLogEventActionChangeStickerSet": { "comment": "The supergroup's stickerset was changed", "arguments": { "prev_stickerset": "Previous stickerset", "new_stickerset": "New stickerset" } }, "channelAdminLogEventActionDefaultBannedRights": { "comment": "The default banned rights were modified", "arguments": { "prev_banned_rights": "Previous global banned rights", "new_banned_rights": "New global banned rights." } }, "channelAdminLogEventActionTogglePreHistoryHidden": { "comment": "The hidden prehistory setting was {@link channels.RawTogglePreHistoryHiddenRequest}", "arguments": { "new_value": "New value" } }, "channelAdminLogEventActionChangeLinkedChat": { "comment": "The linked chat was changed", "arguments": { "prev_value": "Previous linked chat", "new_value": "New linked chat" } }, "channelAdminLogEventActionStopPoll": { "comment": "A poll was stopped", "arguments": { "message": "The poll that was stopped" } }, "channelAdminLogEventActionChangeLocation": { "comment": "The geo group location was changed", "arguments": { "prev_value": "Previous location", "new_value": "New location" } }, "channelAdminLogEventActionToggleSlowMode": { "comment": "{@link channels.RawToggleSlowModeRequest}", "arguments": { "prev_value": "Previous slow mode value", "new_value": "New slow mode value" } }, "channelAdminLogEventActionDiscardGroupCall": { "comment": "A group call was terminated", "arguments": { "call": "The group call that was terminated" } }, "channelAdminLogEventActionParticipantMute": { "comment": "A group call participant was muted", "arguments": { "participant": "The participant that was muted" } }, "channelAdminLogEventActionParticipantUnmute": { "comment": "A group call participant was unmuted", "arguments": { "participant": "The participant that was unmuted" } }, "channelAdminLogEventActionToggleGroupCallSetting": { "comment": "Group call settings were changed", "arguments": { "join_muted": "Whether all users are muted by default upon joining" } }, "channelAdminLogEventActionParticipantJoinByInvite": { "comment": "A user joined the supergroup/channel using a specific invite link", "arguments": { "flags": "Flags, see TL conditional fields", "via_chatlist": "The participant joined by importing a chat folder deep link ».", "invite": "The invite link used to join the supergroup/channel" } }, "channelAdminLogEventActionExportedInviteDelete": { "comment": "A chat invite was deleted", "arguments": { "invite": "The deleted chat invite" } }, "channelAdminLogEventActionStartGroupCall": { "comment": "A group call was started", "arguments": { "call": "Group call" } }, "channelAdminLogEventActionExportedInviteRevoke": { "comment": "A specific invite link was revoked", "arguments": { "invite": "The invite link that was revoked" } }, "channelAdminLogEventActionExportedInviteEdit": { "comment": "A chat invite was edited", "arguments": { "prev_invite": "Previous chat invite information", "new_invite": "New chat invite information" } }, "channelAdminLogEventActionChangeHistoryTTL": { "comment": "The Time-To-Live of messages in this chat was changed", "arguments": { "prev_value": "Previous value", "new_value": "New value" } }, "channelAdminLogEventActionParticipantJoinByRequest": { "comment": "A new member was accepted to the chat by an admin", "arguments": { "invite": "The invite link that was used to join the chat", "approved_by": "ID of the admin that approved the invite" } }, "channelAdminLogEventActionChangeAvailableReactions": { "comment": "The set of allowed message reactions » for this channel has changed", "arguments": { "prev_value": "Previously allowed reaction emojis", "new_value": "New allowed reaction emojis" } }, "channelAdminLogEventActionToggleForum": { "comment": "Forum functionality was enabled or disabled.", "arguments": { "new_value": "Whether forum functionality was enabled or disabled." } }, "channelAdminLogEventActionParticipantVolume": { "comment": "channelAdminLogEvent.user_id has set the volume of participant.peer to participant.volume", "arguments": { "participant": "The participant whose volume was changed" } }, "channelAdminLogEventActionSendMessage": { "comment": "A message was posted in a channel", "arguments": { "message": "The message that was sent" } }, "channelAdminLogEventActionChangeUsernames": { "comment": "The list of usernames associated with the channel was changed", "arguments": { "prev_value": "Previous set of usernames", "new_value": "New set of usernames" } }, "channelAdminLogEventActionCreateTopic": { "comment": "A forum topic was created", "arguments": { "topic": "The forum topic that was created" } }, "channelAdminLogEventActionToggleNoForwards": { "comment": "Forwards were enabled or disabled", "arguments": { "new_value": "Old value" } }, "channelAdminLogEventActionEditTopic": { "comment": "A forum topic was edited", "arguments": { "prev_topic": "Previous topic information", "new_topic": "New topic information" } }, "channelAdminLogEventActionChangePeerColor": { "comment": "The message accent color was changed", "arguments": { "prev_value": "Previous accent palette", "new_value": "New accent palette" } }, "channelAdminLogEventActionChangeWallpaper": { "comment": "The wallpaper was changed", "arguments": { "prev_value": "Previous wallpaper", "new_value": "New wallpaper" } }, "channelAdminLogEventActionChangeProfilePeerColor": { "comment": "The profile accent color was changed", "arguments": { "prev_value": "Previous accent palette", "new_value": "New accent palette" } }, "channelAdminLogEventActionToggleAntiSpam": { "comment": "Native antispam functionality was enabled or disabled.", "arguments": { "new_value": "Whether antispam functionality was enabled or disabled." } }, "channelAdminLogEventActionChangeEmojiStatus": { "comment": "The emoji status was changed", "arguments": { "prev_value": "Previous emoji status", "new_value": "New emoji status" } }, "channelAdminLogEventActionPinTopic": { "comment": "A forum topic was pinned or unpinned", "arguments": { "flags": "Flags, see TL conditional fields", "prev_topic": "Previous topic information", "new_topic": "New topic information" } }, "channelAdminLogEventActionChangeEmojiStickerSet": { "comment": "The supergroup's custom emoji stickerset was changed.", "arguments": { "prev_stickerset": "Old value", "new_stickerset": "New value" } }, "channels.adminLogResults": { "comment": "Admin log events", "arguments": { "events": "Admin log events", "chats": "Chats mentioned in events", "users": "Users mentioned in events" } }, "channelAdminLogEvent": { "comment": "Admin log event", "arguments": { "id": "Event ID", "date": "Date", "user_id": "User ID", "action": "Action" } }, "messages.favedStickersNotModified": { "comment": "No new favorited stickers were found", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "popularContact": { "comment": "Popular contact", "arguments": { "client_id": "Contact identifier", "importers": "How many people imported this contact" } }, "recentMeUrlUnknown": { "comment": "Unknown t.me url", "arguments": { "url": "URL" } }, "channelAdminLogEventsFilter": { "comment": "Filter only certain admin log events", "arguments": { "flags": "Flags, see TL conditional fields", "join": "{@link RawChannelAdminLogEventActionParticipantJoin}, including {@link RawChannelAdminLogEventActionParticipantJoinByInvite} and {@link RawChannelAdminLogEventActionParticipantJoinByRequest}.", "leave": "{@link RawChannelAdminLogEventActionParticipantLeave}", "invite": "{@link RawChannelAdminLogEventActionParticipantInvite}", "ban": "{@link RawChannelAdminLogEventActionParticipantToggleBan}", "unban": "{@link RawChannelAdminLogEventActionParticipantToggleBan}", "kick": "{@link RawChannelAdminLogEventActionParticipantToggleBan}", "unkick": "{@link RawChannelAdminLogEventActionParticipantToggleBan}", "promote": "{@link RawChannelAdminLogEventActionParticipantToggleAdmin}", "demote": "{@link RawChannelAdminLogEventActionParticipantToggleAdmin}", "info": "Info change events (when {@link RawChannelAdminLogEventActionChangeAbout}, {@link RawChannelAdminLogEventActionChangeLinkedChat}, {@link RawChannelAdminLogEventActionChangeLocation}, {@link RawChannelAdminLogEventActionChangePhoto}, {@link RawChannelAdminLogEventActionChangeStickerSet}, {@link RawChannelAdminLogEventActionChangeTitle} or {@link RawChannelAdminLogEventActionChangeUsername}, {@link RawChannelAdminLogEventActionToggleSlowMode}, {@link RawChannelAdminLogEventActionChangeHistoryTTL} settings of a channel gets modified)", "settings": "Settings change events ({@link RawChannelAdminLogEventActionToggleInvites}, {@link RawChannelAdminLogEventActionTogglePreHistoryHidden}, {@link RawChannelAdminLogEventActionToggleSignatures}, {@link RawChannelAdminLogEventActionDefaultBannedRights}, {@link RawChannelAdminLogEventActionToggleForum})", "pinned": "{@link RawChannelAdminLogEventActionUpdatePinned}", "edit": "{@link RawChannelAdminLogEventActionEditMessage}", "delete": "{@link RawChannelAdminLogEventActionDeleteMessage}", "group_call": "Group call events", "invites": "Invite events", "send": "A message was posted in a channel", "forums": "Forum-related events" } }, "messages.favedStickers": { "comment": "Favorited stickers", "arguments": { "hash": "Hash used for caching, for more info click here", "packs": "Emojis associated to stickers", "stickers": "Favorited stickers" } }, "channelAdminLogEventActionDeleteTopic": { "comment": "A forum topic was deleted", "arguments": { "topic": "The forum topic that was deleted" } }, "recentMeUrlChat": { "comment": "Recent t.me link to a chat", "arguments": { "url": "t.me URL", "chat_id": "Chat ID" } }, "recentMeUrlStickerSet": { "comment": "Recent t.me stickerset installation URL", "arguments": { "url": "t.me URL", "set": "Stickerset" } }, "recentMeUrlChatInvite": { "comment": "Recent t.me invite link to a chat", "arguments": { "url": "t.me URL", "chat_invite": "Chat invitation" } }, "help.recentMeUrls": { "comment": "Recent t.me URLs", "arguments": { "urls": "URLs", "chats": "Chats", "users": "Users" } }, "recentMeUrlUser": { "comment": "Recent t.me link to a user", "arguments": { "url": "URL", "user_id": "User ID" } }, "webAuthorization": { "comment": "Represents a bot logged in using the Telegram login widget", "arguments": { "hash": "Authorization hash", "bot_id": "Bot ID", "domain": "The domain name of the website on which the user has logged in.", "browser": "Browser user-agent", "platform": "Platform", "date_created": "When was the web session created", "date_active": "When was the web session last active", "ip": "IP address", "region": "Region, determined from IP address" } }, "account.webAuthorizations": { "comment": "Web authorizations", "arguments": { "authorizations": "Web authorization list", "users": "Users" } }, "inputMessageID": { "comment": "Message by ID", "arguments": { "id": "Message ID" } }, "inputMessageReplyTo": { "comment": "Message to which the specified message replies to", "arguments": { "id": "ID of the message that replies to the message we need" } }, "inputSingleMedia": { "comment": "A single media in an album or grouped media sent with {@link messages.RawSendMultiMediaRequest}.", "arguments": { "flags": "Flags, see TL conditional fields", "media": "The media", "random_id": "Unique client media ID required to prevent message resending", "message": "A caption for the media", "entities": "Message entities for styled text" } }, "inputDialogPeerFolder": { "comment": "All peers in a peer folder", "arguments": { "folder_id": "Peer folder ID, for more info click here" } }, "inputDialogPeer": { "comment": "A peer", "arguments": { "peer": "Peer" } }, "inputMessageCallbackQuery": { "comment": "Used by bots for fetching information about the message that originated a callback query", "arguments": { "id": "Message ID", "query_id": "Callback query ID" } }, "inputMessagePinned": { "comment": "Pinned message", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "dialogPeer": { "comment": "Peer", "arguments": { "peer": "Peer" } }, "dialogPeerFolder": { "comment": "Peer folder", "arguments": { "folder_id": "Peer folder ID, for more info click here" } }, "messages.foundStickerSetsNotModified": { "comment": "No further results were found", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.foundStickerSets": { "comment": "Found stickersets", "arguments": { "hash": "Hash used for caching, for more info click here", "sets": "Found stickersets" } }, "fileHash": { "comment": "SHA256 Hash of an uploaded file, to be checked for validity after download", "arguments": { "offset": "Offset from where to start computing SHA-256 hash", "limit": "Length", "hash": "SHA-256 Hash of file chunk, to be checked for validity after download" } }, "help.termsOfServiceUpdateEmpty": { "comment": "No changes were made to telegram's terms of service", "arguments": { "expires": "New TOS updates will have to be queried using {@link help.RawGetTermsOfServiceUpdateRequest} in expires seconds" } }, "inputSecureFileUploaded": { "comment": "Uploaded secure file, for more info see the passport docs »", "arguments": { "id": "Secure file ID", "parts": "Secure file part count", "md5_checksum": "MD5 hash of encrypted uploaded file, to be checked server-side", "file_hash": "File hash", "secret": "Secret" } }, "inputSecureFile": { "comment": "Pre-uploaded passport file, for more info see the passport docs »", "arguments": { "id": "Secure file ID", "access_hash": "Secure file access hash" } }, "help.termsOfServiceUpdate": { "comment": "Info about an update of telegram's terms of service. If the terms of service are declined, then the {@link account.RawDeleteAccountRequest} method should be called with the reason \"Decline ToS update\"", "arguments": { "expires": "New TOS updates will have to be queried using {@link help.RawGetTermsOfServiceUpdateRequest} in expires seconds", "terms_of_service": "New terms of service" } }, "secureFile": { "comment": "Secure passport file, for more info see the passport docs »", "arguments": { "id": "ID", "access_hash": "Access hash", "size": "File size", "dc_id": "DC ID", "date": "Date of upload", "file_hash": "File hash", "secret": "Secret" } }, "secureFileEmpty": { "comment": "Empty constructor", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputClientProxy": { "comment": "Info about an MTProxy used to connect.", "arguments": { "address": "Proxy address", "port": "Proxy port" } }, "secureData": { "comment": "Secure passport data, for more info see the passport docs »", "arguments": { "data": "Data", "data_hash": "Data hash", "secret": "Secret" } }, "secureValueTypeDriverLicense": { "comment": "Driver's license", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "securePlainEmail": { "comment": "Email address to use in telegram passport: it must be verified, first ».", "arguments": { "email": "Email address" } }, "secureValueTypePassport": { "comment": "Passport", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "securePlainPhone": { "comment": "Phone number to use in telegram passport: it must be verified, first ».", "arguments": { "phone": "Phone number" } }, "secureValueTypePersonalDetails": { "comment": "Personal details", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValueTypeIdentityCard": { "comment": "Identity card", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValueTypeAddress": { "comment": "Address", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValueTypeBankStatement": { "comment": "Bank statement", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValueTypeInternalPassport": { "comment": "Internal passport", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValueTypePassportRegistration": { "comment": "Internal registration passport", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValueTypeTemporaryRegistration": { "comment": "Temporary registration", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValueTypeUtilityBill": { "comment": "Utility bill", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValueTypePhone": { "comment": "Phone", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValueTypeEmail": { "comment": "Email", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValueTypeRentalAgreement": { "comment": "Rental agreement", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValue": { "comment": "Secure value", "arguments": { "flags": "Flags, see TL conditional fields", "type": "Secure passport value type", "data": "Encrypted Telegram Passport element data", "front_side": "Encrypted passport file with the front side of the document", "reverse_side": "Encrypted passport file with the reverse side of the document", "selfie": "Encrypted passport file with a selfie of the user holding the document", "translation": "Array of encrypted passport files with translated versions of the provided documents", "files": "Array of encrypted passport files with photos the of the documents", "plain_data": "Plaintext verified passport data", "hash": "Data hash" } }, "secureValueHash": { "comment": "Secure value hash", "arguments": { "type": "Secure value type", "hash": "Hash" } }, "secureValueErrorFrontSide": { "comment": "Represents an issue with the front side of a document. The error is considered resolved when the file with the front side of the document changes.", "arguments": { "type": "One of {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}", "file_hash": "File hash", "text": "Error message" } }, "inputSecureValue": { "comment": "Secure value, for more info see the passport docs »", "arguments": { "flags": "Flags, see TL conditional fields", "type": "Secure passport value type", "data": "Encrypted Telegram Passport element data", "front_side": "Encrypted passport file with the front side of the document", "reverse_side": "Encrypted passport file with the reverse side of the document", "selfie": "Encrypted passport file with a selfie of the user holding the document", "translation": "Array of encrypted passport files with translated versions of the provided documents", "files": "Array of encrypted passport files with photos the of the documents", "plain_data": "Plaintext verified passport data" } }, "secureValueErrorData": { "comment": "Represents an issue in one of the data fields that was provided by the user. The error is considered resolved when the field's value changes.", "arguments": { "type": "The section of the user's Telegram Passport which has the error, one of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeAddress}", "data_hash": "Data hash", "field": "Name of the data field which has the error", "text": "Error message" } }, "secureValueErrorReverseSide": { "comment": "Represents an issue with the reverse side of a document. The error is considered resolved when the file with reverse side of the document changes.", "arguments": { "type": "One of {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}", "file_hash": "File hash", "text": "Error message" } }, "secureValueErrorFile": { "comment": "Represents an issue with a document scan. The error is considered resolved when the file with the document scan changes.", "arguments": { "type": "One of {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}", "file_hash": "File hash", "text": "Error message" } }, "secureValueErrorSelfie": { "comment": "Represents an issue with the selfie with a document. The error is considered resolved when the file with the selfie changes.", "arguments": { "type": "One of {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}", "file_hash": "File hash", "text": "Error message" } }, "secureValueErrorFiles": { "comment": "Represents an issue with a list of scans. The error is considered resolved when the list of files containing the scans changes.", "arguments": { "type": "One of {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}", "file_hash": "File hash", "text": "Error message" } }, "secureValueError": { "comment": "Secure value error", "arguments": { "type": "Type of element which has the issue", "hash": "Hash", "text": "Error message" } }, "account.authorizationForm": { "comment": "Telegram Passport authorization form", "arguments": { "flags": "Flags, see TL conditional fields", "required_types": "Required Telegram Passport documents", "values": "Already submitted Telegram Passport documents", "errors": "Telegram Passport errors", "users": "Info about the bot to which the form will be submitted", "privacy_policy_url": "URL of the service's privacy policy" } }, "secureCredentialsEncrypted": { "comment": "Encrypted credentials required to decrypt telegram passport data.", "arguments": { "data": "Encrypted JSON-serialized data with unique user's payload, data hashes and secrets required for EncryptedPassportElement decryption and authentication, as described in decrypting data »", "hash": "Data hash for data authentication as described in decrypting data »", "secret": "Secret, encrypted with the bot's public RSA key, required for data decryption as described in decrypting data »" } }, "help.deepLinkInfoEmpty": { "comment": "Deep link info empty", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureValueErrorTranslationFiles": { "comment": "Represents an issue with the translated version of a document. The error is considered resolved when a file with the document translation changes.", "arguments": { "type": "One of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}", "file_hash": "Hash", "text": "Error message" } }, "secureValueErrorTranslationFile": { "comment": "Represents an issue with one of the files that constitute the translation of a document. The error is considered resolved when the file changes.", "arguments": { "type": "One of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}", "file_hash": "File hash", "text": "Error message" } }, "passwordKdfAlgoUnknown": { "comment": "Unknown KDF (most likely, the client is outdated and does not support the specified KDF algorithm)", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.deepLinkInfo": { "comment": "Deep link info, see the here for more details", "arguments": { "flags": "Flags, see TL conditional fields", "update_app": "An update of the app is required to parse this link", "message": "Message to show to the user", "entities": "Message entities for styled text" } }, "passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow": { "comment": "This key derivation algorithm defines that SRP 2FA login must be used", "arguments": { "salt1": "One of two salts used by the derivation function (see SRP 2FA login)", "salt2": "One of two salts used by the derivation function (see SRP 2FA login)", "g": "Base (see SRP 2FA login)", "p": "2048-bit modulus (see SRP 2FA login)" } }, "account.sentEmailCode": { "comment": "The sent email code", "arguments": { "email_pattern": "The email (to which the code was sent) must match this pattern", "length": "The length of the verification code" } }, "securePasswordKdfAlgoSHA512": { "comment": "SHA512 KDF algo", "arguments": { "salt": "Salt" } }, "securePasswordKdfAlgoPBKDF2HMACSHA512iter100000": { "comment": "PBKDF2 with SHA512 and 100000 iterations KDF algo", "arguments": { "salt": "Salt" } }, "savedPhoneContact": { "comment": "Saved contact", "arguments": { "phone": "Phone number", "first_name": "First name", "last_name": "Last name", "date": "Date added" } }, "account.takeout": { "comment": "Takeout info", "arguments": { "id": "Takeout ID" } }, "inputCheckPasswordEmpty": { "comment": "There is no password", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputCheckPasswordSRP": { "comment": "Constructor for checking the validity of a 2FA SRP password (see SRP)", "arguments": { "srp_id": "SRP ID", "A": "A parameter (see SRP)", "M1": "M1 parameter (see SRP)" } }, "secureRequiredTypeOneOf": { "comment": "One of", "arguments": { "types": "Secure required value types" } }, "secureSecretSettings": { "comment": "Secure settings", "arguments": { "secure_algo": "Secure KDF algo", "secure_secret": "Secure secret", "secure_secret_id": "Secret ID" } }, "help.passportConfigNotModified": { "comment": "Password configuration not modified", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputAppEvent": { "comment": "Event that occurred in the application.", "arguments": { "time": "Client's exact timestamp for the event", "type": "Type of event", "peer": "Arbitrary numeric value for more convenient selection of certain event types, or events referring to a certain object", "data": "Details of the event" } }, "help.passportConfig": { "comment": "Telegram passport configuration", "arguments": { "hash": "Hash used for caching, for more info click here", "countries_langs": "Localization" } }, "securePasswordKdfAlgoUnknown": { "comment": "Unknown KDF algo (most likely the client has to be updated)", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "secureRequiredType": { "comment": "Required type", "arguments": { "flags": "Flags, see TL conditional fields", "native_names": "Native names", "selfie_required": "Is a selfie required", "translation_required": "Is a translation required", "type": "Secure value type" } }, "jsonObjectValue": { "comment": "JSON key: value pair", "arguments": { "key": "Key", "value": "Value" } }, "jsonBool": { "comment": "JSON boolean value", "arguments": { "value": "Value" } }, "jsonNumber": { "comment": "JSON numeric value", "arguments": { "value": "Value" } }, "jsonString": { "comment": "JSON string", "arguments": { "value": "Value" } }, "jsonNull": { "comment": "null JSON value", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "jsonArray": { "comment": "JSON array", "arguments": { "value": "JSON values" } }, "jsonObject": { "comment": "JSON object value", "arguments": { "value": "Values" } }, "pageTableCell": { "comment": "Table cell", "arguments": { "flags": "Flags, see TL conditional fields", "header": "Is this element part of the column header", "align_center": "Horizontally centered block", "align_right": "Right-aligned block", "valign_middle": "Vertically centered block", "valign_bottom": "Block vertically-aligned to the bottom", "text": "Content", "colspan": "For how many columns should this cell extend", "rowspan": "For how many rows should this cell extend" } }, "pageCaption": { "comment": "Page caption", "arguments": { "text": "Caption", "credit": "Credits" } }, "pageListItemText": { "comment": "List item", "arguments": { "text": "Text" } }, "pageTableRow": { "comment": "Table row", "arguments": { "cells": "Table cells" } }, "pageListOrderedItemText": { "comment": "Ordered list of text items", "arguments": { "num": "Number of element within ordered list", "text": "Text" } }, "pageListItemBlocks": { "comment": "List item", "arguments": { "blocks": "Blocks" } }, "pageRelatedArticle": { "comment": "Related article", "arguments": { "flags": "Flags, see TL conditional fields", "url": "URL of article", "webpage_id": "Webpage ID of generated IV preview", "title": "Title", "description": "Description", "photo_id": "ID of preview photo", "author": "Author name", "published_date": "Date of publication" } }, "pageListOrderedItemBlocks": { "comment": "Ordered list of IV blocks", "arguments": { "num": "Number of element within ordered list", "blocks": "Item contents" } }, "page": { "comment": "Instant view page", "arguments": { "flags": "Flags, see TL conditional fields", "part": "Indicates that not full page preview is available to the client and it will need to fetch full Instant View from the server using {@link messages.RawGetWebPagePreviewRequest}.", "rtl": "Whether the page contains RTL text", "v2": "Whether this is an IV v2 page", "url": "Original page HTTP URL", "blocks": "Page elements (like with HTML elements, only as TL constructors)", "photos": "Photos in page", "documents": "Media in page", "views": "View count" } }, "help.userInfo": { "comment": "Internal use", "arguments": { "message": "Info", "entities": "Message entities for styled text", "author": "Author", "date": "Date" } }, "pollAnswer": { "comment": "A possible answer of a poll", "arguments": { "text": "Textual representation of the answer (only Premium users can use custom emoji entities here).", "option": "The param that has to be passed to {@link messages.RawSendVoteRequest}." } }, "help.supportName": { "comment": "Localized name for telegram support", "arguments": { "name": "Localized name" } }, "poll": { "comment": "Poll", "arguments": { "id": "ID of the poll", "flags": "Flags, see TL conditional fields", "closed": "Whether the poll is closed and doesn't accept any more answers", "public_voters": "Whether cast votes are publicly visible to all users (non-anonymous poll)", "multiple_choice": "Whether multiple options can be chosen as answer", "quiz": "Whether this is a quiz (with wrong and correct answers, results shown in the return type)", "question": "The question of the poll (only Premium users can use custom emoji entities here).", "answers": "The possible answers, vote using {@link messages.RawSendVoteRequest}.", "close_period": "Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date.", "close_date": "Point in time (UNIX timestamp in seconds) when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future; can't be used together with close_period." } }, "statsURL": { "comment": "URL with chat statistics", "arguments": { "url": "Chat statistics" } }, "chatOnlines": { "comment": "Number of online users in a chat", "arguments": { "onlines": "Number of online users" } }, "chatAdminRights": { "comment": "Represents the rights of an admin in a channel/supergroup.", "arguments": { "flags": "Flags, see TL conditional fields", "change_info": "If set, allows the admin to modify the description of the channel/supergroup", "post_messages": "If set, allows the admin to post messages in the channel", "edit_messages": "If set, allows the admin to also edit messages from other admins in the channel", "delete_messages": "If set, allows the admin to also delete messages from other admins in the channel", "ban_users": "If set, allows the admin to ban users from the channel/supergroup", "invite_users": "If set, allows the admin to invite users in the channel/supergroup", "pin_messages": "If set, allows the admin to pin messages in the channel/supergroup", "add_admins": "If set, allows the admin to add other admins with the same (or more limited) permissions in the channel/supergroup", "anonymous": "Whether this admin is anonymous", "manage_call": "If set, allows the admin to change group call/livestream settings", "other": "Set this flag if none of the other flags are set, but you still want the user to be an admin: if this or any of the other flags are set, the admin can get the chat admin log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode.", "manage_topics": "If set, allows the admin to create, delete or modify forum topics ».", "post_stories": "If set, allows the admin to post stories as the channel.", "edit_stories": "If set, allows the admin to edit stories posted by the other admins of the channel.", "delete_stories": "If set, allows the admin to delete stories posted by the other admins of the channel." } }, "pollAnswerVoters": { "comment": "A poll answer, and how users voted on it", "arguments": { "flags": "Flags, see TL conditional fields", "chosen": "Whether we have chosen this answer", "correct": "For quizzes, whether the option we have chosen is correct", "option": "The param that has to be passed to {@link messages.RawSendVoteRequest}.", "voters": "How many users voted for this option" } }, "help.userInfoEmpty": { "comment": "Internal use", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "pollResults": { "comment": "Results of poll", "arguments": { "flags": "Flags, see TL conditional fields", "min": "Similar to min objects, used for poll constructors that are the same for all users so they don't have the option chosen by the current user (you can use {@link messages.RawGetPollResultsRequest} to get the full poll results).", "results": "Poll results", "total_voters": "Total number of people that voted in the poll", "recent_voters": "IDs of the last users that recently voted in the poll", "solution": "Explanation of quiz solution", "solution_entities": "Message entities for styled text in quiz solution" } }, "inputWallPaper": { "comment": "Wallpaper", "arguments": { "id": "Wallpaper ID", "access_hash": "Access hash" } }, "inputWallPaperSlug": { "comment": "Wallpaper by slug (a unique ID, obtained from a wallpaper link »)", "arguments": { "slug": "Unique wallpaper ID" } }, "account.wallPapers": { "comment": "Installed wallpapers", "arguments": { "hash": "Hash used for caching, for more info click here", "wallpapers": "Wallpapers" } }, "wallPaperSettings": { "comment": "Wallpaper rendering information.", "arguments": { "flags": "Flags, see TL conditional fields", "blur": "For image wallpapers »: if set, the JPEG must be downscaled to fit in 450x450 square and then box-blurred with radius 12.", "motion": "If set, the background needs to be slightly moved when the device is rotated.", "background_color": "Used for solid », gradient » and freeform gradient » fills.", "second_background_color": "Used for gradient » and freeform gradient » fills.", "third_background_color": "Used for freeform gradient » fills.", "fourth_background_color": "Used for freeform gradient » fills.", "intensity": "Used for pattern wallpapers ».", "rotation": "Clockwise rotation angle of the gradient, in degrees; 0-359. Should be always divisible by 45.", "emoticon": "If set, this wallpaper can be used as a channel wallpaper and is represented by the specified UTF-8 emoji." } }, "account.wallPapersNotModified": { "comment": "No new wallpapers were found", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "autoDownloadSettings": { "comment": "Autodownload settings", "arguments": { "flags": "Flags, see TL conditional fields", "disabled": "Disable automatic media downloads?", "video_preload_large": "Whether to preload the first seconds of videos larger than the specified limit", "audio_preload_next": "Whether to preload the next audio track when you're listening to music", "phonecalls_less_data": "Whether to enable data saving mode in phone calls", "stories_preload": "Whether to preload stories; in particular, the first {@link RawDocumentAttributeVideo}.preload_prefix_size bytes of story videos should be preloaded.", "photo_size_max": "Maximum size of photos to preload", "video_size_max": "Maximum size of videos to preload", "file_size_max": "Maximum size of other files to preload", "video_upload_maxbitrate": "Maximum suggested bitrate for uploading videos", "small_queue_active_operations_max": "A limit, specifying the maximum number of files that should be downloaded in parallel from the same DC, for files smaller than 20MB.", "large_queue_active_operations_max": "A limit, specifying the maximum number of files that should be downloaded in parallel from the same DC, for files bigger than 20MB." } }, "inputWallPaperNoFile": { "comment": "Wallpaper with no file access hash, used for example when deleting (unsave=true) wallpapers using {@link account.RawSaveWallPaperRequest}, specifying just the wallpaper ID.", "arguments": { "id": "Wallpaper ID" } }, "codeSettings": { "comment": "Settings used by telegram servers for sending the confirm code.\n\nExample implementations: telegram for android, tdlib.", "arguments": { "flags": "Flags, see TL conditional fields", "allow_flashcall": "Whether to allow phone verification via phone calls.", "current_number": "Pass true if the phone number is used on the current device. Ignored if allow_flashcall is not set.", "allow_app_hash": "If a token that will be included in eventually sent SMSs is required: required in newer versions of android, to use the android SMS receiver APIs", "allow_missed_call": "Whether this device supports receiving the code using the {@link auth.RawCodeTypeMissedCall} method", "allow_firebase": "Whether Firebase auth is supported", "unknown_number": "Set this flag if there is a SIM card in the current device, but it is not possible to check whether the specified phone number matches the SIM's phone number.", "logout_tokens": "Previously stored future auth tokens, see the documentation for more info »", "token": "Used only by official iOS apps for Firebase auth: device token for apple push.", "app_sandbox": "Used only by official iOS apps for firebase auth: whether a sandbox-certificate will be used during transmission of the push notification." } }, "chatBannedRights": { "comment": "Represents the rights of a normal user in a supergroup/channel/chat. In this case, the flags are inverted: if set, a flag does not allow a user to do X.", "arguments": { "flags": "Flags, see TL conditional fields", "view_messages": "If set, does not allow a user to view messages in a supergroup/channel/chat", "send_messages": "If set, does not allow a user to send messages in a supergroup/chat", "send_media": "If set, does not allow a user to send any media in a supergroup/chat", "send_stickers": "If set, does not allow a user to send stickers in a supergroup/chat", "send_gifs": "If set, does not allow a user to send gifs in a supergroup/chat", "send_games": "If set, does not allow a user to send games in a supergroup/chat", "send_inline": "If set, does not allow a user to use inline bots in a supergroup/chat.", "embed_links": "If set, does not allow a user to embed links in the messages of a supergroup/chat", "send_polls": "If set, does not allow a user to send polls in a supergroup/chat", "change_info": "If set, does not allow any user to change the description of a supergroup/chat", "invite_users": "If set, does not allow any user to invite users in a supergroup/chat", "pin_messages": "If set, does not allow any user to pin messages in a supergroup/chat", "manage_topics": "If set, does not allow any user to create, delete or modify forum topics ».", "send_photos": "If set, does not allow a user to send photos in a supergroup/chat.", "send_videos": "If set, does not allow a user to send videos in a supergroup/chat.", "send_roundvideos": "If set, does not allow a user to send round videos in a supergroup/chat.", "send_audios": "If set, does not allow a user to send audio files in a supergroup/chat.", "send_voices": "If set, does not allow a user to send voice messages in a supergroup/chat.", "send_docs": "If set, does not allow a user to send documents in a supergroup/chat.", "send_plain": "If set, does not allow a user to send text messages in a supergroup/chat.", "until_date": "Validity of said permissions (it is considered forever any value less then 30 seconds or more then 366 days)." } }, "account.autoDownloadSettings": { "comment": "Media autodownload settings", "arguments": { "low": "Low data usage preset", "medium": "Medium data usage preset", "high": "High data usage preset" } }, "emojiKeyword": { "comment": "Emoji keyword", "arguments": { "keyword": "Keyword", "emoticons": "Emojis associated to keyword" } }, "emojiKeywordDeleted": { "comment": "Deleted emoji keyword", "arguments": { "keyword": "Keyword", "emoticons": "Emojis that were associated to keyword" } }, "emojiKeywordsDifference": { "comment": "Changes to emoji keywords", "arguments": { "lang_code": "Language code for keywords", "from_version": "Previous emoji keyword list version", "version": "Current version of emoji keyword list", "keywords": "Emojis associated to keywords" } }, "emojiURL": { "comment": "An HTTP URL which can be used to automatically log in into translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation", "arguments": { "url": "An HTTP URL which can be used to automatically log in into translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation" } }, "emojiLanguage": { "comment": "Emoji language", "arguments": { "lang_code": "Language code" } }, "folderPeer": { "comment": "Peer in a folder", "arguments": { "peer": "Folder peer info", "folder_id": "Peer folder ID, for more info click here" } }, "folder": { "comment": "Folder", "arguments": { "flags": "Flags, see TL conditional fields", "autofill_new_broadcasts": "Automatically add new channels to this folder", "autofill_public_groups": "Automatically add joined new public supergroups to this folder", "autofill_new_correspondents": "Automatically add new private chats to this folder", "id": "Folder ID", "title": "Folder title", "photo": "Folder picture" } }, "inputFolderPeer": { "comment": "Peer in a folder", "arguments": { "peer": "Peer", "folder_id": "Peer folder ID, for more info click here" } }, "messages.searchCounter": { "comment": "Indicates how many results would be found by a {@link messages.RawSearchRequest} call with the same parameters", "arguments": { "flags": "Flags, see TL conditional fields", "inexact": "If set, the results may be inexact", "filter": "Provided message filter", "count": "Number of results that were found server-side" } }, "urlAuthResultRequest": { "comment": "Details about the authorization request, for more info click here »", "arguments": { "flags": "Flags, see TL conditional fields", "request_write_access": "Whether the bot would like to send messages to the user", "bot": "Username of a bot, which will be used for user authorization. If not specified, the current bot's username will be assumed. The url's domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details.", "domain": "The domain name of the website on which the user will log in." } }, "urlAuthResultAccepted": { "comment": "Details about an accepted authorization request, for more info click here »", "arguments": { "url": "The URL name of the website on which the user has logged in." } }, "peerLocated": { "comment": "Peer geolocated nearby", "arguments": { "peer": "Peer", "expires": "Validity period of current data", "distance": "Distance from the peer in meters" } }, "channelLocationEmpty": { "comment": "No location (normal supergroup)", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "channelLocation": { "comment": "Geographical location of supergroup (geogroups)", "arguments": { "geo_point": "Geographical location of supergroup", "address": "Textual description of the address" } }, "urlAuthResultDefault": { "comment": "Details about an accepted authorization request, for more info click here »", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "peerSelfLocated": { "comment": "Current peer", "arguments": { "expires": "Expiry of geolocation info for current peer" } }, "theme": { "comment": "Theme", "arguments": { "flags": "Flags, see TL conditional fields", "creator": "Whether the current user is the creator of this theme", "default": "Whether this is the default theme", "for_chat": "Whether this theme is meant to be used as a chat theme", "id": "Theme ID", "access_hash": "Theme access hash", "slug": "Unique theme ID", "title": "Theme name", "document": "Theme", "settings": "Theme settings", "emoticon": "Theme emoji", "installs_count": "Installation count" } }, "restrictionReason": { "comment": "Restriction reason.\n\nContains the reason why access to a certain object must be restricted. Clients are supposed to deny access to the channel if the platform field is equal to all or to the current platform (ios, android, wp, etc.). Platforms can be concatenated (ios-android, ios-wp), unknown platforms are to be ignored. The text is the error message that should be shown to the user.", "arguments": { "platform": "Platform identifier (ios, android, wp, all, etc.), can be concatenated with a dash as separator (android-ios, ios-wp, etc)", "reason": "Restriction reason (porno, terms, etc.)", "text": "Error message to be shown to the user" } }, "account.themesNotModified": { "comment": "No new themes were installed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputTheme": { "comment": "Theme", "arguments": { "id": "ID", "access_hash": "Access hash" } }, "inputThemeSlug": { "comment": "Theme by theme ID", "arguments": { "slug": "Unique theme ID obtained from a theme deep link »" } }, "auth.loginTokenSuccess": { "comment": "Login via token (QR code) succeeded!", "arguments": { "authorization": "Authorization info" } }, "auth.loginToken": { "comment": "Login token (for QR code login)", "arguments": { "expires": "Expiration date of QR code", "token": "Token to render in QR code" } }, "account.themes": { "comment": "Installed themes", "arguments": { "hash": "Hash used for caching, for more info click here", "themes": "Themes" } }, "auth.loginTokenMigrateTo": { "comment": "Repeat the query to the specified DC", "arguments": { "dc_id": "DC ID", "token": "Token to use for login" } }, "baseThemeDay": { "comment": "Day theme", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.contentSettings": { "comment": "Sensitive content settings", "arguments": { "flags": "Flags, see TL conditional fields", "sensitive_enabled": "Whether viewing of sensitive (NSFW) content is enabled", "sensitive_can_change": "Whether the current client can change the sensitive content settings to view NSFW content" } }, "baseThemeNight": { "comment": "Night theme", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "baseThemeTinted": { "comment": "Tinted theme", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "baseThemeClassic": { "comment": "Classic theme", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.inactiveChats": { "comment": "Inactive chat list", "arguments": { "dates": "When was the chat last active", "chats": "Chat list", "users": "Users mentioned in the chat list" } }, "baseThemeArctic": { "comment": "Arctic theme", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputThemeSettings": { "comment": "Theme settings", "arguments": { "flags": "Flags, see TL conditional fields", "message_colors_animated": "If set, the freeform gradient fill needs to be animated on every sent message", "base_theme": "Default theme on which this theme is based", "accent_color": "Accent color, ARGB format", "outbox_accent_color": "Accent color of outgoing messages in ARGB format", "message_colors": "The fill to be used as a background for outgoing messages, in RGB24 format.
If just one or two equal colors are provided, describes a solid fill of a background.
If two different colors are provided, describes the top and bottom colors of a 0-degree gradient.
If three or four colors are provided, describes a freeform gradient fill of a background.", "wallpaper": "{@link RawInputWallPaper} or {@link RawInputWallPaper} when passing wallpaper files for image or pattern wallpapers, {@link RawInputWallPaperNoFile} with id=0 otherwise.", "wallpaper_settings": "Wallpaper settings." } }, "webPageAttributeTheme": { "comment": "Page theme", "arguments": { "flags": "Flags, see TL conditional fields", "documents": "Theme files", "settings": "Theme settings" } }, "webPageAttributeStickerSet": { "comment": "Contains info about a stickerset », for a {@link RawWebPage} preview of a stickerset deep link » (the {@link RawWebPage} will have a type of telegram_stickerset).", "arguments": { "flags": "Flags, see TL conditional fields", "emojis": "Whether this i s a custom emoji stickerset.", "text_color": "Whether the color of this TGS custom emoji stickerset should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context.", "stickers": "A subset of the stickerset in the stickerset." } }, "themeSettings": { "comment": "Theme settings", "arguments": { "flags": "Flags, see TL conditional fields", "message_colors_animated": "If set, the freeform gradient fill needs to be animated on every sent message.", "base_theme": "Base theme", "accent_color": "Accent color, ARGB format", "outbox_accent_color": "Accent color of outgoing messages in ARGB format", "message_colors": "The fill to be used as a background for outgoing messages, in RGB24 format.
If just one or two equal colors are provided, describes a solid fill of a background.
If two different colors are provided, describes the top and bottom colors of a 0-degree gradient.
If three or four colors are provided, describes a freeform gradient fill of a background.", "wallpaper": "Wallpaper" } }, "bankCardOpenUrl": { "comment": "Credit card info URL provided by the bank", "arguments": { "url": "Info URL", "name": "Bank name" } }, "messages.votesList": { "comment": "How users voted in a poll", "arguments": { "flags": "Flags, see TL conditional fields", "count": "Total number of votes for all options (or only for the chosen option, if provided to {@link messages.RawGetPollVotesRequest})", "votes": "Vote info for each user", "chats": "Mentioned chats", "users": "Info about users that voted in the poll", "next_offset": "Offset to use with the next {@link messages.RawGetPollVotesRequest} request, empty string if no more results are available." } }, "webPageAttributeStory": { "comment": "Webpage preview of a Telegram story", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer that posted the story", "id": "Story ID", "story": "May contain the story, if not the story should be fetched when and if needed using {@link stories.RawGetStoriesByIDRequest} with the above id and peer." } }, "dialogFilterDefault": { "comment": "Used only when reordering folders to indicate the default (all chats) folder.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "payments.bankCardData": { "comment": "Credit card info, provided by the card's bank(s)", "arguments": { "title": "Credit card title", "open_urls": "Info URL(s) provided by the card's bank(s)" } }, "dialogFilterChatlist": { "comment": "A folder imported using a chat folder deep link ».", "arguments": { "flags": "Flags, see TL conditional fields", "has_my_invites": "Whether the current user has created some chat folder deep links » to share the folder as well.", "id": "ID of the folder", "title": "Name of the folder (max 12 UTF-8 chars)", "emoticon": "Emoji to use as icon for the folder.", "color": "A color ID for the folder tag associated to this folder, see here » for more info.", "pinned_peers": "Pinned chats, folders can have unlimited pinned chats", "include_peers": "Chats to include in the folder" } }, "dialogFilter": { "comment": "Dialog filter AKA folder", "arguments": { "flags": "Flags, see TL conditional fields", "contacts": "Whether to include all contacts in this folder", "non_contacts": "Whether to include all non-contacts in this folder", "groups": "Whether to include all groups in this folder", "broadcasts": "Whether to include all channels in this folder", "bots": "Whether to include all bots in this folder", "exclude_muted": "Whether to exclude muted chats from this folder", "exclude_read": "Whether to exclude read chats from this folder", "exclude_archived": "Whether to exclude archived chats from this folder", "id": "Folder ID", "title": "Folder name (max 12 UTF-8 chars)", "emoticon": "Emoji to use as icon for the folder.", "color": "A color ID for the folder tag associated to this folder, see here » for more info.", "pinned_peers": "Pinned chats, folders can have unlimited pinned chats", "include_peers": "Include the following chats in this folder", "exclude_peers": "Exclude the following chats from this folder" } }, "dialogFilterSuggested": { "comment": "Suggested folders", "arguments": { "filter": "Folder info", "description": "Folder description" } }, "statsAbsValueAndPrev": { "comment": "Statistics value couple; initial and final value for period of time currently in consideration", "arguments": { "current": "Current value", "previous": "Previous value" } }, "statsPercentValue": { "comment": "Channel statistics percentage.
\nCompute the percentage simply by doing part * total / 100", "arguments": { "part": "Partial value", "total": "Total value" } }, "statsDateRangeDays": { "comment": "Channel statistics date range", "arguments": { "min_date": "Initial date", "max_date": "Final date" } }, "statsGraphError": { "comment": "An error occurred while generating the statistics graph", "arguments": { "error": "The error" } }, "statsGraph": { "comment": "Channel statistics graph", "arguments": { "flags": "Flags, see TL conditional fields", "json": "Statistics data", "zoom_token": "Zoom token" } }, "help.promoDataEmpty": { "comment": "No PSA/MTProxy info is available", "arguments": { "expires": "Re-fetch PSA/MTProxy info after the specified number of seconds" } }, "stats.broadcastStats": { "comment": "Channel statistics.", "arguments": { "period": "Period in consideration", "followers": "Follower count change for period in consideration", "views_per_post": "total_viewcount/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date).", "shares_per_post": "total_sharecount/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)", "reactions_per_post": "total_reactions/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)", "views_per_story": "total_views/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)", "shares_per_story": "total_shares/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)", "reactions_per_story": "total_reactions/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)", "enabled_notifications": "Percentage of subscribers with enabled notifications", "growth_graph": "Channel growth graph (absolute subscriber count)", "followers_graph": "Followers growth graph (relative subscriber count)", "mute_graph": "Muted users graph (relative)", "top_hours_graph": "Views per hour graph (absolute)", "interactions_graph": "Interactions graph (absolute)", "iv_interactions_graph": "IV interactions graph (absolute)", "views_by_source_graph": "Views by source graph (absolute)", "new_followers_by_source_graph": "New followers by source graph (absolute)", "languages_graph": "Subscriber language graph (pie chart)", "reactions_by_emotion_graph": "A graph containing the number of reactions on posts categorized by emotion", "story_interactions_graph": "A graph containing the number of story views and shares", "story_reactions_by_emotion_graph": "A graph containing the number of reactions on stories categorized by emotion", "recent_posts_interactions": "Detailed statistics about number of views and shares of recently sent messages and stories" } }, "videoSizeEmojiMarkup": { "comment": "An animated profile picture based on a custom emoji sticker.", "arguments": { "emoji_id": "Custom emoji ID: the custom emoji sticker is shown at the center of the profile picture and occupies at most 67% of it.", "background_colors": "1, 2, 3 or 4 RBG-24 colors used to generate a solid (1), gradient (2) or freeform gradient (3, 4) background, similar to how fill wallpapers are generated. The rotation angle for gradient backgrounds is 0." } }, "help.promoData": { "comment": "MTProxy/Public Service Announcement information", "arguments": { "flags": "Flags, see TL conditional fields", "proxy": "MTProxy-related channel", "expires": "Expiry of PSA/MTProxy info", "peer": "MTProxy/PSA peer", "chats": "Chat info", "users": "User info", "psa_type": "PSA type", "psa_message": "PSA message" } }, "videoSizeStickerMarkup": { "comment": "An animated profile picture based on a sticker.", "arguments": { "stickerset": "Stickerset", "sticker_id": "Sticker ID", "background_colors": "1, 2, 3 or 4 RBG-24 colors used to generate a solid (1), gradient (2) or freeform gradient (3, 4) background, similar to how fill wallpapers are generated. The rotation angle for gradient backgrounds is 0." } }, "statsGroupTopPoster": { "comment": "Information about an active user in a supergroup", "arguments": { "user_id": "User ID", "messages": "Number of messages for statistics period in consideration", "avg_chars": "Average number of characters per message" } }, "statsGroupTopAdmin": { "comment": "Information about an active admin in a supergroup", "arguments": { "user_id": "User ID", "deleted": "Number of deleted messages for statistics period in consideration", "kicked": "Number of kicked users for statistics period in consideration", "banned": "Number of banned users for statistics period in consideration" } }, "stats.megagroupStats": { "comment": "Supergroup statistics", "arguments": { "period": "Period in consideration", "members": "Member count change for period in consideration", "messages": "Message number change for period in consideration", "viewers": "Number of users that viewed messages, for range in consideration", "posters": "Number of users that posted messages, for range in consideration", "growth_graph": "Supergroup growth graph (absolute subscriber count)", "members_graph": "Members growth (relative subscriber count)", "new_members_by_source_graph": "New members by source graph", "languages_graph": "Subscriber language graph (pie chart)", "messages_graph": "Message activity graph (stacked bar graph, message type)", "actions_graph": "Group activity graph (deleted, modified messages, blocked users)", "top_hours_graph": "Activity per hour graph (absolute)", "weekdays_graph": "Activity per day of week graph (absolute)", "top_posters": "Info about most active group members", "top_admins": "Info about most active group admins", "top_inviters": "Info about most active group inviters", "users": "Info about users mentioned in statistics" } }, "statsGroupTopInviter": { "comment": "Information about an active supergroup inviter", "arguments": { "user_id": "User ID", "invitations": "Number of invitations for statistics period in consideration" } }, "globalPrivacySettings": { "comment": "Global privacy settings", "arguments": { "flags": "Flags, see TL conditional fields", "archive_and_mute_new_noncontact_peers": "Whether to archive and mute new chats from non-contacts", "keep_archived_unmuted": "Whether unmuted chats will be kept in the Archive chat list when they get a new message.", "keep_archived_folders": "Whether unmuted chats that are always included or pinned in a folder, will be kept in the Archive chat list when they get a new message. Ignored if keep_archived_unmuted is set.", "hide_read_marks": "If this flag is set, the {@link RawInputPrivacyKeyStatusTimestamp} key will also apply to the ability to use {@link messages.RawGetOutboxReadDateRequest} on messages sent to us.
Meaning, users that cannot see our exact last online date due to the current value of the {@link RawInputPrivacyKeyStatusTimestamp} key will receive a 403 USER_PRIVACY_RESTRICTED error when invoking {@link messages.RawGetOutboxReadDateRequest} to fetch the exact read date of a message they sent to us.
The {@link RawUserFull}.read_dates_private flag will be set for users that have this flag enabled.", "new_noncontact_peers_require_premium": "If set, only users that have a premium account, are in our contact list, or already have a private chat with us can write to us; a 403 PRIVACY_PREMIUM_REQUIRED error will be emitted otherwise.
The {@link RawUserFull}.contact_require_premium flag will be set for users that have this flag enabled.
To check whether we can write to a user with this flag enabled, if we haven't yet cached all the required information (for example we don't have the {@link RawUserFull} or history of all users while displaying the chat list in the sharing UI) the {@link users.RawGetIsPremiumRequiredToContactRequest} method may be invoked, passing the list of users currently visible in the UI, returning a list of booleans that directly specify whether we can or cannot write to each user.
Premium users only, non-Premium users will receive a PREMIUM_ACCOUNT_REQUIRED error when trying to enable this flag." } }, "help.countryCode": { "comment": "Country code and phone number pattern of a specific country", "arguments": { "flags": "Flags, see TL conditional fields", "country_code": "ISO country code", "prefixes": "Possible phone prefixes", "patterns": "Phone patterns: for example, XXX XXX XXX" } }, "statsGraphAsync": { "comment": "This channel statistics graph must be generated asynchronously using {@link stats.RawLoadAsyncGraphRequest} to reduce server load", "arguments": { "token": "Token to use for fetching the async graph" } }, "help.countriesListNotModified": { "comment": "The country list has not changed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "videoSize": { "comment": "An animated profile picture in MPEG4 format", "arguments": { "flags": "Flags, see TL conditional fields", "type": "u for animated profile pictures, and v for trimmed and downscaled video previews", "w": "Video width", "h": "Video height", "size": "File size", "video_start_ts": "Timestamp that should be shown as static preview to the user (seconds)" } }, "help.country": { "comment": "Name, ISO code, localized name and phone codes/patterns of a specific country", "arguments": { "flags": "Flags, see TL conditional fields", "hidden": "Whether this country should not be shown in the list", "iso2": "ISO code of country", "default_name": "Name of the country in the country's language", "name": "Name of the country in the user's language, if different from the original name", "country_codes": "Phone codes/patterns" } }, "messageViews": { "comment": "View, forward counter + info about replies of a specific message", "arguments": { "flags": "Flags, see TL conditional fields", "views": "View count of message", "forwards": "Forward count of message", "replies": "Reply and thread information of message" } }, "help.countriesList": { "comment": "Name, ISO code, localized name and phone codes/patterns of all available countries", "arguments": { "countries": "Name, ISO code, localized name and phone codes/patterns of all available countries", "hash": "Hash used for caching, for more info click here" } }, "messages.messageViews": { "comment": "View, forward counter + info about replies", "arguments": { "views": "View, forward counter + info about replies", "chats": "Chats mentioned in constructor", "users": "Users mentioned in constructor" } }, "messageReplyHeader": { "comment": "Message replies and thread information", "arguments": { "flags": "Flags, see TL conditional fields", "reply_to_scheduled": "This is a reply to a scheduled message.", "forum_topic": "Whether this message was sent in a forum topic (except for the General topic).", "quote": "Whether this message is quoting a part of another message.", "reply_to_msg_id": "ID of message to which this message is replying", "reply_to_peer_id": "For replies sent in channel discussion threads of which the current user is not a member, the discussion group ID", "reply_from": "When replying to a message sent by a certain peer to another chat, contains info about the peer that originally sent the message to that other chat.", "reply_media": "When replying to a media sent by a certain peer to another chat, contains the media of the replied-to message.", "reply_to_top_id": "ID of the message that started this message thread", "quote_text": "Used to quote-reply to only a certain section (specified here) of the original message.", "quote_entities": "Message entities for styled text from the quote_text field.", "quote_offset": "Offset of the message quote_text within the original message (in UTF-16 code units)." } }, "messages.discussionMessage": { "comment": "Information about a message thread", "arguments": { "flags": "Flags, see TL conditional fields", "messages": "The messages from which the thread starts. The messages are returned in reverse chronological order (i.e., in order of decreasing message ID).", "max_id": "Message ID of latest reply in this thread", "read_inbox_max_id": "Message ID of latest read incoming message in this thread", "read_outbox_max_id": "Message ID of latest read outgoing message in this thread", "unread_count": "Number of unread messages", "chats": "Chats mentioned in constructor", "users": "Users mentioned in constructor" } }, "messageReplyStoryHeader": { "comment": "Represents a reply to a story", "arguments": { "peer": "Sender of the story.", "story_id": "Story ID" } }, "messageReplies": { "comment": "Info about the comment section of a channel post, or a simple message thread", "arguments": { "flags": "Flags, see TL conditional fields", "comments": "Whether this constructor contains information about the comment section of a channel post, or a simple message thread", "replies": "Contains the total number of replies in this thread or comment section.", "replies_pts": "PTS of the message that started this thread.", "recent_repliers": "For channel post comments, contains information about the last few comment posters for a specific thread, to show a small list of commenter profile pictures in client previews.", "channel_id": "For channel post comments, contains the ID of the associated discussion supergroup", "max_id": "ID of the latest message in this thread or comment section.", "read_max_id": "Contains the ID of the latest read message in this thread or comment section." } }, "stats.messageStats": { "comment": "Message statistics", "arguments": { "views_graph": "Message view graph", "reactions_by_emotion_graph": "A graph containing the number of reactions on stories categorized by emotion" } }, "groupCall": { "comment": "Info about a group call or livestream", "arguments": { "flags": "Flags, see TL conditional fields", "join_muted": "Whether the user should be muted upon joining the call", "can_change_join_muted": "Whether the current user can change the value of the join_muted flag using {@link phone.RawToggleGroupCallSettingsRequest}", "join_date_asc": "Specifies the ordering to use when locally sorting by date and displaying in the UI group call participants.", "schedule_start_subscribed": "Whether we subscribed to the scheduled call", "can_start_video": "Whether you can start streaming video into the call", "record_video_active": "Whether the group call is currently being recorded", "rtmp_stream": "Whether RTMP streams are allowed", "listeners_hidden": "Whether the listeners list is hidden and cannot be fetched using {@link phone.RawGetGroupParticipantsRequest}. The phone.groupParticipants.count and groupCall.participants_count counters will still include listeners.", "id": "Group call ID", "access_hash": "Group call access hash", "participants_count": "Participant count", "title": "Group call title", "stream_dc_id": "DC ID to be used for livestream chunks", "record_start_date": "When was the recording started", "schedule_date": "When is the call scheduled to start", "unmuted_video_count": "Number of people currently streaming video into the call", "unmuted_video_limit": "Maximum number of people allowed to stream video into the call", "version": "Version" } }, "groupCallDiscarded": { "comment": "An ended group call", "arguments": { "id": "Group call ID", "access_hash": "Group call access hash", "duration": "Group call duration" } }, "peerBlocked": { "comment": "Information about a blocked peer", "arguments": { "peer_id": "Peer ID", "date": "When was the peer blocked" } }, "groupCallParticipant": { "comment": "Info about a group call participant", "arguments": { "flags": "Flags, see TL conditional fields", "muted": "Whether the participant is muted", "left": "Whether the participant has left", "can_self_unmute": "Whether the participant can unmute themselves", "just_joined": "Whether the participant has just joined", "versioned": "If set, and {@link RawUpdateGroupCallParticipants}.version < locally stored call.version, info about this participant should be ignored. If (...), and {@link RawUpdateGroupCallParticipants}.version > call.version+1, the participant list should be refetched using {@link phone.RawGetGroupParticipantsRequest}.", "min": "If not set, the volume and muted_by_you fields can be safely used to overwrite locally cached information; otherwise, volume will contain valid information only if volume_by_admin is set both in the cache and in the received constructor.", "muted_by_you": "Whether this participant was muted by the current user", "volume_by_admin": "Whether our volume can only changed by an admin", "self": "Whether this participant is the current user", "video_joined": "Whether this participant is currently broadcasting video", "peer": "Peer information", "date": "When did this participant join the group call", "active_date": "When was this participant last active in the group call", "source": "Source ID", "volume": "Volume, if not set the volume is set to 100%.", "about": "Info about this participant", "raise_hand_rating": "Specifies the UI visualization order of peers with raised hands: peers with a higher rating should be showed first in the list.", "video": "Info about the video stream the participant is currently broadcasting", "presentation": "Info about the screen sharing stream the participant is currently broadcasting" } }, "phone.groupCall": { "comment": "Contains info about a group call, and partial info about its participants.", "arguments": { "call": "Info about the group call", "participants": "A partial list of participants.", "participants_next_offset": "Next offset to use when fetching the remaining participants using {@link phone.RawGetGroupParticipantsRequest}", "chats": "Chats mentioned in the participants vector", "users": "Users mentioned in the participants vector" } }, "inputGroupCall": { "comment": "Points to a specific group call", "arguments": { "id": "Group call ID", "access_hash": "Group call access hash" } }, "phone.groupParticipants": { "comment": "Info about the participants of a group call or livestream", "arguments": { "count": "Number of participants", "participants": "List of participants", "next_offset": "If not empty, the specified list of participants is partial, and more participants can be fetched specifying this parameter as offset in {@link phone.RawGetGroupParticipantsRequest}.", "chats": "Mentioned chats", "users": "Mentioned users", "version": "Version info" } }, "inlineQueryPeerTypeSameBotPM": { "comment": "Peer type: private chat with the bot itself", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inlineQueryPeerTypeChat": { "comment": "Peer type: chat", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inlineQueryPeerTypeBotPM": { "comment": "Peer type: private chat with a bot.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inlineQueryPeerTypeBroadcast": { "comment": "Peer type: channel", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inlineQueryPeerTypeMegagroup": { "comment": "Peer type: supergroup", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.historyImport": { "comment": "ID of a specific chat import session, click here for more info ».", "arguments": { "id": "History import ID" } }, "messages.historyImportParsed": { "comment": "Contains information about a chat export file generated by a foreign chat app, click here for more info.
\nIf neither the pm or group flags are set, the specified chat export was generated from a chat of unknown type.", "arguments": { "flags": "Flags, see TL conditional fields", "pm": "The chat export file was generated from a private chat.", "group": "The chat export file was generated from a group chat.", "title": "Title of the chat." } }, "inlineQueryPeerTypePM": { "comment": "Peer type: private chat", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.affectedFoundMessages": { "comment": "Messages found and affected by changes", "arguments": { "pts": "Event count after generation", "pts_count": "Number of events that were generated", "offset": "If bigger than zero, the request must be repeated to remove more messages", "messages": "Affected message IDs" } }, "messages.exportedChatInvites": { "comment": "Info about chat invites exported by a certain admin.", "arguments": { "count": "Number of invites exported by the admin", "invites": "Exported invites", "users": "Info about the admin" } }, "chatInviteImporter": { "comment": "When and which user joined the chat using a chat invite", "arguments": { "flags": "Flags, see TL conditional fields", "requested": "Whether this user currently has a pending join request »", "via_chatlist": "The participant joined by importing a chat folder deep link ».", "user_id": "The user", "date": "When did the user join", "about": "For users with pending requests, contains bio of the user that requested to join", "approved_by": "The administrator that approved the join request » of the user" } }, "messages.chatInviteImporters": { "comment": "Info about the users that joined the chat using a specific chat invite", "arguments": { "count": "Number of users that joined", "importers": "The users that joined", "users": "The users that joined" } }, "messages.exportedChatInviteReplaced": { "comment": "The specified chat invite was replaced with another one", "arguments": { "invite": "The replaced chat invite", "new_invite": "The invite that replaces the previous invite", "users": "Mentioned users" } }, "phone.joinAsPeers": { "comment": "A list of peers that can be used to join a group call, presenting yourself as a specific user/channel.", "arguments": { "peers": "Peers", "chats": "Chats mentioned in the peers vector", "users": "Users mentioned in the peers vector" } }, "phone.exportedGroupCallInvite": { "comment": "An invite to a group call or livestream", "arguments": { "link": "Invite link" } }, "chatAdminWithInvites": { "comment": "Info about chat invites generated by admins.", "arguments": { "admin_id": "The admin", "invites_count": "Number of invites generated by the admin", "revoked_invites_count": "Number of revoked invites" } }, "messages.checkedHistoryImportPeer": { "comment": "Contains a confirmation text to be shown to the user, upon importing chat history, click here for more info ».", "arguments": { "confirm_text": "A confirmation text to be shown to the user, upon importing chat history »." } }, "messages.exportedChatInvite": { "comment": "Info about a chat invite", "arguments": { "invite": "Info about the chat invite", "users": "Mentioned users" } }, "groupCallParticipantVideoSourceGroup": { "comment": "Describes a group of video synchronization source identifiers", "arguments": { "semantics": "SDP semantics", "sources": "Source IDs" } }, "messages.chatAdminsWithInvites": { "comment": "Info about chat invites generated by admins.", "arguments": { "admins": "Info about chat invites generated by admins.", "users": "Mentioned users" } }, "stickers.suggestedShortName": { "comment": "A suggested short name for a stickerpack", "arguments": { "short_name": "Suggested short name" } }, "botCommandScopeUsers": { "comment": "The specified bot commands will only be valid in all private chats with users.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "groupCallParticipantVideo": { "comment": "Info about a video stream", "arguments": { "flags": "Flags, see TL conditional fields", "paused": "Whether the stream is currently paused", "endpoint": "Endpoint", "source_groups": "Source groups", "audio_source": "Audio source ID" } }, "botCommandScopeChats": { "comment": "The specified bot commands will be valid in all groups and supergroups.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "botCommandScopeDefault": { "comment": "The commands will be valid in all dialogs", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "botCommandScopePeer": { "comment": "The specified bot commands will be valid only in a specific dialog.", "arguments": { "peer": "The dialog" } }, "botCommandScopePeerUser": { "comment": "The specified bot commands will be valid only for a specific user in the specified group or supergroup.", "arguments": { "peer": "The chat", "user_id": "The user" } }, "botCommandScopePeerAdmins": { "comment": "The specified bot commands will be valid for all admins of the specified group or supergroup.", "arguments": { "peer": "The chat" } }, "account.resetPasswordFailedWait": { "comment": "You recently requested a password reset that was canceled, please wait until the specified date before requesting another reset.", "arguments": { "retry_date": "Wait until this date before requesting another reset." } }, "botCommandScopeChatAdmins": { "comment": "The specified bot commands will be valid only for chat administrators, in all groups and supergroups.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.resetPasswordRequestedWait": { "comment": "You successfully requested a password reset, please wait until the specified date before finalizing the reset.", "arguments": { "until_date": "Wait until this date before finalizing the reset." } }, "messages.sponsoredMessagesEmpty": { "comment": "No sponsored messages are available.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "searchResultsCalendarPeriod": { "comment": "Information about found messages sent on a specific day, used to split the messages in {@link messages.RawSearchResultsCalendar} constructors by days.\n\nMultiple searchResultsCalendarPeriod constructors are returned in {@link messages.RawSearchResultsCalendar}, each containing information about the first, last and total number of messages matching the filter that were sent on a specific day.", "arguments": { "date": "The day this object is referring to.", "min_msg_id": "First message ID that was sent on this day.", "max_msg_id": "Last message ID that was sent on this day.", "count": "All messages that were sent on this day." } }, "sponsoredMessage": { "comment": "A sponsored message.", "arguments": { "flags": "Flags, see TL conditional fields", "recommended": "Whether the message needs to be labeled as \"recommended\" instead of \"sponsored\"", "can_report": "Whether this message can be reported as specified here ».", "random_id": "Message ID", "url": "Contains the URL to open when the user clicks on the sponsored message.", "title": "Contains the title of the sponsored message.", "message": "Sponsored message", "entities": "Message entities for styled text in message.", "photo": "If set, contains a custom profile photo bubble that should be displayed for the sponsored message, like for messages sent in groups.", "color": "If set, the sponsored message should use the message accent color » specified in color.", "button_text": "Label of the sponsored message button.", "sponsor_info": "If set, contains additional information about the sponsor to be shown along with the message.", "additional_info": "If set, contains additional information about the sponsored message to be shown along with the message." } }, "messages.sponsoredMessages": { "comment": "A set of sponsored messages associated to a channel", "arguments": { "flags": "Flags, see TL conditional fields", "posts_between": "If set, specifies the minimum number of messages between shown sponsored messages; otherwise, only one sponsored message must be shown after all ordinary messages.", "messages": "Sponsored messages", "chats": "Chats mentioned in the sponsored messages", "users": "Users mentioned in the sponsored messages" } }, "messages.searchResultsPositions": { "comment": "Information about sparse positions of messages", "arguments": { "count": "Total number of found messages", "positions": "List of message positions" } }, "searchResultPosition": { "comment": "Information about a message in a specific position", "arguments": { "msg_id": "Message ID", "date": "When was the message sent", "offset": "0-based message position in the full list of suitable messages" } }, "messages.searchResultsCalendar": { "comment": "Information about found messages sent on a specific day", "arguments": { "flags": "Flags, see TL conditional fields", "inexact": "If set, indicates that the results may be inexact", "count": "Total number of results matching query", "min_date": "Starting timestamp of attached messages", "min_msg_id": "Ending timestamp of attached messages", "offset_id_offset": "Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}.", "periods": "Used to split the messages by days: multiple SearchResultsCalendarPeriod constructors are returned, each containing information about the first, last and total number of messages matching the filter that were sent on a specific day.
This information can be easily used to split the returned messages by day.", "messages": "Messages", "chats": "Mentioned chats", "users": "Mentioned users" } }, "channels.sendAsPeers": { "comment": "A list of peers that can be used to send messages in a specific group", "arguments": { "peers": "Peers that can be used to send messages to the group", "chats": "Mentioned chats", "users": "Mentioned users" } }, "account.resetPasswordOk": { "comment": "The 2FA password was reset successfully.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "users.userFull": { "comment": "Full user information", "arguments": { "full_user": "Full user information", "chats": "Mentioned chats", "users": "Mentioned users" } }, "messageReactions": { "comment": "Message reactions »", "arguments": { "flags": "Flags, see TL conditional fields", "min": "Similar to min objects, used for message reaction » constructors that are the same for all users so they don't have the reactions sent by the current user (you can use {@link messages.RawGetMessagesReactionsRequest} to get the full reaction info).", "can_see_list": "Whether {@link messages.RawGetMessageReactionsListRequest} can be used to see how each specific peer reacted to the message", "reactions_as_tags": "If set or if there are no reactions, all present and future reactions should be treated as message tags, see here » for more info.", "results": "Reactions", "recent_reactions": "List of recent peers and their reactions" } }, "messages.peerSettings": { "comment": "Peer settings", "arguments": { "settings": "Peer settings", "chats": "Mentioned chats", "users": "Mentioned users" } }, "auth.loggedOut": { "comment": "Future auth token » to be used on subsequent authorizations", "arguments": { "flags": "Flags, see TL conditional fields", "future_auth_token": "Future auth token » to be used on subsequent authorizations" } }, "availableReaction": { "comment": "Animations associated with a message reaction", "arguments": { "flags": "Flags, see TL conditional fields", "inactive": "If not set, the reaction can be added to new messages and enabled in chats.", "premium": "Whether this reaction can only be used by Telegram Premium users", "reaction": "Reaction emoji", "title": "Reaction description", "static_icon": "Static icon for the reaction", "appear_animation": "The animated sticker to show when the user opens the reaction dropdown", "select_animation": "The animated sticker to show when the user hovers over the reaction", "activate_animation": "The animated sticker to show when the reaction is chosen and activated", "effect_animation": "The background effect (still an animated sticker) to play under the activate_animation, when the reaction is chosen and activated", "around_animation": "The animation that plays around the button when you press an existing reaction (played together with center_icon).", "center_icon": "The animation of the emoji inside the button when you press an existing reaction (played together with around_animation)." } }, "messages.availableReactionsNotModified": { "comment": "No new reactions are available", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.messageReactionsList": { "comment": "List of peers that reacted to a specific message", "arguments": { "flags": "Flags, see TL conditional fields", "count": "Total number of reactions matching query", "reactions": "List of peers that reacted to a specific message", "chats": "Mentioned chats", "users": "Mentioned users", "next_offset": "If set, indicates the next offset to use to load more results by invoking {@link messages.RawGetMessageReactionsListRequest}." } }, "messages.availableReactions": { "comment": "Animations and metadata associated with message reactions »", "arguments": { "hash": "Hash used for caching, for more info click here", "reactions": "Animations and metadata associated with message reactions »" } }, "phone.groupCallStreamChannels": { "comment": "Info about RTMP streams in a group call or livestream", "arguments": { "channels": "RTMP streams" } }, "messagePeerReaction": { "comment": "How a certain peer reacted to the message", "arguments": { "flags": "Flags, see TL conditional fields", "big": "Whether the specified message reaction » should elicit a bigger and longer reaction", "unread": "Whether the reaction wasn't yet marked as read by the current user", "my": "Starting from layer 159, {@link messages.RawSendReactionRequest} will send reactions from the peer (user or channel) specified using {@link messages.RawSaveDefaultSendAsRequest}.
If set, this flag indicates that this reaction was sent by us, even if the peer doesn't point to the current account.", "peer_id": "Peer that reacted to the message", "date": "When was this reaction added", "reaction": "Reaction emoji" } }, "phone.groupCallStreamRtmpUrl": { "comment": "RTMP URL and stream key to be used in streaming software", "arguments": { "url": "RTMP URL", "key": "Stream key" } }, "groupCallStreamChannel": { "comment": "Info about an RTMP stream in a group call or livestream", "arguments": { "channel": "Channel ID", "scale": "Specifies the duration of the video segment to fetch in milliseconds, by bitshifting 1000 to the right scale times: duration_ms := 1000 >> scale.", "last_timestamp_ms": "Last seen timestamp to easily start fetching livestream chunks using {@link RawInputGroupCallStream}" } }, "attachMenuBotIcon": { "comment": "Represents an attachment menu icon for bot mini apps »", "arguments": { "flags": "Flags, see TL conditional fields", "name": "One of the following values: note that animated icons must be played when the user clicks on the button, activating the bot mini app.

default_static - Default attachment menu icon in SVG format
placeholder_static - Default placeholder for opened Web Apps in SVG format
ios_static - Attachment menu icon in SVG format for the official iOS app
ios_animated - Animated attachment menu icon in TGS format for the official iOS app
android_animated - Animated attachment menu icon in TGS format for the official Android app
macos_animated - Animated attachment menu icon in TGS format for the official native Mac OS app
ios_side_menu_static - Side menu icon in PNG format for the official iOS app
android_side_menu_static - Side menu icon in SVG format for the official android app
macos_side_menu_static - Side menu icon in PNG format for the official native Mac OS app", "icon": "The actual icon file.", "colors": "Attachment menu icon colors." } }, "reactionCount": { "comment": "Reactions", "arguments": { "flags": "Flags, see TL conditional fields", "chosen_order": "If set, indicates that the current user also sent this reaction.
The integer value indicates when was the reaction added: the bigger the value, the newer the reaction.", "reaction": "The reaction.", "count": "Number of users that reacted with this emoji." } }, "attachMenuBot": { "comment": "Represents a bot mini app that can be launched from the attachment/side menu »\n\nAt least one of the show_in_attach_menu or the show_in_side_menu flags will always be set.", "arguments": { "flags": "Flags, see TL conditional fields", "inactive": "If set, before launching the mini app the client should ask the user to add the mini app to the attachment/side menu, and only if the user accepts, after invoking {@link messages.RawToggleBotInAttachMenuRequest} the app should be opened.", "has_settings": "Deprecated flag, can be ignored.", "request_write_access": "Whether the bot would like to send messages to the user.", "show_in_attach_menu": "Whether, when installed, an attachment menu entry should be shown for the Mini App.", "show_in_side_menu": "Whether, when installed, an entry in the main view side menu should be shown for the Mini App.", "side_menu_disclaimer_needed": "If inactive if set and the user hasn't previously accepted the third-party mini apps Terms of Service for this bot, when showing the mini app installation prompt, an additional mandatory checkbox to accept the mini apps TOS and a disclaimer indicating that this Mini App is not affiliated to Telegram should be shown.", "bot_id": "Bot ID", "short_name": "Attachment menu item name", "peer_types": "List of dialog types where this attachment menu entry should be shown", "icons": "List of platform-specific static icons and animations to use for the attachment menu button" } }, "attachMenuBotIconColor": { "comment": "Represents an attachment menu icon color for bot mini apps »", "arguments": { "name": "One of the following values:
light_icon - Color of the attachment menu icon (light mode)
light_text - Color of the attachment menu label, once selected (light mode)
dark_icon - Color of the attachment menu icon (dark mode)
dark_text - Color of the attachment menu label, once selected (dark mode)", "color": "Color in RGB24 format" } }, "attachMenuBotsNotModified": { "comment": "The list of bot mini apps hasn't changed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "attachMenuBots": { "comment": "Represents a list of bot mini apps that can be launched from the attachment menu »", "arguments": { "hash": "Hash used for caching, for more info click here", "bots": "List of bot mini apps that can be launched from the attachment menu »", "users": "Info about related users/bots" } }, "webViewResultUrl": { "comment": "Contains the webview URL with appropriate theme and user info parameters added", "arguments": { "flags": "Flags, see TL conditional fields", "fullsize": "If set, the app must be opened in fullsize mode instead of compact mode.", "query_id": "Webview session ID (only returned by inline button mini apps, menu button mini apps, attachment menu mini apps).", "url": "Webview URL to open" } }, "attachMenuBotsBot": { "comment": "Represents a bot mini app that can be launched from the attachment menu »", "arguments": { "bot": "Represents a bot mini app that can be launched from the attachment menu »
", "users": "Info about related users and bots" } }, "webViewMessageSent": { "comment": "Info about a sent inline webview message", "arguments": { "flags": "Flags, see TL conditional fields", "msg_id": "Message ID" } }, "botMenuButton": { "comment": "Bot menu button that opens a web app when clicked.", "arguments": { "text": "Title to be displayed on the menu button instead of 'Menu'", "url": "URL of a web app to open when the user clicks on the button" } }, "botMenuButtonCommands": { "comment": "Bot menu button that opens the bot command list when clicked.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "botMenuButtonDefault": { "comment": "Placeholder bot menu button never returned to users: see the docs for more info.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.savedRingtonesNotModified": { "comment": "The notification sound list hasn't changed.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.savedRingtones": { "comment": "A list of saved notification sounds", "arguments": { "hash": "Hash used for caching, for more info click here", "ringtones": "Saved notification sounds" } }, "notificationSoundDefault": { "comment": "Indicates the default notification sound should be used", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "notificationSoundNone": { "comment": "No notification sound should be used", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.savedRingtone": { "comment": "The notification sound was already in MP3 format and was saved without any modification", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "notificationSoundRingtone": { "comment": "A specific previously uploaded notification sound should be used", "arguments": { "id": "Document ID of notification sound uploaded using {@link account.RawUploadRingtoneRequest}" } }, "account.savedRingtoneConverted": { "comment": "The notification sound was not in MP3 format and was successfully converted and saved, use the returned Document to refer to the notification sound from now on", "arguments": { "document": "The converted notification sound" } }, "notificationSoundLocal": { "comment": "Indicates a specific local notification sound should be used", "arguments": { "title": "Notification sound title", "data": "Notification sound identifier (arbitrary data used by the client to identify a specific local notification sound)" } }, "attachMenuPeerTypeSameBotPM": { "comment": "The bot attachment menu entry is available in the chat with the bot that offers it", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "attachMenuPeerTypeBotPM": { "comment": "The bot attachment menu entry is available in private chats with other bots (excluding the bot that offers the current attachment menu)", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "attachMenuPeerTypePM": { "comment": "The bot attachment menu entry is available in private chats with other users (not bots)", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "attachMenuPeerTypeBroadcast": { "comment": "The bot attachment menu entry is available in channels", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "attachMenuPeerTypeChat": { "comment": "The bot attachment menu entry is available in groups and supergroups", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputInvoiceMessage": { "comment": "An invoice contained in a {@link RawMessageMediaInvoice} message or paid media ».", "arguments": { "peer": "Chat where the invoice/paid media was sent", "msg_id": "Message ID" } }, "payments.exportedInvoice": { "comment": "Exported invoice deep link", "arguments": { "url": "Exported invoice deep link" } }, "inputInvoiceSlug": { "comment": "An invoice slug taken from an invoice deep link or from the premium_invoice_slug app config parameter »", "arguments": { "slug": "The invoice slug" } }, "inputInvoicePremiumGiftCode": { "comment": "Used if the user wishes to start a channel/supergroup giveaway or send some giftcodes to members of a channel/supergroup, in exchange for boosts.", "arguments": { "purpose": "Should be populated with {@link RawInputStorePaymentPremiumGiveaway} for giveaways and {@link RawInputStorePaymentPremiumGiftCode} for gifts.", "option": "Should be populated with one of the giveaway options returned by {@link payments.RawGetPremiumGiftCodeOptionsRequest}, see the giveaways » documentation for more info." } }, "inputInvoiceStars": { "comment": "Used to top up the Telegram Stars balance of the current account or someone else's account.", "arguments": { "purpose": "Either an {@link RawInputStorePaymentStarsTopup} or an {@link RawInputStorePaymentStarsGift}." } }, "messages.transcribedAudio": { "comment": "Transcribed text from a voice message »", "arguments": { "flags": "Flags, see TL conditional fields", "pending": "Whether the transcription is partial because audio transcription is still in progress, if set the user may receive further {@link RawUpdateTranscribedAudio} updates with the updated transcription.", "transcription_id": "Transcription ID", "text": "Transcripted text", "trial_remains_num": "For non-Premium users, this flag will be set, indicating the remaining transcriptions in the free trial period.", "trial_remains_until_date": "For non-Premium users, this flag will be set, indicating the date when the trial_remains_num counter will be reset to the maximum value of transcribe_audio_trial_weekly_number." } }, "help.premiumPromo": { "comment": "Telegram Premium promotion information\n\nNote that the video_sections+videos fields are a list of videos, and the corresponding premium feature identifiers.
\nThey're equivalent to a section => video dictionary, with keys from video_section and values from videos.
\nThe keys in video_sections correspond to a specific feature identifier, and the associated promotional video should be shown when the associated feature row is clicked.", "arguments": { "status_text": "Description of the current state of the user's Telegram Premium subscription", "status_entities": "Message entities for styled text", "video_sections": "A list of premium feature identifiers », associated to each video", "videos": "A list of videos", "period_options": "Telegram Premium subscription options", "users": "Related user information" } }, "inputStorePaymentPremiumGiftCode": { "comment": "Used to gift Telegram Premium subscriptions only to some specific subscribers of a channel/supergroup or to some of our contacts, see here » for more info on giveaways and gifts.", "arguments": { "flags": "Flags, see TL conditional fields", "users": "The users that will receive the Telegram Premium subscriptions.", "boost_peer": "If set, the gifts will be sent on behalf of a channel/supergroup we are an admin of, which will also assign some boosts to it. Otherwise, the gift will be sent directly from the currently logged in user, and we will gain some extra boost slots. See here » for more info on giveaways and gifts.", "currency": "Three-letter ISO 4217 currency code", "amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." } }, "inputStorePaymentPremiumGiveaway": { "comment": "Used to pay for a giveaway, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "only_new_subscribers": "If set, only new subscribers starting from the giveaway creation date will be able to participate to the giveaway.", "winners_are_visible": "If set, giveaway winners are public and will be listed in a {@link RawMessageMediaGiveawayResults} message that will be automatically sent to the channel once the giveaway ends.", "boost_peer": "The channel/supergroup starting the giveaway, that the user must join to participate, that will receive the giveaway boosts; see here » for more info on giveaways.", "additional_peers": "Additional channels that the user must join to participate to the giveaway can be specified here.", "countries_iso2": "The set of users that can participate to the giveaway can be restricted by passing here an explicit whitelist of up to giveaway_countries_max countries, specified as two-letter ISO 3166-1 alpha-2 country codes.", "prize_description": "Can contain a textual description of additional giveaway prizes.", "random_id": "Random ID to avoid resending the giveaway", "until_date": "The end date of the giveaway, must be at most giveaway_period_max seconds in the future; see here » for more info on giveaways.", "currency": "Three-letter ISO 4217 currency code", "amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." } }, "inputStorePaymentPremiumSubscription": { "comment": "Info about a Telegram Premium purchase", "arguments": { "flags": "Flags, see TL conditional fields", "restore": "Pass true if this is a restore of a Telegram Premium purchase; only for the App Store", "upgrade": "Pass true if this is an upgrade from a monthly subscription to a yearly subscription; only for App Store" } }, "inputStorePaymentStarsTopup": { "comment": "Used to top up the Telegram Stars balance of the current account.", "arguments": { "stars": "Amount of stars to topup", "currency": "Three-letter ISO 4217 currency code", "amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." } }, "inputStorePaymentGiftPremium": { "comment": "Info about a gifted Telegram Premium purchase", "arguments": { "user_id": "The user to which the Telegram Premium subscription was gifted", "currency": "Three-letter ISO 4217 currency code", "amount": "Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." } }, "inputStorePaymentStarsGift": { "comment": "Used to gift Telegram Stars to a friend.", "arguments": { "user_id": "The user to which the stars should be gifted.", "stars": "Amount of stars to gift", "currency": "Three-letter ISO 4217 currency code", "amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." } }, "premiumGiftOption": { "comment": "Telegram Premium gift option", "arguments": { "flags": "Flags, see TL conditional fields", "months": "Duration of gifted Telegram Premium subscription", "currency": "Three-letter ISO 4217 currency code", "amount": "Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "bot_url": "An invoice deep link » to an invoice for in-app payment, using the official Premium bot; may be empty if direct payment isn't available.", "store_product": "An identifier for the App Store/Play Store product associated with the Premium gift." } }, "paymentFormMethod": { "comment": "Represents an additional payment method", "arguments": { "url": "URL to open in a webview to process the payment", "title": "Payment method description" } }, "emojiStatus": { "comment": "An emoji status", "arguments": { "document_id": "Custom emoji document ID" } }, "emojiStatusUntil": { "comment": "An emoji status valid until the specified date", "arguments": { "document_id": "Custom emoji document ID", "until": "This status is valid until this date" } }, "account.emojiStatuses": { "comment": "A list of emoji statuses", "arguments": { "hash": "Hash used for caching, for more info click here", "statuses": "Emoji statuses" } }, "reactionEmpty": { "comment": "No reaction", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "reactionEmoji": { "comment": "Normal emoji message reaction", "arguments": { "emoticon": "Emoji" } }, "account.emojiStatusesNotModified": { "comment": "The server-side list of emoji statuses hasn't changed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "chatReactionsSome": { "comment": "Some reactions are allowed", "arguments": { "reactions": "Allowed set of reactions: the reactions_in_chat_max configuration field indicates the maximum number of reactions that can be specified in this field." } }, "reactionCustomEmoji": { "comment": "Custom emoji message reaction", "arguments": { "document_id": "Custom emoji document ID" } }, "chatReactionsNone": { "comment": "No reactions are allowed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "chatReactionsAll": { "comment": "All reactions or all non-custom reactions are allowed", "arguments": { "flags": "Flags, see TL conditional fields", "allow_custom": "Whether to allow custom reactions" } }, "messages.reactionsNotModified": { "comment": "The server-side list of message reactions hasn't changed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "emailVerificationCode": { "comment": "Email verification code", "arguments": { "code": "Received verification code" } }, "emailVerificationGoogle": { "comment": "Google ID email verification token", "arguments": { "token": "Token" } }, "emailVerifyPurposeLoginSetup": { "comment": "Email verification purpose: setup login email", "arguments": { "phone_number": "Phone number", "phone_code_hash": "Phone code hash as specified by the documentation" } }, "emailVerifyPurposeLoginChange": { "comment": "Email verification purpose: change login email", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "emojiStatusEmpty": { "comment": "No emoji status is set", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "emailVerifyPurposePassport": { "comment": "Verify an email for use in telegram passport", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.reactions": { "comment": "List of message reactions", "arguments": { "hash": "Hash used for caching, for more info click here", "reactions": "Reactions" } }, "emailVerificationApple": { "comment": "Apple ID email verification token", "arguments": { "token": "Token" } }, "account.emailVerifiedLogin": { "comment": "The email was verified correctly, and a login code was just sent to it.", "arguments": { "email": "The verified email address.", "sent_code": "Info about the sent login code" } }, "premiumSubscriptionOption": { "comment": "Describes a Telegram Premium subscription option", "arguments": { "flags": "Flags, see TL conditional fields", "current": "Whether this subscription option is currently in use.", "can_purchase_upgrade": "Whether this subscription option can be used to upgrade the existing Telegram Premium subscription. When upgrading Telegram Premium subscriptions bought through stores, make sure that the store transaction ID is equal to transaction, to avoid upgrading someone else's account, if the client is currently logged into multiple accounts.", "transaction": "Identifier of the last in-store transaction for the currently used subscription on the current account.", "months": "Duration of subscription in months", "currency": "Three-letter ISO 4217 currency code", "amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "bot_url": "Deep link used to initiate payment", "store_product": "Store product ID, only for official apps" } }, "account.emailVerified": { "comment": "The email was verified correctly.", "arguments": { "email": "The verified email address." } }, "sendAsPeer": { "comment": "Indicates a peer that can be used to send messages", "arguments": { "flags": "Flags, see TL conditional fields", "premium_required": "Whether a Telegram Premium account is required to send messages as this peer", "peer": "Peer" } }, "stickerKeyword": { "comment": "Keywords for a certain sticker", "arguments": { "document_id": "Sticker ID", "keyword": "Keywords" } }, "messageExtendedMediaPreview": { "comment": "Paid media preview for not yet purchased paid media, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "w": "Width", "h": "Height", "thumb": "Extremely low resolution thumbnail.", "video_duration": "Video duration for videos." } }, "messageExtendedMedia": { "comment": "Already purchased paid media, see here » for more info.", "arguments": { "media": "The media we purchased." } }, "username": { "comment": "Contains information about a username.", "arguments": { "flags": "Flags, see TL conditional fields", "editable": "Whether the username is editable, meaning it wasn't bought on fragment.", "active": "Whether the username is active.", "username": "The username." } }, "forumTopicDeleted": { "comment": "Represents a deleted forum topic.", "arguments": { "id": "The ID of the deleted forum topic." } }, "forumTopic": { "comment": "Represents a forum topic.", "arguments": { "flags": "Flags, see TL conditional fields", "my": "Whether the topic was created by the current user", "closed": "Whether the topic is closed (no messages can be sent to it)", "pinned": "Whether the topic is pinned", "short": "Whether this constructor is a reduced version of the full topic information.
If set, only the my, closed, id, date, title, icon_color, icon_emoji_id and from_id parameters will contain valid information.
Reduced info is usually only returned in topic-related admin log events » and in the {@link messages.RawChannelMessages} constructor: if needed, full information can be fetched using {@link channels.RawGetForumTopicsByIDRequest}.", "hidden": "Whether the topic is hidden (only valid for the \"General\" topic, id=1)", "id": "Topic ID", "date": "Topic creation date", "title": "Topic title", "icon_color": "If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F.", "icon_emoji_id": "ID of the custom emoji used as topic icon.", "top_message": "ID of the last message that was sent to this topic", "read_inbox_max_id": "Position up to which all incoming messages are read.", "read_outbox_max_id": "Position up to which all outgoing messages are read.", "unread_count": "Number of unread messages", "unread_mentions_count": "Number of unread mentions", "unread_reactions_count": "Number of unread reactions to messages you sent", "from_id": "ID of the peer that created the topic", "notify_settings": "Notification settings", "draft": "Message draft" } }, "defaultHistoryTTL": { "comment": "Contains info about the default value of the Time-To-Live setting, applied to all new chats.", "arguments": { "period": "Time-To-Live setting applied to all new chats." } }, "exportedContactToken": { "comment": "Describes a temporary profile link.", "arguments": { "url": "The temporary profile link.", "expires": "Its expiration date" } }, "messages.forumTopics": { "comment": "Contains information about multiple forum topics", "arguments": { "flags": "Flags, see TL conditional fields", "order_by_create_date": "Whether the returned topics are ordered by creation date; if set, pagination by offset_date should use {@link RawForumTopic}.date; otherwise topics are ordered by the last message date, so paginate by the date of the message referenced by {@link RawForumTopic}.top_message.", "count": "Total number of topics matching query; may be more than the topics contained in topics, in which case pagination is required.", "topics": "Forum topics", "messages": "Related messages (contains the messages mentioned by {@link RawForumTopic}.top_message).", "chats": "Related chats", "users": "Related users", "pts": "Event count after generation" } }, "requestPeerTypeUser": { "comment": "Choose a user.", "arguments": { "flags": "Flags, see TL conditional fields", "bot": "Whether to allow choosing only bots.", "premium": "Whether to allow choosing only Premium users." } }, "requestPeerTypeChat": { "comment": "Choose a chat or supergroup", "arguments": { "flags": "Flags, see TL conditional fields", "creator": "Whether to allow only choosing chats or supergroups that were created by the current user.", "bot_participant": "Whether to allow only choosing chats or supergroups where the bot is a participant.", "has_username": "If specified, allows only choosing channels with or without a username, according to the value of Bool.", "forum": "If specified, allows only choosing chats or supergroups that are or aren't forums, according to the value of Bool.", "user_admin_rights": "If specified, allows only choosing chats or supergroups where the current user is an admin with at least the specified admin rights.", "bot_admin_rights": "If specified, allows only choosing chats or supergroups where the bot is an admin with at least the specified admin rights." } }, "requestPeerTypeBroadcast": { "comment": "Choose a channel", "arguments": { "flags": "Flags, see TL conditional fields", "creator": "Whether to allow only choosing channels that were created by the current user.", "has_username": "If specified, allows only choosing channels with or without a username, according to the value of Bool.", "user_admin_rights": "If specified, allows only choosing channels where the current user is an admin with at least the specified admin rights.", "bot_admin_rights": "If specified, allows only choosing channels where the bot is an admin with at least the specified admin rights." } }, "emojiListNotModified": { "comment": "The list of custom emojis hasn't changed.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "emojiList": { "comment": "Represents a list of custom emojis.", "arguments": { "hash": "Hash used for caching, for more info click here", "document_id": "Custom emoji IDs" } }, "emojiGroupGreeting": { "comment": "Represents an emoji category, that should be moved to the top of the list when choosing a sticker for a business introduction", "arguments": { "title": "Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on...", "icon_emoji_id": "A single custom emoji used as preview for the category.", "emoticons": "A list of UTF-8 emojis, matching the category." } }, "emojiGroup": { "comment": "Represents an emoji category.", "arguments": { "title": "Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on...", "icon_emoji_id": "A single custom emoji used as preview for the category.", "emoticons": "A list of UTF-8 emojis, matching the category." } }, "textWithEntities": { "comment": "Styled text with message entities", "arguments": { "text": "Text", "entities": "Message entities for styled text" } }, "messages.emojiGroupsNotModified": { "comment": "The list of emoji categories hasn't changed.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.emojiGroups": { "comment": "Represents a list of emoji categories.", "arguments": { "hash": "Hash used for caching, for more info click here", "groups": "A list of emoji categories." } }, "messages.translateResult": { "comment": "Translated text with entities", "arguments": { "result": "Text+entities, for each input message." } }, "autoSaveSettings": { "comment": "Media autosave settings", "arguments": { "flags": "Flags, see TL conditional fields", "photos": "Whether photos should be autosaved to the gallery.", "videos": "Whether videos should be autosaved to the gallery.", "video_max_size": "If set, specifies a size limit for autosavable videos" } }, "emojiGroupPremium": { "comment": "An emoji category, used to select all Premium-only stickers (i.e. those with a Premium effect »)/Premium-only custom emojis (i.e. those where the {@link RawDocumentAttributeCustomEmoji}.free flag is not set)", "arguments": { "title": "Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on...", "icon_emoji_id": "A single custom emoji used as preview for the category." } }, "account.autoSaveSettings": { "comment": "Contains media autosave settings", "arguments": { "users_settings": "Default media autosave settings for private chats", "chats_settings": "Default media autosave settings for groups and supergroups", "broadcasts_settings": "Default media autosave settings for channels", "exceptions": "Peer-specific granular autosave settings", "chats": "Chats mentioned in the peer-specific granular autosave settings", "users": "Users mentioned in the peer-specific granular autosave settings" } }, "autoSaveException": { "comment": "Peer-specific media autosave settings", "arguments": { "peer": "The peer", "settings": "Media autosave settings" } }, "help.appConfigNotModified": { "comment": "The client configuration parameters haven't changed", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputBotAppID": { "comment": "Used to fetch information about a direct link Mini App by its ID", "arguments": { "id": "direct link Mini App ID.", "access_hash": "Access hash, obtained from the {@link RawBotApp} constructor." } }, "help.appConfig": { "comment": "Contains various client configuration parameters", "arguments": { "hash": "Hash used for caching, for more info click here", "config": "Client configuration parameters" } }, "inputBotAppShortName": { "comment": "Used to fetch information about a direct link Mini App by its short name", "arguments": { "bot_id": "ID of the bot that owns the bot mini app", "short_name": "Short name, obtained from a Direct Mini App deep link" } }, "messages.botApp": { "comment": "Contains information about a direct link Mini App", "arguments": { "flags": "Flags, see TL conditional fields", "inactive": "Whether the web app was never used by the user, and confirmation must be asked from the user before opening it.", "request_write_access": "The bot is asking permission to send messages to the user: if the user agrees, set the write_allowed flag when invoking {@link messages.RawRequestAppWebViewRequest}.", "has_settings": "Deprecated flag, can be ignored.", "app": "Bot app information" } }, "botAppNotModified": { "comment": "Bot app info hasn't changed.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "readParticipantDate": { "comment": "Contains info about when a certain participant has read a message", "arguments": { "user_id": "User ID", "date": "When the user read the message" } }, "inputChatlistDialogFilter": { "comment": "Folder ID", "arguments": { "filter_id": "Folder ID" } }, "chatlists.exportedChatlistInvite": { "comment": "Info about an exported chat folder deep link ».", "arguments": { "filter": "Folder ID", "invite": "The exported chat folder deep link »." } }, "botApp": { "comment": "Contains information about a direct link Mini App.", "arguments": { "flags": "Flags, see TL conditional fields", "id": "bot mini app ID", "access_hash": "bot mini app access hash", "short_name": "bot mini app short name, used to generate Direct Mini App deep links.", "title": "bot mini app title.", "description": "bot mini app description.", "photo": "bot mini app photo.", "document": "bot mini app animation.", "hash": "Hash to pass to {@link messages.RawGetBotAppRequest}, to avoid refetching bot app info if it hasn't changed." } }, "exportedChatlistInvite": { "comment": "Exported chat folder deep link ».", "arguments": { "flags": "Flags, see TL conditional fields", "title": "Name of the link", "url": "The chat folder deep link ».", "peers": "Peers to import" } }, "chatlists.exportedInvites": { "comment": "Info about multiple chat folder deep links ».", "arguments": { "invites": "The chat folder deep links ».", "chats": "Related chat information", "users": "Related user information" } }, "chatlists.chatlistInviteAlready": { "comment": "Updated info about a chat folder deep link » we already imported.", "arguments": { "filter_id": "ID of the imported folder", "missing_peers": "New peers to be imported", "already_peers": "Peers that were already imported", "chats": "Related chat information", "users": "Related user information" } }, "inlineBotWebView": { "comment": "Specifies an inline mode mini app button, shown on top of the inline query results list.", "arguments": { "text": "Text of the button", "url": "Webapp URL" } }, "chatlists.chatlistInvite": { "comment": "Info about a chat folder deep link ».", "arguments": { "flags": "Flags, see TL conditional fields", "title": "Name of the link", "emoticon": "Emoji to use as icon for the folder.", "peers": "Supergroups and channels to join", "chats": "Related chat information", "users": "Related user information" } }, "bots.botInfo": { "comment": "Localized information about a bot.", "arguments": { "name": "Bot name", "about": "Bot about text", "description": "Bot description" } }, "messagePeerVoteMultiple": { "comment": "How a peer voted in a multiple-choice poll", "arguments": { "peer": "Peer ID", "options": "Options chosen by the peer", "date": "When did the peer cast their votes" } }, "messagePeerVoteInputOption": { "comment": "How a peer voted in a poll (reduced constructor, returned if an option was provided to {@link messages.RawGetPollVotesRequest})", "arguments": { "peer": "The peer that voted for the queried option", "date": "When did the peer cast the vote" } }, "chatlists.chatlistUpdates": { "comment": "Updated information about a chat folder deep link ».", "arguments": { "missing_peers": "New peers to join", "chats": "Related chat information", "users": "Related user information" } }, "storyViews": { "comment": "Aggregated view and reaction information of a story.", "arguments": { "flags": "Flags, see TL conditional fields", "has_viewers": "If set, indicates that the viewers list is currently viewable, and was not yet deleted because the story has expired while the user didn't have a Premium account.", "views_count": "View counter of the story", "forwards_count": "Forward counter of the story", "reactions": "All reactions sent to this story", "reactions_count": "Number of reactions added to the story", "recent_viewers": "User IDs of some recent viewers of the story" } }, "storyItemDeleted": { "comment": "Represents a previously active story, that was deleted", "arguments": { "id": "Story ID" } }, "storyItemSkipped": { "comment": "Represents an active story, whose full information was omitted for space and performance reasons; use {@link stories.RawGetStoriesByIDRequest} to fetch full info about the skipped story when and if needed.", "arguments": { "flags": "Flags, see TL conditional fields", "close_friends": "Whether this story can only be viewed by our close friends, see here » for more info", "id": "Story ID", "date": "When was the story posted.", "expire_date": "When does the story expire." } }, "storyItem": { "comment": "Represents a story.", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Whether this story is pinned on the user's profile", "public": "Whether this story is public and can be viewed by everyone", "close_friends": "Whether this story can only be viewed by our close friends, see here » for more info", "min": "Full information about this story was omitted for space and performance reasons; use {@link stories.RawGetStoriesByIDRequest} to fetch full info about this story when and if needed.", "noforwards": "Whether this story is protected and thus cannot be forwarded; clients should also prevent users from saving attached media (i.e. videos should only be streamed, photos should be kept in RAM, et cetera).", "edited": "Indicates whether the story was edited.", "contacts": "Whether this story can only be viewed by our contacts", "selected_contacts": "Whether this story can only be viewed by a select list of our contacts", "out": "indicates whether we sent this story.", "id": "ID of the story.", "date": "When was the story posted.", "from_id": "Sender of the story.", "fwd_from": "For reposted stories », contains info about the original story.", "expire_date": "When does the story expire.", "caption": "Story caption.", "entities": "Message entities for styled text", "media": "Story media.", "media_areas": "List of media areas, see here » for more info on media areas.", "privacy": "Privacy rules indicating who can and can't view this story", "views": "View date and reaction information", "sent_reaction": "The reaction we sent." } }, "stories.allStoriesNotModified": { "comment": "The list of active (or active and hidden) stories has not changed.", "arguments": { "flags": "Flags, see TL conditional fields", "state": "State to use to ask for updates", "stealth_mode": "Current stealth mode information" } }, "storyView": { "comment": "Story view date and reaction information", "arguments": { "flags": "Flags, see TL conditional fields", "blocked": "Whether we have completely blocked this user, including from viewing more of our stories.", "blocked_my_stories_from": "Whether we have blocked this user from viewing more of our stories.", "user_id": "The user that viewed the story", "date": "When did the user view the story", "reaction": "If present, contains the reaction that the user left on the story" } }, "storyViewPublicForward": { "comment": "A certain peer has forwarded the story as a message to a public chat or channel.", "arguments": { "flags": "Flags, see TL conditional fields", "blocked": "Whether we have completely blocked this user, including from viewing more of our stories.", "blocked_my_stories_from": "Whether we have blocked this user from viewing more of our stories.", "message": "The message with the forwarded story." } }, "messagePeerVote": { "comment": "How a peer voted in a poll", "arguments": { "peer": "Peer ID", "option": "The option chosen by the peer", "date": "When did the peer cast the vote" } }, "storyViewPublicRepost": { "comment": "A certain peer has reposted the story.", "arguments": { "flags": "Flags, see TL conditional fields", "blocked": "Whether we have completely blocked this user, including from viewing more of our stories.", "blocked_my_stories_from": "Whether we have blocked this user from viewing more of our stories.", "peer_id": "The peer that reposted the story.", "story": "The reposted story." } }, "stories.stories": { "comment": "List of stories", "arguments": { "flags": "Flags, see TL conditional fields", "count": "Total number of stories that can be fetched", "stories": "Stories", "pinned_to_top": "IDs of pinned stories.", "chats": "Mentioned chats", "users": "Mentioned users" } }, "stories.allStories": { "comment": "Full list of active (or active and hidden) stories.", "arguments": { "flags": "Flags, see TL conditional fields", "has_more": "Whether more results can be fetched as described here ».", "count": "Total number of active (or active and hidden) stories", "state": "State to use for pagination", "peer_stories": "Stories", "chats": "Mentioned chats", "users": "Mentioned users", "stealth_mode": "Current stealth mode information" } }, "stories.storyViewsList": { "comment": "Reaction and view counters for a story", "arguments": { "flags": "Flags, see TL conditional fields", "count": "Total number of results that can be fetched", "views_count": "Total number of story views", "forwards_count": "Total number of story forwards/reposts", "reactions_count": "Number of reactions that were added to the story", "views": "Story view date and reaction information", "chats": "Mentioned chats", "users": "Mentioned users", "next_offset": "Offset for pagination" } }, "stories.storyViews": { "comment": "Reaction and view counters for a list of stories", "arguments": { "views": "View date and reaction information of multiple stories", "users": "Mentioned users" } }, "inputReplyToMessage": { "comment": "Reply to a message.", "arguments": { "flags": "Flags, see TL conditional fields", "reply_to_msg_id": "The message ID to reply to.", "top_msg_id": "This field must contain the topic ID only when replying to messages in forum topics different from the \"General\" topic (i.e. reply_to_msg_id is set and reply_to_msg_id != topicID and topicID != 1).
If the replied-to message is deleted before the method finishes execution, the value in this field will be used to send the message to the correct topic, instead of the \"General\" topic.", "reply_to_peer_id": "Used to reply to messages sent to another chat (specified here), can only be used for non-protected chats and messages.", "quote_text": "Used to quote-reply to only a certain section (specified here) of the original message. The maximum UTF-8 length for quotes is specified in the quote_length_max config key.", "quote_entities": "Message entities for styled text from the quote_text field.", "quote_offset": "Offset of the message quote_text within the original message (in UTF-16 code units)." } }, "exportedStoryLink": { "comment": "Represents a story deep link.", "arguments": { "link": "The story deep link." } }, "mediaAreaCoordinates": { "comment": "Coordinates and size of a clicable rectangular area on top of a story.", "arguments": { "flags": "Flags, see TL conditional fields", "x": "The abscissa of the rectangle's center, as a percentage of the media width (0-100).", "y": "The ordinate of the rectangle's center, as a percentage of the media height (0-100).", "w": "The width of the rectangle, as a percentage of the media width (0-100).", "h": "The height of the rectangle, as a percentage of the media height (0-100).", "rotation": "Clockwise rotation angle of the rectangle, in degrees (0-360).", "radius": "The radius of the rectangle corner rounding, as a percentage of the media width." } }, "storiesStealthMode": { "comment": "Information about the current stealth mode session.", "arguments": { "flags": "Flags, see TL conditional fields", "active_until_date": "The date up to which stealth mode will be active.", "cooldown_until_date": "The date starting from which the user will be allowed to re-enable stealth mode again." } }, "mediaAreaGeoPoint": { "comment": "Represents a geolocation tag attached to a story.", "arguments": { "flags": "Flags, see TL conditional fields", "coordinates": "The size and position of the media area corresponding to the location sticker on top of the story media.", "geo": "Coordinates of the geolocation tag.", "address": "Optional textual representation of the address." } }, "mediaAreaChannelPost": { "comment": "Represents a channel post.", "arguments": { "coordinates": "The size and location of the media area corresponding to the location sticker on top of the story media.", "channel_id": "The channel that posted the message", "msg_id": "ID of the channel message" } }, "inputReplyToStory": { "comment": "Reply to a story.", "arguments": { "peer": "Sender of the story", "story_id": "ID of the story to reply to." } }, "mediaAreaUrl": { "comment": "Represents a URL media area.", "arguments": { "coordinates": "The size and location of the media area corresponding to the URL button on top of the story media.", "url": "URL to open when clicked." } }, "inputMediaAreaChannelPost": { "comment": "Represents a channel post", "arguments": { "coordinates": "The size and location of the media area corresponding to the location sticker on top of the story media.", "channel": "The channel that posted the message", "msg_id": "ID of the channel message" } }, "mediaAreaSuggestedReaction": { "comment": "Represents a reaction bubble.", "arguments": { "flags": "Flags, see TL conditional fields", "dark": "Whether the reaction bubble has a dark background.", "flipped": "Whether the reaction bubble is mirrored (see here » for more info).", "coordinates": "The coordinates of the media area corresponding to the reaction button.", "reaction": "The reaction that should be sent when this area is clicked." } }, "mediaAreaVenue": { "comment": "Represents a location tag attached to a story, with additional venue information.", "arguments": { "coordinates": "The size and location of the media area corresponding to the location sticker on top of the story media.", "geo": "Coordinates of the venue", "title": "Venue name", "address": "Address", "provider": "Venue provider: currently only \"foursquare\" and \"gplaces\" need to be supported.", "venue_id": "Venue ID in the provider's database", "venue_type": "Venue type in the provider's database" } }, "stories.peerStories": { "comment": "Active story list of a specific peer.", "arguments": { "stories": "Stories", "chats": "Mentioned chats", "users": "Mentioned users" } }, "inputMediaAreaVenue": { "comment": "Represents a location tag attached to a story, with additional venue information.", "arguments": { "coordinates": "The size and location of the media area corresponding to the location sticker on top of the story media.", "query_id": "The query_id from {@link messages.RawBotResults}, see here » for more info.", "result_id": "The id of the chosen result, see here » for more info." } }, "messages.webPage": { "comment": "Represents an Instant View webpage.", "arguments": { "webpage": "The instant view webpage.", "chats": "Chats mentioned in the webpage.", "users": "Users mentioned in the webpage." } }, "mediaAreaWeather": { "comment": "Represents a weather widget ».", "arguments": { "coordinates": "The size and location of the media area corresponding to the widget on top of the story media.", "emoji": "Weather emoji, should be rendered as an animated emoji.", "temperature_c": "Temperature in degrees Celsius.", "color": "ARGB background color." } }, "premiumGiftCodeOption": { "comment": "Contains info about a giveaway/gift option.", "arguments": { "flags": "Flags, see TL conditional fields", "users": "Number of users which will be able to activate the gift codes.", "months": "Duration in months of each gifted Telegram Premium subscription.", "store_product": "Identifier of the store product associated with the option, official apps only.", "store_quantity": "Number of times the store product must be paid", "currency": "Three-letter ISO 4217 currency code", "amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." } }, "peerStories": { "comment": "Stories associated to a peer", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "The peer", "max_read_id": "If set, contains the ID of the maximum read story", "stories": "Stories" } }, "payments.giveawayInfo": { "comment": "Contains info about an ongoing giveaway.\n\nIf neither the participating, joined_too_early_date, admin_disallowed_chat_id or disallowed_country flags are set, the user is not currently participating in the giveaway but could participate by joining all the channels specified in the {@link RawMessageMediaGiveaway}.channels field.", "arguments": { "flags": "Flags, see TL conditional fields", "participating": "The current user is participating in the giveaway.", "preparing_results": "If set, the giveaway has ended and the results are being prepared.", "start_date": "When was the giveaway started", "joined_too_early_date": "The current user can't participate in the giveaway, because they were already a member of the channel when the giveaway started, and the only_new_subscribers was set when starting the giveaway.", "admin_disallowed_chat_id": "If set, the current user can't participate in the giveaway, because they are an administrator in one of the channels (ID specified in this flag) that created the giveaway.", "disallowed_country": "If set, the current user can't participate in this giveaway, because their phone number is from the specified disallowed country (specified as a two-letter ISO 3166-1 alpha-2 country code)." } }, "prepaidGiveaway": { "comment": "Contains info about a prepaid giveaway ».", "arguments": { "id": "Prepaid giveaway ID.", "months": "Duration in months of each gifted Telegram Premium subscription.", "quantity": "Number of given away Telegram Premium subscriptions.", "date": "Payment date." } }, "payments.giveawayInfoResults": { "comment": "A giveaway has ended.", "arguments": { "flags": "Flags, see TL conditional fields", "winner": "Whether we're one of the winners of this giveaway.", "refunded": "Whether the giveaway was canceled and was fully refunded.", "start_date": "Start date of the giveaway", "gift_code_slug": "If we're one of the winners of this giveaway, contains the Premium gift code, see here » for more info on the full giveaway flow.", "finish_date": "End date of the giveaway. May be bigger than the end date specified in parameters of the giveaway.", "winners_count": "Number of winners in the giveaway", "activated_count": "Number of winners, which activated their gift codes." } }, "payments.checkedGiftCode": { "comment": "Contains info about a Telegram Premium giftcode link.", "arguments": { "flags": "Flags, see TL conditional fields", "via_giveaway": "Whether this giftcode was created by a giveaway.", "from_id": "The peer that created the gift code.", "giveaway_msg_id": "Message ID of the giveaway in the channel specified in from_id.", "to_id": "The destination user of the gift.", "date": "Creation date of the gift code.", "months": "Duration in months of the gifted Telegram Premium subscription.", "used_date": "When was the giftcode imported, if it was imported.", "chats": "Mentioned chats", "users": "Mentioned users" } }, "storyFwdHeader": { "comment": "Contains info about the original poster of a reposted story.", "arguments": { "flags": "Flags, see TL conditional fields", "modified": "Whether the story media was modified before reposting it (for example by overlaying a round video with a reaction).", "from": "Peer that originally posted the story; will be empty for stories forwarded from a user with forwards privacy enabled, in which case from_name will be set, instead.", "from_name": "Will be set for stories forwarded from a user with forwards privacy enabled, in which case from will also be empty.", "story_id": ", contains the story ID" } }, "boost": { "comment": "Info about one or more boosts applied by a specific user.", "arguments": { "flags": "Flags, see TL conditional fields", "gift": "Whether this boost was applied because the channel/supergroup directly gifted a subscription to the user.", "giveaway": "Whether this boost was applied because the user was chosen in a giveaway started by the channel/supergroup.", "unclaimed": "If set, the user hasn't yet invoked {@link payments.RawApplyGiftCodeRequest} to claim a subscription gifted directly or in a giveaway by the channel.", "id": "Unique ID for this set of boosts.", "user_id": "ID of the user that applied the boost.", "giveaway_msg_id": "The message ID of the giveaway", "date": "When was the boost applied", "expires": "When does the boost expire", "used_gift_slug": "The created Telegram Premium gift code, only set if either gift or giveaway are set AND it is either a gift code for the currently logged in user or if it was already claimed.", "multiplier": "If set, this boost counts as multiplier boosts, otherwise it counts as a single boost." } }, "premium.boostsStatus": { "comment": "Contains info about the current boost status of a peer.", "arguments": { "flags": "Flags, see TL conditional fields", "my_boost": "Whether we're currently boosting this channel/supergroup, my_boost_slots will also be set.", "level": "The current boost level of the channel/supergroup.", "current_level_boosts": "The number of boosts acquired so far in the current level.", "boosts": "Total number of boosts acquired so far.", "gift_boosts": "The number of boosts acquired from created Telegram Premium gift codes and giveaways; only returned to channel/supergroup admins.", "next_level_boosts": "Total number of boosts needed to reach the next level; if absent, the next level isn't available.", "premium_audience": "Only returned to channel/supergroup admins: contains the approximated number of Premium users subscribed to the channel/supergroup, related to the total number of subscribers.", "boost_url": "Boost deep link » that can be used to boost the chat.", "prepaid_giveaways": "A list of prepaid giveaways available for the chat; only returned to channel/supergroup admins.", "my_boost_slots": "Indicates which of our boost slots we've assigned to this peer (populated if my_boost is set)." } }, "premium.boostsList": { "comment": "List of boosts that were applied to a peer by multiple users.", "arguments": { "flags": "Flags, see TL conditional fields", "count": "Total number of results", "boosts": "Boosts", "next_offset": "Offset that can be used for pagination.", "users": "Mentioned users" } }, "premium.myBoosts": { "comment": "A list of peers we are currently boosting, and how many boost slots we have left.", "arguments": { "my_boosts": "Info about boosted peers and remaining boost slots.", "chats": "Referenced chats", "users": "Referenced users" } }, "myBoost": { "comment": "Contains information about a single boost slot ».", "arguments": { "flags": "Flags, see TL conditional fields", "slot": "Boost slot ID »", "peer": "If set, indicates this slot is currently occupied, i.e. we are boosting this peer.
Note that we can assign multiple boost slots to the same peer.", "date": "When (unixtime) we started boosting the peer, 0 otherwise.", "expires": "Indicates the (unixtime) expiration date of the boost in peer (0 if peer is not set).", "cooldown_until_date": "If peer is set, indicates the (unixtime) date after which this boost can be reassigned to another channel." } }, "stats.storyStats": { "comment": "Contains statistics about a story.", "arguments": { "views_graph": "A graph containing the number of story views and shares", "reactions_by_emotion_graph": "A bar graph containing the number of story reactions categorized by \"emotion\" (i.e. Positive, Negative, Other, etc...)" } }, "publicForwardMessage": { "comment": "Contains info about a forward of a story as a message.", "arguments": { "message": "Info about the message with the reposted story." } }, "postInteractionCountersMessage": { "comment": "Interaction counters for a message.", "arguments": { "msg_id": "Message ID", "views": "Number of views", "forwards": "Number of forwards to public channels", "reactions": "Number of reactions" } }, "publicForwardStory": { "comment": "Contains info about a forward of a story as a repost by a public channel.", "arguments": { "peer": "The channel that reposted the story.", "story": "The reposted story (may be different from the original story)." } }, "help.peerColorSet": { "comment": "Represents a color palette that can be used in message accents ».", "arguments": { "colors": "A list of 1-3 colors in RGB format, describing the accent color." } }, "help.peerColorProfileSet": { "comment": "Represents a color palette that can be used in profile pages ».", "arguments": { "palette_colors": "A list of 1-2 colors in RGB format, shown in the color palette settings to describe the current palette.", "bg_colors": "A list of 1-2 colors in RGB format describing the colors used to generate the actual background used in the profile page.", "story_colors": "A list of 2 colors in RGB format describing the colors of the gradient used for the unread active story indicator around the profile photo." } }, "stats.publicForwards": { "comment": "Contains info about the forwards of a story as a message to public chats and reposts by public channels.", "arguments": { "flags": "Flags, see TL conditional fields", "count": "Total number of results", "forwards": "Info about the forwards of a story.", "next_offset": "Offset used for pagination.", "chats": "Mentioned chats", "users": "Mentioned users" } }, "help.peerColorOption": { "comment": "Contains info about a color palette ».", "arguments": { "flags": "Flags, see TL conditional fields", "hidden": "Whether this palette should not be displayed as an option to the user when choosing a palette to apply to profile pages or message accents.", "color_id": "Palette ID.", "colors": "Light mode palette.
Will be empty for IDs 0 to 6 inclusive, in which case a palette containing a single color from the following colors should be used: red, orange, violet, green, cyan, blue, pink for indexes 0 to 6 (i.e. the same colors used for randomized fallback message accent colors).", "dark_colors": "Dark mode palette. Optional, defaults to the palette in colors (or the autogenerated palette for IDs 0 to 6) if absent.", "channel_min_level": "Channels can use this palette only after reaching at least the boost level specified in this field.", "group_min_level": "Supergroups can use this palette only after reaching at least the boost level specified in this field." } }, "peerColor": { "comment": "Represents a color palette ».", "arguments": { "flags": "Flags, see TL conditional fields", "color": "Color palette ID, see here » for more info; if not set, the default palette should be used.", "background_emoji_id": "Optional custom emoji ID used to generate the pattern." } }, "help.peerColorsNotModified": { "comment": "The list of color palettes has not changed.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.peerColors": { "comment": "Contains info about multiple color palettes ».", "arguments": { "hash": "Hash used for caching, for more info click here", "colors": "Usable color palettes." } }, "storyReaction": { "comment": "How a certain peer reacted to a story", "arguments": { "peer_id": "The peer", "date": "Reaction date", "reaction": "The reaction" } }, "stories.storyReactionsList": { "comment": "List of peers that reacted to or intercated with a specific story", "arguments": { "flags": "Flags, see TL conditional fields", "count": "Total number of reactions matching query", "reactions": "List of peers that reacted to or interacted with a specific story", "chats": "Mentioned chats", "users": "Mentioned users", "next_offset": "If set, indicates the next offset to use to load more results by invoking {@link stories.RawGetStoryReactionsListRequest}." } }, "storyReactionPublicRepost": { "comment": "A certain peer has reposted the story.", "arguments": { "peer_id": "The peer that reposted the story.", "story": "The reposted story." } }, "savedDialog": { "comment": "Represents a saved dialog ».", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Is the dialog pinned", "peer": "The dialog", "top_message": "The latest message ID" } }, "messages.savedDialogs": { "comment": "Represents some saved message dialogs ».", "arguments": { "dialogs": "Saved message dialogs ».", "messages": "List of last messages from each saved dialog", "chats": "Mentioned chats", "users": "Mentioned users" } }, "storyReactionPublicForward": { "comment": "A certain peer has forwarded the story as a message to a public chat or channel.", "arguments": { "message": "The message with the forwarded story." } }, "messages.savedDialogsSlice": { "comment": "Incomplete list of saved message dialogs » with messages and auxiliary data.", "arguments": { "count": "Total number of saved message dialogs", "dialogs": "List of saved message dialogs", "messages": "List of last messages from dialogs", "chats": "Mentioned chats", "users": "Mentioned users" } }, "postInteractionCountersStory": { "comment": "Interaction counters for a story.", "arguments": { "story_id": "Story ID", "views": "Number of views", "forwards": "Number of forwards and reposts to public chats and channels", "reactions": "Number of reactions" } }, "messages.savedDialogsNotModified": { "comment": "The saved dialogs haven't changed", "arguments": { "count": "Number of saved dialogs found server-side by the query" } }, "messages.savedReactionTagsNotModified": { "comment": "The list of reaction tag » names assigned by the user hasn't changed.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "savedReactionTag": { "comment": "Info about a saved message reaction tag ».", "arguments": { "flags": "Flags, see TL conditional fields", "reaction": "Reaction associated to the tag.", "title": "Custom tag name assigned by the user (max 12 UTF-8 chars).", "count": "Number of messages tagged with this tag." } }, "messages.savedReactionTags": { "comment": "List of reaction tag » names assigned by the user.", "arguments": { "tags": "Saved reaction tags.", "hash": "Hash used for caching, for more info click here" } }, "outboxReadDate": { "comment": "Exact read date of a private message we sent to another user.", "arguments": { "date": "UNIX timestamp with the read date." } }, "smsjobs.eligibleToJoin": { "comment": "SMS jobs eligibility", "arguments": { "terms_url": "Terms of service URL", "monthly_sent_sms": "Monthly sent SMSes" } }, "smsJob": { "comment": "Info about an SMS job.", "arguments": { "job_id": "Job ID", "phone_number": "Destination phone number", "text": "Text" } }, "businessWeeklyOpen": { "comment": "A time interval, indicating the opening hours of a business.\n\nNote that opening hours specified by the user must be appropriately validated and transformed before uploading them to the server, as specified here ».", "arguments": { "start_minute": "Start minute in minutes of the week, 0 to 7*24*60 inclusively.", "end_minute": "End minute in minutes of the week, 1 to 8*24*60 inclusively (8 and not 7 because this allows to specify intervals that, for example, start on Sunday 21:00 and end on Monday 04:00 (6*24*60+21*60 to 7*24*60+4*60) without passing an invalid end_minute < start_minute). See here » for more info." } }, "smsjobs.status": { "comment": "Status", "arguments": { "flags": "Flags, see TL conditional fields", "allow_international": "Allow international numbers", "recent_sent": "Recently sent", "recent_since": "Since", "recent_remains": "Remaining", "total_sent": "Total sent", "total_since": "Total since", "last_gift_slug": "Last gift deep link", "terms_url": "Terms of service URL" } }, "businessWorkHours": { "comment": "Specifies a set of Telegram Business opening hours.", "arguments": { "flags": "Flags, see TL conditional fields", "open_now": "Ignored if set while invoking {@link account.RawUpdateBusinessWorkHoursRequest}, only returned by the server in {@link RawUserFull}.business_work_hours, indicating whether the business is currently open according to the current time and the values in weekly_open and timezone.", "timezone_id": "An ID of one of the timezones returned by {@link help.RawGetTimezonesListRequest}.
The timezone ID is contained {@link RawTimezone}.id, a human-readable, localized name of the timezone is available in {@link RawTimezone}.name and the {@link RawTimezone}.utc_offset field contains the UTC offset in seconds, which may be displayed in hh:mm format by the client together with the human-readable name (i.e. $name UTC -01:00).", "weekly_open": "A list of time intervals (max 28) represented by {@link RawBusinessWeeklyOpen}, indicating the opening hours of their business." } }, "businessRecipients": { "comment": "Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.", "arguments": { "flags": "Flags, see TL conditional fields", "existing_chats": "All existing private chats.", "new_chats": "All new private chats.", "contacts": "All private chats with contacts.", "non_contacts": "All private chats with non-contacts.", "exclude_selected": "If set, inverts the selection.", "users": "Only private chats with the specified users." } }, "inputBusinessRecipients": { "comment": "Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.", "arguments": { "flags": "Flags, see TL conditional fields", "existing_chats": "All existing private chats.", "new_chats": "All new private chats.", "contacts": "All private chats with contacts.", "non_contacts": "All private chats with non-contacts.", "exclude_selected": "If set, inverts the selection.", "users": "Only private chats with the specified users." } }, "businessAwayMessageScheduleAlways": { "comment": "Always send Telegram Business away messages to users writing to us in private.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "businessAwayMessageScheduleOutsideWorkHours": { "comment": "Send Telegram Business away messages to users writing to us in private outside of the configured Telegram Business working hours.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "businessLocation": { "comment": "Represents the location of a Telegram Business ».", "arguments": { "flags": "Flags, see TL conditional fields", "geo_point": "Geographical coordinates (optional).", "address": "Textual description of the address (mandatory)." } }, "businessAwayMessageScheduleCustom": { "comment": "Send Telegram Business away messages to users writing to us in private in the specified time span.", "arguments": { "start_date": "Start date (UNIX timestamp).", "end_date": "End date (UNIX timestamp)." } }, "inputBusinessGreetingMessage": { "comment": "Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.", "arguments": { "shortcut_id": "ID of a quick reply shorcut, containing the greeting messages to send, see here » for more info.", "recipients": "Allowed recipients for the greeting messages.", "no_activity_days": "The number of days after which a private chat will be considered as inactive; currently, must be one of 7, 14, 21, or 28." } }, "inputBusinessAwayMessage": { "comment": "Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.", "arguments": { "flags": "Flags, see TL conditional fields", "offline_only": "If set, the messages will not be sent if the account was online in the last 10 minutes.", "shortcut_id": "ID of a quick reply shorcut, containing the away messages to send, see here » for more info.", "schedule": "Specifies when should the away messages be sent.", "recipients": "Allowed recipients for the away messages." } }, "businessGreetingMessage": { "comment": "Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.", "arguments": { "shortcut_id": "ID of a quick reply shorcut, containing the greeting messages to send, see here » for more info.", "recipients": "Allowed recipients for the greeting messages.", "no_activity_days": "The number of days after which a private chat will be considered as inactive; currently, must be one of 7, 14, 21, or 28." } }, "businessAwayMessage": { "comment": "Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.", "arguments": { "flags": "Flags, see TL conditional fields", "offline_only": "If set, the messages will not be sent if the account was online in the last 10 minutes.", "shortcut_id": "ID of a quick reply shorcut, containing the away messages to send, see here » for more info.", "schedule": "Specifies when should the away messages be sent.", "recipients": "Allowed recipients for the away messages." } }, "timezone": { "comment": "Timezone information.", "arguments": { "id": "Unique timezone ID.", "name": "Human-readable and localized timezone name.", "utc_offset": "UTC offset in seconds, which may be displayed in hh:mm format by the client together with the human-readable name (i.e. $name UTC -01:00)." } }, "help.timezonesList": { "comment": "Timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».", "arguments": { "timezones": "Timezones", "hash": "Hash used for caching, for more info click here" } }, "inputQuickReplyShortcut": { "comment": "Selects a quick reply shortcut by name.", "arguments": { "shortcut": "Shortcut name." } }, "quickReply": { "comment": "A quick reply shortcut.", "arguments": { "shortcut_id": "Unique shortcut ID.", "shortcut": "Shortcut name.", "top_message": "ID of the last message in the shortcut.", "count": "Total number of messages in the shortcut." } }, "connectedBot": { "comment": "Contains info about a connected business bot ».", "arguments": { "flags": "Flags, see TL conditional fields", "can_reply": "Whether the the bot can reply to messages it receives through the connection", "bot_id": "ID of the connected bot", "recipients": "Specifies the private chats that a connected business bot » may receive messages and interact with.
" } }, "messages.dialogFilters": { "comment": "Folder and folder tags information", "arguments": { "flags": "Flags, see TL conditional fields", "tags_enabled": "Whether folder tags are enabled.", "filters": "Folders." } }, "messages.quickReplies": { "comment": "Info about quick reply shortcuts ».", "arguments": { "quick_replies": "Quick reply shortcuts.", "messages": "Messages mentioned in quick_replies.", "chats": "Mentioned chats", "users": "Mentioned users" } }, "account.connectedBots": { "comment": "Info about currently connected business bots.", "arguments": { "connected_bots": "Info about the connected bots", "users": "Bot information" } }, "messages.quickRepliesNotModified": { "comment": "Info about quick reply shortcuts » hasn't changed.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "inputQuickReplyShortcutId": { "comment": "Selects a quick reply shortcut by its numeric ID.", "arguments": { "shortcut_id": "Shortcut ID." } }, "help.timezonesListNotModified": { "comment": "The timezone list has not changed.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "businessIntro": { "comment": "Telegram Business introduction ».", "arguments": { "flags": "Flags, see TL conditional fields", "title": "Title of the introduction message (max intro_title_length_limit » UTF-8 characters).", "description": "Profile introduction (max intro_description_length_limit » UTF-8 characters).", "sticker": "Optional introduction sticker." } }, "inputCollectiblePhone": { "comment": "Represents a phone number fragment collectible", "arguments": { "phone": "Phone number" } }, "birthday": { "comment": "Birthday information for a user.\n\nAlso used to invite users to gift Telegram Premium subscriptions » to other users with birthdays within a +1/-1 day time range, related to the current day.", "arguments": { "flags": "Flags, see TL conditional fields", "day": "Birth day", "month": "Birth month", "year": "(Optional) birth year." } }, "inputCollectibleUsername": { "comment": "Represents a username fragment collectible", "arguments": { "username": "Username" } }, "inputBusinessIntro": { "comment": "Telegram Business introduction ».", "arguments": { "flags": "Flags, see TL conditional fields", "title": "Title of the introduction message", "description": "Profile introduction", "sticker": "Optional introduction sticker." } }, "botBusinessConnection": { "comment": "Contains info about a bot business connection.", "arguments": { "flags": "Flags, see TL conditional fields", "can_reply": "Whether the bot can reply on behalf of the user to messages it receives through the business connection", "disabled": "Whether this business connection is currently disabled", "connection_id": "Business connection ID, used to identify messages coming from the connection and to reply to them as specified here ».", "user_id": "ID of the user that the bot is connected to via this connection.", "dc_id": "ID of the datacenter where to send queries wrapped in a {@link RawInvokeWithBusinessConnectionRequest} as specified here ».", "date": "When was the connection created." } }, "messages.myStickers": { "comment": "The list of stickersets owned by the current account ».", "arguments": { "count": "Total number of owned stickersets.", "sets": "Stickersets" } }, "fragment.collectibleInfo": { "comment": "Info about a fragment collectible.", "arguments": { "purchase_date": "Purchase date (unixtime)", "currency": "Three-letter ISO 4217 currency code for amount", "amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).", "crypto_currency": "Cryptocurrency name.", "crypto_amount": "Price, in the smallest units of the cryptocurrency.", "url": "Fragment URL with more info about the collectible" } }, "inputBusinessBotRecipients": { "comment": "Specifies the private chats that a connected business bot » may interact with.", "arguments": { "flags": "Flags, see TL conditional fields", "existing_chats": "Selects all existing private chats.", "new_chats": "Selects all new private chats.", "contacts": "Selects all private chats with contacts.", "non_contacts": "Selects all private chats with non-contacts.", "exclude_selected": "If set, then all private chats except the ones selected by existing_chats, new_chats, contacts, non_contacts and users are chosen.
Note that if this flag is set, any values passed in exclude_users will be merged and moved into users by the server.", "users": "Explicitly selected private chats.", "exclude_users": "Identifiers of private chats that are always excluded." } }, "contactBirthday": { "comment": "Birthday information of a contact.", "arguments": { "contact_id": "User ID.", "birthday": "Birthday information." } }, "businessBotRecipients": { "comment": "Specifies the private chats that a connected business bot » may receive messages and interact with.", "arguments": { "flags": "Flags, see TL conditional fields", "existing_chats": "Selects all existing private chats.", "new_chats": "Selects all new private chats.", "contacts": "Selects all private chats with contacts.", "non_contacts": "Selects all private chats with non-contacts.", "exclude_selected": "If set, then all private chats except the ones selected by existing_chats, new_chats, contacts, non_contacts and users are chosen.
Note that if this flag is set, any values passed in exclude_users will be merged and moved into users by the server, thus exclude_users will always be empty.", "users": "Explicitly selected private chats.", "exclude_users": "Identifiers of private chats that are always excluded." } }, "businessChatLink": { "comment": "Contains info about a business chat deep link » created by the current account.", "arguments": { "flags": "Flags, see TL conditional fields", "link": "Business chat deep link.", "message": "Message to pre-fill in the message input field.", "entities": "Message entities for styled text", "title": "Human-readable name of the link, to simplify management in the UI (only visible to the creator of the link).", "views": "Number of times the link was resolved (clicked/scanned/etc...)." } }, "account.businessChatLinks": { "comment": "Contains info about business chat deep links » created by the current account.", "arguments": { "links": "Links", "chats": "Mentioned chats", "users": "Mentioned users" } }, "inputBusinessChatLink": { "comment": "Contains info about a business chat deep link » to be created by the current account.", "arguments": { "flags": "Flags, see TL conditional fields", "message": "Message to pre-fill in the message input field.", "entities": "Message entities for styled text", "title": "Human-readable name of the link, to simplify management in the UI (only visible to the creator of the link)." } }, "messages.invitedUsers": { "comment": "Contains info about successfully or unsuccessfully invited » users.", "arguments": { "updates": "List of updates about successfully invited users (and eventually info about the created group)", "missing_invitees": "A list of users that could not be invited, along with the reason why they couldn't be invited." } }, "missingInvitee": { "comment": "Info about why a specific user could not be invited ».", "arguments": { "flags": "Flags, see TL conditional fields", "premium_would_allow_invite": "If set, we could not add the user only because the current account needs to purchase a Telegram Premium subscription to complete the operation.", "premium_required_for_pm": "If set, we could not add the user because of their privacy settings, and additionally, the current account needs to purchase a Telegram Premium subscription to directly share an invite link with the user via a private message.", "user_id": "ID of the user. If neither of the flags below are set, we could not add the user because of their privacy settings, and we can create and directly share an invite link with them using a normal message, instead." } }, "contacts.contactBirthdays": { "comment": "Birthday information of our contacts.", "arguments": { "contacts": "Birthday info", "users": "User information" } }, "requestedPeerUser": { "comment": "Info about a user, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen user, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.", "arguments": { "flags": "Flags, see TL conditional fields", "user_id": "User ID.", "first_name": "First name.", "last_name": "Last name.", "username": "Username.", "photo": "Profile photo." } }, "account.resolvedBusinessChatLinks": { "comment": "Contains info about a single resolved business chat deep link ».", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Destination peer", "message": "Message to pre-fill in the message input field.", "entities": "Message entities for styled text", "chats": "Mentioned chats", "users": "Mentioned users" } }, "requestedPeerChat": { "comment": "Info about a chat, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen chat, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.", "arguments": { "flags": "Flags, see TL conditional fields", "chat_id": "Chat ID.", "title": "Chat title.", "photo": "Chat photo." } }, "sponsoredMessageReportOption": { "comment": "A report option for a sponsored message ».", "arguments": { "text": "Localized description of the option.", "option": "Option identifier to pass to {@link channels.RawReportSponsoredMessageRequest}." } }, "requestedPeerChannel": { "comment": "Info about a channel/supergroup, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen channel/supergroup, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.", "arguments": { "flags": "Flags, see TL conditional fields", "channel_id": "Channel/supergroup ID.", "title": "Channel/supergroup title.", "username": "Channel/supergroup username.", "photo": "Channel/supergroup photo." } }, "channels.sponsoredMessageReportResultChooseOption": { "comment": "The user must choose a report option from the localized options available in options, and after selection, {@link channels.RawReportSponsoredMessageRequest} must be invoked again, passing the option's option field to the option param of the method.", "arguments": { "title": "Title of the option selection popup.", "options": "Localized list of options." } }, "channels.sponsoredMessageReportResultAdsHidden": { "comment": "Sponsored messages were hidden for the user in all chats.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "channels.sponsoredMessageReportResultReported": { "comment": "The sponsored message was reported successfully.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "stats.broadcastRevenueStats": { "comment": "Channel revenue ad statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in the smallest unit of the chosen cryptocurrency (currently nanotons for TONs, so to obtain a value in USD divide the chosen amount by 10^9, and then divide by usd_rate).", "arguments": { "top_hours_graph": "Ad impressions graph", "revenue_graph": "Ad revenue graph (in the smallest unit of the cryptocurrency in which revenue is calculated)", "balances": "Current balance, current withdrawable balance and overall revenue", "usd_rate": "Current conversion rate of the cryptocurrency (not in the smallest unit) in which revenue is calculated to USD" } }, "broadcastRevenueTransactionRefund": { "comment": "Describes a refund for failed withdrawal of ad earnings »", "arguments": { "amount": "Amount refunded.", "date": "Date of refund.", "provider": "Payment provider name." } }, "broadcastRevenueTransactionProceeds": { "comment": "Describes earnings from sponsored messages in a channel in some time frame, see here » for more info.", "arguments": { "amount": "Amount in the smallest unit of the cryptocurrency.", "from_date": "Start unixtime for the timeframe.", "to_date": "End unixtime for the timeframe." } }, "broadcastRevenueTransactionWithdrawal": { "comment": "Describes a withdrawal of ad earnings »", "arguments": { "flags": "Flags, see TL conditional fields", "pending": "Whether the withdrawal is currently pending", "failed": "Whether the withdrawal has failed", "amount": "Amount withdrawn", "date": "Withdrawal date", "provider": "Payment provider name", "transaction_date": "If neither pending nor failed are set, the transaction was completed successfully, and this field will contain the point in time (UNIX timestamp in seconds) when the withdrawal was completed successfully.", "transaction_url": "If neither pending nor failed are set, the transaction was completed successfully, and this field will contain a URL where the withdrawal transaction can be viewed." } }, "stats.broadcastRevenueWithdrawalUrl": { "comment": "Contains the URL to use to withdraw channel ad revenue.", "arguments": { "url": "A unique URL to a Fragment page where the user will be able to specify and submit the address of the TON wallet where the funds will be sent." } }, "stats.broadcastRevenueTransactions": { "comment": "Channel ad revenue transactions ».", "arguments": { "count": "Total number of transactions.", "transactions": "Transactions" } }, "reactionNotificationsFromContacts": { "comment": "Receive notifications about reactions made only by our contacts.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "reactionsNotifySettings": { "comment": "Reaction notification settings, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "messages_notify_from": "Message reaction notification settings, if not set completely disables notifications/updates about message reactions.", "stories_notify_from": "Story reaction notification settings, if not set completely disables notifications/updates about reactions to stories.", "sound": "Notification sound for reactions »", "show_previews": "If false, push notifications » about message/story reactions will only be of type REACT_HIDDEN/REACT_STORY_HIDDEN, without any information about the reacted-to story or the reaction itself." } }, "messages.availableEffects": { "comment": "The full list of usable animated message effects ».", "arguments": { "hash": "Hash used for caching, for more info click here", "effects": "Message effects", "documents": "Documents specified in the effects constructors." } }, "reactionNotificationsFromAll": { "comment": "Receive notifications about reactions made by any user.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "broadcastRevenueBalances": { "comment": "Describes channel ad revenue balances ».\n\nNote that all balances are in the smallest unit of the chosen cryptocurrency (currently nanotons for TONs, so to obtain a value in USD divide the chosen amount by 10^9, and then divide by usd_rate).", "arguments": { "current_balance": "Amount of not-yet-withdrawn cryptocurrency.", "available_balance": "Amount of withdrawable cryptocurrency, out of the currently available balance (available_balance <= current_balance).", "overall_revenue": "Total amount of earned cryptocurrency." } }, "factCheck": { "comment": "Represents a fact-check » created by an independent fact-checker.", "arguments": { "flags": "Flags, see TL conditional fields", "need_check": "If set, the country/text fields will not be set, and the fact check must be fetched manually by the client (if it isn't already cached with the key specified in hash) using bundled {@link messages.RawGetFactCheckRequest} requests, when the message with the factcheck scrolls into view.", "country": "A two-letter ISO 3166-1 alpha-2 country code of the country for which the fact-check should be shown.", "text": "The fact-check.", "hash": "Hash used for caching, for more info click here" } }, "messages.availableEffectsNotModified": { "comment": "The full list of usable animated message effects » hasn't changed.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "availableEffect": { "comment": "Represents a message effect ».\n\nAll long IDs except for id are {@link RawDocument}.ids from the containing {@link messages.RawAvailableEffects} constructor.\n\nSee here » for more info on how to use following fields.", "arguments": { "flags": "Flags, see TL conditional fields", "premium_required": "Whether a Premium subscription is required to use this effect.", "id": "Unique effect ID.", "emoticon": "Emoji corresponding to the effect, to be used as icon for the effect if static_icon_id is not set.", "static_icon_id": "ID of the document containing the static icon (WEBP) of the effect.", "effect_sticker_id": "Contains the preview animation (TGS format »), used for the effect selection menu.", "effect_animation_id": "If set, contains the actual animated effect (TGS format »). If not set, the animated effect must be set equal to the premium animated sticker effect associated to the animated sticker specified in effect_sticker_id (always different from the preview animation, fetched thanks to the {@link RawVideoSize} of type f as specified here »)." } }, "starsTransactionPeerUnsupported": { "comment": "Describes a Telegram Star transaction that cannot be described using the current layer.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "starsTransactionPeerAppStore": { "comment": "Describes a Telegram Star transaction with the App Store, used when purchasing Telegram Stars through the App Store.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "starsTransactionPeerPlayMarket": { "comment": "Describes a Telegram Star transaction with the Play Store, used when purchasing Telegram Stars through the Play Store.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "starsTransactionPeer": { "comment": "Describes a Telegram Star transaction with another peer.", "arguments": { "peer": "The peer." } }, "starsTransactionPeerPremiumBot": { "comment": "Describes a Telegram Star transaction made using @PremiumBot (i.e. using the {@link RawInputInvoiceStars} flow described here »).", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "starsTransactionPeerAds": { "comment": "Describes a Telegram Star transaction used to pay for Telegram ads as specified here ».", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "foundStory": { "comment": "A story found using global story search ».", "arguments": { "peer": "The peer that posted the story.", "story": "The story." } }, "starsTopupOption": { "comment": "Telegram Stars topup option.", "arguments": { "flags": "Flags, see TL conditional fields", "extended": "If set, the option must only be shown in the full list of topup options.", "stars": "Amount of Telegram stars.", "store_product": "Identifier of the store product associated with the option, official apps only.", "currency": "Three-letter ISO 4217 currency code", "amount": "Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." } }, "starsTransactionPeerFragment": { "comment": "Describes a Telegram Star transaction with Fragment, used when purchasing Telegram Stars through Fragment.", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "geoPointAddress": { "comment": "Address optionally associated to a {@link RawGeoPoint}.", "arguments": { "flags": "Flags, see TL conditional fields", "country_iso2": "Two-letter ISO 3166-1 alpha-2 country code", "state": "State", "city": "City", "street": "Street" } }, "stories.foundStories": { "comment": "Stories found using global story search ».", "arguments": { "flags": "Flags, see TL conditional fields", "count": "Total number of results found for the query.", "stories": "Matching stories.", "next_offset": "Offset used to fetch the next page, if not set this is the final page.", "chats": "Mentioned chats", "users": "Mentioned users" } }, "starsRevenueStatus": { "comment": "Describes Telegram Star revenue balances ».", "arguments": { "flags": "Flags, see TL conditional fields", "withdrawal_enabled": "If set, the user may withdraw up to available_balance stars.", "current_balance": "Amount of not-yet-withdrawn Telegram Stars.", "available_balance": "Amount of withdrawable Telegram Stars.", "overall_revenue": "Total amount of earned Telegram Stars.", "next_withdrawal_at": "Unixtime indicating when will withdrawal be available to the user. If not set, withdrawal can be started now." } }, "starsTransaction": { "comment": "Represents a Telegram Stars transaction ».", "arguments": { "flags": "Flags, see TL conditional fields", "refund": "Whether this transaction is a refund.", "pending": "The transaction is currently pending.", "failed": "This transaction has failed.", "gift": "This transaction was a gift from the user in peer.peer.", "id": "Transaction ID.", "stars": "Amount of Stars (negative for outgoing transactions).", "date": "Date of the transaction (unixtime).", "peer": "Source of the incoming transaction, or its recipient for outgoing transactions.", "title": "For transactions with bots, title of the bought product.", "description": "For transactions with bots, description of the bought product.", "photo": "For transactions with bots, photo of the bought product.", "transaction_date": "If neither pending nor failed are set, the transaction was completed successfully, and this field will contain the point in time (UNIX timestamp in seconds) when the withdrawal was completed successfully.", "transaction_url": "If neither pending nor failed are set, the transaction was completed successfully, and this field will contain a URL where the withdrawal transaction can be viewed.", "bot_payload": "Bot specified invoice payload (i.e. the payload passed to {@link RawInputMediaInvoice} when creating the invoice).", "msg_id": "For paid media transactions », message ID of the paid media posted to peer.peer (can point to a deleted message; either way, extended_media will always contain the bought media).", "extended_media": "The purchased paid media »." } }, "payments.starsRevenueAdsAccountUrl": { "comment": "Contains a URL leading to a page where the user will be able to place ads for the channel/bot, paying using Telegram Stars.", "arguments": { "url": "URL to open." } }, "payments.starsStatus": { "comment": "Info about the current Telegram Star balance and transaction history ».", "arguments": { "flags": "Flags, see TL conditional fields", "balance": "Current Telegram Star balance.", "history": "List of Telegram Star transactions (partial if next_offset is set).", "next_offset": "Offset to use to fetch more transactions from the transaction history using {@link payments.RawGetStarsTransactionsRequest}.", "chats": "Chats mentioned in history.", "users": "Users mentioned in history." } }, "payments.starsRevenueStats": { "comment": "Star revenue statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in Stars.", "arguments": { "revenue_graph": "Star revenue graph (number of earned stars)", "status": "Current balance, current withdrawable balance and overall earned Telegram Stars", "usd_rate": "Current conversion rate of Telegram Stars to USD" } }, "payments.starsRevenueWithdrawalUrl": { "comment": "Contains the URL to use to withdraw Telegram Star revenue.", "arguments": { "url": "Contains the URL to use to withdraw Telegram Star revenue." } }, "inputStarsTransaction": { "comment": "Used to fetch info about a Telegram Star transaction ».", "arguments": { "flags": "Flags, see TL conditional fields", "refund": "If set, fetches info about the refund transaction for this transaction.", "id": "Transaction ID." } }, "starsGiftOption": { "comment": "Telegram Stars gift option.", "arguments": { "flags": "Flags, see TL conditional fields", "extended": "If set, the option must only be shown in the full list of topup options.", "stars": "Amount of Telegram stars.", "store_product": "Identifier of the store product associated with the option, official apps only.", "currency": "Three-letter ISO 4217 currency code", "amount": "Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." } }, "botPreviewMedia": { "comment": "Represents a Main Mini App preview media, see here » for more info.", "arguments": { "date": "When was this media last updated.", "media": "The actual photo/video." } }, "bots.popularAppBots": { "comment": "Popular Main Mini Apps, to be used in the apps tab of global search ».", "arguments": { "flags": "Flags, see TL conditional fields", "next_offset": "Offset for pagination.", "users": "The bots associated to each Main Mini App, see here » for more info." } }, "updateGroupInvitePrivacyForbidden": { "comment": "0-N updates of this type may be returned only when invoking {@link messages.RawAddChatUserRequest}, {@link channels.RawInviteToChannelRequest} or {@link messages.RawCreateChatRequest}: it indicates we couldn't add a user to a chat because of their privacy settings; if required, an invite link can be shared with the user, instead.", "arguments": { "user_id": "ID of the user we couldn't add." } }, "bots.previewInfo": { "comment": "Contains info about Main Mini App previews, see here » for more info.", "arguments": { "media": "All preview medias for the language code passed to {@link bots.RawGetPreviewInfoRequest}.", "lang_codes": "All available language codes for which preview medias were uploaded (regardless of the language code passed to {@link bots.RawGetPreviewInfoRequest})." } }, "appWebViewResultUrl": { "comment": "Contains the link that must be used to open a direct link Mini App.", "arguments": { "url": "The URL to open" } }, "simpleWebViewResultUrl": { "comment": "Contains the webview URL with appropriate theme parameters added", "arguments": { "url": "URL" } }, "inputStorePaymentStars": { "comment": "Used to top up the Telegram Stars balance using the Play Store/App Store flow (official apps only).", "arguments": { "flags": "Flags, see TL conditional fields", "stars": "Amount of stars to topup", "currency": "Three-letter ISO 4217 currency code", "amount": "Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." } }, "sponsoredWebPage": { "comment": "Represents a sponsored website.", "arguments": { "flags": "Flags, see TL conditional fields", "url": "Web page URL.", "site_name": "Website name.", "photo": "Optional image preview." } } }, "methods": { "invokeAfterMsgs": { "comment": "Invokes a query after a successful completion of previous queries", "arguments": { "msg_ids": "List of messages on which a current query depends", "query": "The query itself" }, "available": "both" }, "invokeAfterMsg": { "comment": "Invokes a query after successful completion of one of the previous queries.", "arguments": { "msg_id": "Message identifier on which a current query depends", "query": "The query itself" }, "available": "both" }, "invokeWithoutUpdates": { "comment": "Invoke a request without subscribing the used connection for updates (this is enabled by default for file queries).", "arguments": { "query": "The query" }, "available": "both" }, "initConnection": { "comment": "Initialize connection", "arguments": { "flags": "Flags, see TL conditional fields", "api_id": "Application identifier (see. App configuration)", "device_model": "Device model", "system_version": "Operation system version", "app_version": "Application version", "system_lang_code": "Code for the language used on the device's OS, ISO 639-1 standard", "lang_pack": "Platform identifier (i.e. android, tdesktop, etc).", "lang_code": "Either an ISO 639-1 language code or a language pack name obtained from a language pack link.", "proxy": "Info about an MTProto proxy", "params": "Additional initConnection parameters.
For now, only the tz_offset field is supported, for specifying the timezone offset in seconds.", "query": "The query itself" }, "throws": [{ "code": 400, "name": "CONNECTION_LAYER_INVALID", "comment": "Layer invalid." }], "available": "both" }, "invokeWithLayer": { "comment": "Invoke the specified query using the specified API layer", "arguments": { "layer": "The layer to use", "query": "The query" }, "throws": [{ "code": 400, "name": "AUTH_BYTES_INVALID", "comment": "The provided authorization is invalid." }, { "code": 400, "name": "CDN_METHOD_INVALID", "comment": "You can't call this method in a CDN DC." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "CONNECTION_API_ID_INVALID", "comment": "The provided API id is invalid." }, { "code": 406, "name": "INVITE_HASH_EXPIRED", "comment": "The invite link has expired." }], "available": "both" }, "invokeWithMessagesRange": { "comment": "Invoke with the given message range", "arguments": { "range": "Message range", "query": "Query" }, "available": "both" }, "invokeWithTakeout": { "comment": "Invoke a method within a takeout session, see here » for more info.", "arguments": { "takeout_id": "Takeout session ID »", "query": "Query" }, "available": "both" }, "invokeWithBusinessConnection": { "comment": "Invoke a method using a Telegram Business Bot connection, see here » for more info, including a list of the methods that can be wrapped in this constructor.\n\nMake sure to always send queries wrapped in a invokeWithBusinessConnection to the datacenter ID, specified in the dc_id field of the {@link RawBotBusinessConnection} that is being used.", "arguments": { "connection_id": "Business connection ID.", "query": "The actual query." }, "available": "both" }, "invokeWithGooglePlayIntegrity": { "comment": "Official clients only, invoke with Google Play Integrity token.", "arguments": { "nonce": "Nonce.", "token": "Token.", "query": "Query." }, "available": "both" }, "invokeWithApnsSecret": { "comment": "Official clients only, invoke with Apple push verification.", "arguments": { "nonce": "Nonce.", "secret": "Secret.", "query": "Query." }, "available": "both" }, "auth.signUp": { "comment": "Registers a validated phone number in the system.", "arguments": { "flags": "Flags, see TL conditional fields", "no_joined_notifications": "If set, users on Telegram that have already added phone_number to their contacts will not receive signup notifications about this user.", "phone_number": "Phone number in the international format", "phone_code_hash": "SMS-message ID", "first_name": "New user first name", "last_name": "New user last name" }, "throws": [{ "code": 400, "name": "FIRSTNAME_INVALID", "comment": "The first name is invalid." }, { "code": 400, "name": "LASTNAME_INVALID", "comment": "The last name is invalid." }, { "code": 400, "name": "PHONE_CODE_EMPTY", "comment": "phone_code is missing." }, { "code": 400, "name": "PHONE_CODE_EXPIRED", "comment": "The phone code you provided has expired." }, { "code": 400, "name": "PHONE_CODE_INVALID", "comment": "The provided phone code is invalid." }, { "code": 400, "name": "PHONE_NUMBER_FLOOD", "comment": "You asked for the code too many times." }, { "code": 406, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }, { "code": 400, "name": "PHONE_NUMBER_OCCUPIED", "comment": "The phone number is already in use." }], "available": "user" }, "auth.logOut": { "comment": "Logs out the user.", "available": "both", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "auth.signIn": { "comment": "Signs in a user with a validated phone number.", "arguments": { "flags": "Flags, see TL conditional fields", "phone_number": "Phone number in the international format", "phone_code_hash": "SMS-message ID, obtained from {@link auth.RawSendCodeRequest}", "phone_code": "Valid numerical code from the SMS-message", "email_verification": "Email verification code or token" }, "throws": [{ "code": 500, "name": "AUTH_RESTART", "comment": "Restart the authorization process." }, { "code": 400, "name": "PHONE_CODE_EMPTY", "comment": "phone_code is missing." }, { "code": 400, "name": "PHONE_CODE_EXPIRED", "comment": "The phone code you provided has expired." }, { "code": 400, "name": "PHONE_CODE_INVALID", "comment": "The provided phone code is invalid." }, { "code": 406, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }, { "code": 400, "name": "PHONE_NUMBER_UNOCCUPIED", "comment": "The phone number is not yet being used." }, { "code": 500, "name": "SIGN_IN_FAILED", "comment": "Failure while signing in." }, { "code": 406, "name": "UPDATE_APP_TO_LOGIN", "comment": "Please update to the latest version of MadelineProto to login." }], "available": "user" }, "auth.resetAuthorizations": { "comment": "Terminates all user's authorized sessions except for the current one.\n\nAfter calling this method it is necessary to reregister the current device using the method {@link account.RawRegisterDeviceRequest}", "throws": [{ "code": 406, "name": "FRESH_RESET_AUTHORISATION_FORBIDDEN", "comment": "You can't logout other sessions if less than 24 hours have passed since you logged on the current session." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "auth.exportAuthorization": { "comment": "Returns data for copying authorization to another data-center.", "arguments": { "dc_id": "Number of a target data-center" }, "throws": [{ "code": 400, "name": "DC_ID_INVALID", "comment": "The provided DC ID is invalid." }], "available": "both" }, "auth.bindTempAuthKey": { "comment": "Binds a temporary authorization key temp_auth_key_id to the permanent authorization key perm_auth_key_id. Each permanent key may only be bound to one temporary key at a time, binding a new temporary key overwrites the previous one.\n\nFor more information, see Perfect Forward Secrecy.", "arguments": { "perm_auth_key_id": "Permanent auth_key_id to bind to", "nonce": "Random long from Binding message contents", "expires_at": "UNIX timestamp in seconds to invalidate temporary key, see Binding message contents", "encrypted_message": "See Generating encrypted_message" }, "throws": [{ "code": 400, "name": "ENCRYPTED_MESSAGE_INVALID", "comment": "Encrypted message invalid." }, { "code": 400, "name": "TEMP_AUTH_KEY_ALREADY_BOUND", "comment": "The passed temporary key is already bound to another perm_auth_key_id." }, { "code": 400, "name": "TEMP_AUTH_KEY_EMPTY", "comment": "No temporary auth key provided." }], "available": "both" }, "auth.importBotAuthorization": { "comment": "Login as a bot", "arguments": { "flags": "Reserved for future use", "api_id": "Application identifier (see. App configuration)", "api_hash": "Application identifier hash (see. App configuration)", "bot_auth_token": "Bot token (see bots)" }, "throws": [{ "code": 400, "name": "ACCESS_TOKEN_EXPIRED", "comment": "Access token expired." }, { "code": 400, "name": "ACCESS_TOKEN_INVALID", "comment": "Access token invalid." }, { "code": 400, "name": "API_ID_INVALID", "comment": "API ID invalid." }, { "code": 400, "name": "API_ID_PUBLISHED_FLOOD", "comment": "This API id was published somewhere, you can't use it now." }], "available": "both" }, "auth.requestPasswordRecovery": { "comment": "Request recovery code of a 2FA password, only for accounts with a recovery email configured.", "throws": [{ "code": 400, "name": "PASSWORD_EMPTY", "comment": "The provided password is empty." }, { "code": 400, "name": "PASSWORD_RECOVERY_NA", "comment": "No email was set, can't recover password via email." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "auth.sendCode": { "comment": "Send the verification code for login", "arguments": { "phone_number": "Phone number in international format", "api_id": "Application identifier (see App configuration)", "api_hash": "Application secret hash (see App configuration)", "settings": "Settings for the code type to send" }, "throws": [{ "code": 400, "name": "API_ID_INVALID", "comment": "API ID invalid." }, { "code": 400, "name": "API_ID_PUBLISHED_FLOOD", "comment": "This API id was published somewhere, you can't use it now." }, { "code": 500, "name": "AUTH_RESTART", "comment": "Restart the authorization process." }, { "code": 400, "name": "PHONE_NUMBER_APP_SIGNUP_FORBIDDEN", "comment": "You can't sign up using this app." }, { "code": 400, "name": "PHONE_NUMBER_BANNED", "comment": "The provided phone number is banned from telegram." }, { "code": 400, "name": "PHONE_NUMBER_FLOOD", "comment": "You asked for the code too many times." }, { "code": 406, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }, { "code": 406, "name": "PHONE_PASSWORD_FLOOD", "comment": "You have tried logging in too many times." }, { "code": 400, "name": "PHONE_PASSWORD_PROTECTED", "comment": "This phone is password protected." }, { "code": 400, "name": "SMS_CODE_CREATE_FAILED", "comment": "An error occurred while creating the SMS code." }, { "code": 406, "name": "UPDATE_APP_TO_LOGIN", "comment": "Please update to the latest version of MadelineProto to login." }], "available": "user" }, "auth.checkPassword": { "comment": "Try logging to an account protected by a 2FA password.", "arguments": { "password": "The account's password (see SRP)" }, "throws": [{ "code": 400, "name": "PASSWORD_HASH_INVALID", "comment": "The provided password hash is invalid." }, { "code": 400, "name": "SRP_ID_INVALID", "comment": "Invalid SRP ID provided." }, { "code": 400, "name": "SRP_PASSWORD_CHANGED", "comment": "Password has changed." }], "available": "user" }, "auth.resendCode": { "comment": "Resend the login code via another medium, the phone code type is determined by the return value of the previous auth.sendCode/auth.resendCode: see login for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "phone_number": "The phone number", "phone_code_hash": "The phone code hash obtained from {@link auth.RawSendCodeRequest}", "reason": "Official clients only, used if the device integrity verification failed, and no secret could be obtained to invoke {@link auth.RawRequestFirebaseSmsRequest}: in this case, the device integrity verification failure reason must be passed here." }, "throws": [{ "code": 400, "name": "PHONE_CODE_EMPTY", "comment": "phone_code is missing." }, { "code": 400, "name": "PHONE_CODE_EXPIRED", "comment": "The phone code you provided has expired." }, { "code": 400, "name": "PHONE_CODE_HASH_EMPTY", "comment": "phone_code_hash is missing." }, { "code": 406, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }, { "code": 406, "name": "SEND_CODE_UNAVAILABLE", "comment": "Returned when all available options for this type of number were already used (e.g. flash-call, then SMS, then this error might be returned to trigger a second resend)." }], "available": "user" }, "auth.importAuthorization": { "comment": "Logs in a user using a key transmitted from their native data-center.", "arguments": { "id": "User ID", "bytes": "Authorization key" }, "throws": [{ "code": 400, "name": "AUTH_BYTES_INVALID", "comment": "The provided authorization is invalid." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "both" }, "auth.dropTempAuthKeys": { "comment": "Delete all temporary authorization keys except for the ones specified", "arguments": { "except_auth_keys": "The auth keys that shouldn't be dropped." }, "available": "both" }, "auth.cancelCode": { "comment": "Cancel the login verification code", "arguments": { "phone_number": "Phone number", "phone_code_hash": "Phone code hash from {@link auth.RawSendCodeRequest}" }, "throws": [{ "code": 400, "name": "PHONE_CODE_EXPIRED", "comment": "The phone code you provided has expired." }, { "code": 406, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }], "available": "user" }, "auth.exportLoginToken": { "comment": "Generate a login token, for login via QR code.
\nThe generated login token should be encoded using base64url, then shown as a tg://login?token=base64encodedtoken deep link » in the QR code.\n\nFor more info, see login via QR code.", "arguments": { "api_id": "Application identifier (see. App configuration)", "api_hash": "Application identifier hash (see. App configuration)", "except_ids": "List of already logged-in user IDs, to prevent logging in twice with the same user" }, "throws": [{ "code": 400, "name": "API_ID_INVALID", "comment": "API ID invalid." }, { "code": 400, "name": "API_ID_PUBLISHED_FLOOD", "comment": "This API id was published somewhere, you can't use it now." }], "available": "user" }, "auth.importLoginToken": { "comment": "Login using a redirected login token, generated in case of DC mismatch during QR code login.\n\nFor more info, see login via QR code.", "arguments": { "token": "Login token" }, "throws": [{ "code": 400, "name": "AUTH_TOKEN_ALREADY_ACCEPTED", "comment": "The specified auth token was already accepted." }, { "code": 400, "name": "AUTH_TOKEN_EXPIRED", "comment": "The authorization token has expired." }, { "code": 400, "name": "AUTH_TOKEN_INVALID", "comment": "The specified auth token is invalid." }, { "code": 400, "name": "AUTH_TOKEN_INVALIDX", "comment": "The specified auth token is invalid." }], "available": "user" }, "auth.recoverPassword": { "comment": "Reset the 2FA password using the recovery code sent using {@link auth.RawRequestPasswordRecoveryRequest}.", "arguments": { "flags": "Flags, see TL conditional fields", "code": "Code received via email", "new_settings": "New password" }, "throws": [{ "code": 400, "name": "CODE_EMPTY", "comment": "The provided code is empty." }, { "code": 400, "name": "NEW_SETTINGS_INVALID", "comment": "The new password settings are invalid." }], "available": "user" }, "auth.acceptLoginToken": { "comment": "Accept QR code login token, logging in the app that generated it.\n\nReturns info about the new session.\n\nFor more info, see login via QR code.", "arguments": { "token": "Login token embedded in QR code, for more info, see login via QR code." }, "throws": [{ "code": 400, "name": "AUTH_TOKEN_ALREADY_ACCEPTED", "comment": "The specified auth token was already accepted." }, { "code": 400, "name": "AUTH_TOKEN_EXCEPTION", "comment": "An error occurred while importing the auth token." }, { "code": 400, "name": "AUTH_TOKEN_EXPIRED", "comment": "The authorization token has expired." }, { "code": 400, "name": "AUTH_TOKEN_INVALIDX", "comment": "The specified auth token is invalid." }], "available": "user" }, "auth.checkRecoveryPassword": { "comment": "Check if the 2FA recovery code sent using {@link auth.RawRequestPasswordRecoveryRequest} is valid, before passing it to {@link auth.RawRecoverPasswordRequest}.", "arguments": { "code": "Code received via email" }, "throws": [{ "code": 400, "name": "CODE_EMPTY", "comment": "The provided code is empty." }, { "code": 400, "name": "PASSWORD_RECOVERY_EXPIRED", "comment": "The recovery code has expired." }], "available": "user" }, "auth.resetLoginEmail": { "comment": "Reset the login email ».", "arguments": { "phone_number": "Phone number of the account", "phone_code_hash": "Phone code hash, obtained as described in the documentation »" }, "throws": [{ "code": 400, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }, { "code": 400, "name": "TASK_ALREADY_EXISTS", "comment": "An email reset was already requested." }], "available": "user" }, "auth.requestFirebaseSms": { "comment": "Request an SMS code via Firebase.", "arguments": { "flags": "Flags, see TL conditional fields", "phone_number": "Phone number", "phone_code_hash": "Phone code hash returned by {@link auth.RawSendCodeRequest}", "safety_net_token": "On Android, a JWS object obtained as described in the auth documentation »", "play_integrity_token": "On Android, an object obtained as described in the auth documentation »", "ios_push_secret": "Secret token received via an apple push notification" }, "throws": [{ "code": 400, "name": "PHONE_CODE_EMPTY", "comment": "phone_code is missing." }, { "code": 400, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }], "available": "user" }, "auth.importWebTokenAuthorization": { "comment": "Login by importing an authorization token", "arguments": { "api_id": "API ID", "api_hash": "API hash", "web_auth_token": "The authorization token" }, "throws": [{ "code": 400, "name": "API_ID_INVALID", "comment": "API ID invalid." }], "available": "user" }, "account.updateNotifySettings": { "comment": "Edits notification settings from a given user/group, from all users/all groups.", "arguments": { "peer": "Notification source", "settings": "Notification settings" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "SETTINGS_INVALID", "comment": "Invalid settings were provided." }], "available": "user" }, "account.registerDevice": { "comment": "Register device to receive PUSH notifications", "arguments": { "flags": "Flags, see TL conditional fields", "no_muted": "Avoid receiving (silent and invisible background) notifications. Useful to save battery.", "token_type": "Device token type, see PUSH updates for the possible values.", "token": "Device token, see PUSH updates for the possible values.", "app_sandbox": "If true is transmitted, a sandbox-certificate will be used during transmission.", "secret": "For FCM and APNS VoIP, optional encryption key used to encrypt push notifications", "other_uids": "List of user identifiers of other users currently using the client" }, "throws": [{ "code": 400, "name": "TOKEN_EMPTY", "comment": "The specified token is empty." }, { "code": 400, "name": "TOKEN_INVALID", "comment": "The provided token is invalid." }, { "code": 400, "name": "TOKEN_TYPE_INVALID", "comment": "The specified token type is invalid." }, { "code": 400, "name": "WEBPUSH_AUTH_INVALID", "comment": "The specified web push authentication secret is invalid." }, { "code": 400, "name": "WEBPUSH_KEY_INVALID", "comment": "The specified web push elliptic curve Diffie-Hellman public key is invalid." }, { "code": 400, "name": "WEBPUSH_TOKEN_INVALID", "comment": "The specified web push token is invalid." }], "available": "user" }, "auth.reportMissingCode": { "comment": "Official apps only, reports that the SMS authentication code wasn't delivered.", "arguments": { "phone_number": "Phone number where we were supposed to receive the code", "phone_code_hash": "The phone code hash obtained from {@link auth.RawSendCodeRequest}", "mnc": "MNC of the current network operator." }, "throws": [{ "code": 400, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }], "available": "user" }, "account.unregisterDevice": { "comment": "Deletes a device by its token, stops sending PUSH-notifications to it.", "arguments": { "token_type": "Device token type, see PUSH updates for the possible values.", "token": "Device token, see PUSH updates for the possible values.", "other_uids": "List of user identifiers of other users currently using the client" }, "throws": [{ "code": 400, "name": "TOKEN_INVALID", "comment": "The provided token is invalid." }], "available": "user" }, "account.updateProfile": { "comment": "Updates user profile.", "arguments": { "flags": "Flags, see TL conditional fields", "first_name": "New user first name", "last_name": "New user last name", "about": "New bio" }, "throws": [{ "code": 400, "name": "ABOUT_TOO_LONG", "comment": "About string too long." }, { "code": 400, "name": "FIRSTNAME_INVALID", "comment": "The first name is invalid." }], "available": "user" }, "account.resetNotifySettings": { "comment": "Resets all notification settings from users and groups.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.updateStatus": { "comment": "Updates online user status.", "arguments": { "offline": "If true is transmitted, user status will change to {@link RawUserStatusOffline}." }, "available": "user" }, "account.getWallPapers": { "comment": "Returns a list of available wallpapers.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "account.reportPeer": { "comment": "Report a peer for violation of telegram's Terms of Service", "arguments": { "peer": "The peer to report", "reason": "The reason why this peer is being reported", "message": "Comment for report moderation" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "account.getNotifySettings": { "comment": "Gets current notification settings for a given user/group, from all users/all groups.", "arguments": { "peer": "Notification source" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "account.checkUsername": { "comment": "Validates a username and checks availability.", "arguments": { "username": "username
Accepted characters: A-z (case-insensitive), 0-9 and underscores.
Length: 5-32 characters." }, "throws": [{ "code": 400, "name": "USERNAME_INVALID", "comment": "The provided username is not valid." }, { "code": 400, "name": "USERNAME_OCCUPIED", "comment": "The provided username is already occupied." }, { "code": 400, "name": "USERNAME_PURCHASE_AVAILABLE", "comment": "The specified username can be purchased on https://fragment.com." }], "available": "user" }, "account.getPrivacy": { "comment": "Get privacy settings of current account", "arguments": { "key": "Peer category whose privacy settings should be fetched" }, "throws": [{ "code": 400, "name": "PRIVACY_KEY_INVALID", "comment": "The privacy key is invalid." }], "available": "user" }, "account.updateUsername": { "comment": "Changes username for the current user.", "arguments": { "username": "username or empty string if username is to be removed
Accepted characters: a-z (case-insensitive), 0-9 and underscores.
Length: 5-32 characters." }, "throws": [{ "code": 400, "name": "USERNAME_INVALID", "comment": "The provided username is not valid." }, { "code": 400, "name": "USERNAME_NOT_MODIFIED", "comment": "The username was not modified." }, { "code": 400, "name": "USERNAME_OCCUPIED", "comment": "The provided username is already occupied." }, { "code": 400, "name": "USERNAME_PURCHASE_AVAILABLE", "comment": "The specified username can be purchased on https://fragment.com." }], "available": "user" }, "account.sendChangePhoneCode": { "comment": "Verify a new phone number to associate to the current account", "arguments": { "phone_number": "New phone number", "settings": "Phone code settings" }, "throws": [{ "code": 406, "name": "FRESH_CHANGE_PHONE_FORBIDDEN", "comment": "You can't change phone number right after logging in, please wait at least 24 hours." }, { "code": 400, "name": "PHONE_NUMBER_BANNED", "comment": "The provided phone number is banned from telegram." }, { "code": 406, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }, { "code": 400, "name": "PHONE_NUMBER_OCCUPIED", "comment": "The phone number is already in use." }], "available": "user" }, "account.setAccountTTL": { "comment": "Set account self-destruction period", "arguments": { "ttl": "Time to live in days" }, "throws": [{ "code": 400, "name": "TTL_DAYS_INVALID", "comment": "The provided TTL is invalid." }], "available": "user" }, "account.getAccountTTL": { "comment": "Get days to live of account", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.setPrivacy": { "comment": "Change privacy settings of current account", "arguments": { "key": "New privacy rule", "rules": "Peers to which the privacy rule will apply." }, "throws": [{ "code": 400, "name": "PRIVACY_KEY_INVALID", "comment": "The privacy key is invalid." }, { "code": 400, "name": "PRIVACY_TOO_LONG", "comment": "Too many privacy rules were specified, the current limit is 1000." }, { "code": 400, "name": "PRIVACY_VALUE_INVALID", "comment": "The specified privacy rule combination is invalid." }], "available": "user" }, "account.updateDeviceLocked": { "comment": "When client-side passcode lock feature is enabled, will not show message texts in incoming PUSH notifications.", "arguments": { "period": "Inactivity period after which to start hiding message texts in PUSH notifications." }, "available": "user" }, "account.changePhone": { "comment": "Change the phone number of the current account", "arguments": { "phone_number": "New phone number", "phone_code_hash": "Phone code hash received when calling {@link account.RawSendChangePhoneCodeRequest}", "phone_code": "Phone code received when calling {@link account.RawSendChangePhoneCodeRequest}" }, "throws": [{ "code": 400, "name": "PHONE_CODE_EMPTY", "comment": "phone_code is missing." }, { "code": 400, "name": "PHONE_CODE_EXPIRED", "comment": "The phone code you provided has expired." }, { "code": 406, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }, { "code": 400, "name": "PHONE_NUMBER_OCCUPIED", "comment": "The phone number is already in use." }], "available": "user" }, "account.getAuthorizations": { "comment": "Get logged-in sessions", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.resetAuthorization": { "comment": "Log out an active authorized session by its hash", "arguments": { "hash": "Session hash" }, "throws": [{ "code": 406, "name": "FRESH_RESET_AUTHORISATION_FORBIDDEN", "comment": "You can't logout other sessions if less than 24 hours have passed since you logged on the current session." }, { "code": 400, "name": "HASH_INVALID", "comment": "The provided hash is invalid." }], "available": "user" }, "account.deleteAccount": { "comment": "Delete the user's account from the telegram servers.\n\nCan also be used to delete the account of a user that provided the login code, but forgot the 2FA password and no recovery method is configured, see here » for more info on password recovery, and here » for more info on account deletion.", "arguments": { "flags": "Flags, see TL conditional fields", "reason": "Why is the account being deleted, can be empty", "password": "2FA password: this field can be omitted even for accounts with 2FA enabled: in this case account account deletion will be delayed by 7 days as specified in the docs »" }, "throws": [{ "code": 420, "name": "2FA_CONFIRM_WAIT_%d", "comment": "Since this account is active and protected by a 2FA password, we will delete it in 1 week for security purposes. You can cancel this process at any time, you'll be able to reset your account in %d seconds." }], "available": "user" }, "account.getPasswordSettings": { "comment": "Get private info associated to the password info (recovery email, telegram passport info & so on)", "arguments": { "password": "The password (see SRP)" }, "throws": [{ "code": 400, "name": "PASSWORD_HASH_INVALID", "comment": "The provided password hash is invalid." }], "available": "user" }, "account.updatePasswordSettings": { "comment": "Set a new 2FA password", "arguments": { "password": "The old password (see SRP)", "new_settings": "The new password (see SRP)" }, "throws": [{ "code": 400, "name": "EMAIL_INVALID", "comment": "The specified email is invalid." }, { "code": 400, "name": "EMAIL_UNCONFIRMED", "comment": "Email unconfirmed." }, { "code": 400, "name": "EMAIL_UNCONFIRMED_%d", "comment": "The provided email isn't confirmed, %d is the length of the verification code that was just sent to the email: use {@link account.RawVerifyEmailRequest} to enter the received verification code and enable the recovery email." }, { "code": 400, "name": "NEW_SALT_INVALID", "comment": "The new salt is invalid." }, { "code": 400, "name": "NEW_SETTINGS_EMPTY", "comment": "No password is set on the current account, and no new password was specified in new_settings." }, { "code": 400, "name": "NEW_SETTINGS_INVALID", "comment": "The new password settings are invalid." }, { "code": 400, "name": "PASSWORD_HASH_INVALID", "comment": "The provided password hash is invalid." }, { "code": 400, "name": "SRP_ID_INVALID", "comment": "Invalid SRP ID provided." }, { "code": 400, "name": "SRP_PASSWORD_CHANGED", "comment": "Password has changed." }], "available": "user" }, "account.getPassword": { "comment": "Obtain configuration for two-factor authorization with password", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.sendConfirmPhoneCode": { "comment": "Send confirmation code to cancel account deletion, for more info click here »", "arguments": { "hash": "The hash from the service notification, for more info click here »", "settings": "Phone code settings" }, "throws": [{ "code": 400, "name": "HASH_INVALID", "comment": "The provided hash is invalid." }], "available": "user" }, "account.confirmPhone": { "comment": "Confirm a phone number to cancel account deletion, for more info click here »", "arguments": { "phone_code_hash": "Phone code hash, for more info click here »", "phone_code": "SMS code, for more info click here »" }, "throws": [{ "code": 400, "name": "CODE_HASH_INVALID", "comment": "Code hash invalid." }, { "code": 400, "name": "PHONE_CODE_EMPTY", "comment": "phone_code is missing." }], "available": "user" }, "account.getTmpPassword": { "comment": "Get temporary payment password", "arguments": { "password": "SRP password parameters", "period": "Time during which the temporary password will be valid, in seconds; should be between 60 and 86400" }, "throws": [{ "code": 400, "name": "PASSWORD_HASH_INVALID", "comment": "The provided password hash is invalid." }, { "code": 400, "name": "TMP_PASSWORD_DISABLED", "comment": "The temporary password is disabled." }], "available": "user" }, "account.getWebAuthorizations": { "comment": "Get web login widget authorizations", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.resetWebAuthorizations": { "comment": "Reset all active web telegram login sessions", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.getAllSecureValues": { "comment": "Get all saved Telegram Passport documents, for more info see the passport docs »", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.resetWebAuthorization": { "comment": "Log out an active web telegram login session", "arguments": { "hash": "{@link RawWebAuthorization} hash" }, "throws": [{ "code": 400, "name": "HASH_INVALID", "comment": "The provided hash is invalid." }], "available": "user" }, "account.saveSecureValue": { "comment": "Securely save Telegram Passport document, for more info see the passport docs »", "arguments": { "value": "Secure value, for more info see the passport docs »", "secure_secret_id": "Passport secret hash, for more info see the passport docs »" }, "throws": [{ "code": 400, "name": "PASSWORD_REQUIRED", "comment": "A 2FA password must be configured to use Telegram Passport." }, { "code": 400, "name": "SECURE_SECRET_REQUIRED", "comment": "A secure secret is required." }], "available": "user" }, "account.getSecureValue": { "comment": "Get saved Telegram Passport document, for more info see the passport docs »", "arguments": { "types": "Requested value types" }, "available": "user" }, "account.getAuthorizationForm": { "comment": "Returns a Telegram Passport authorization form for sharing data with a service", "arguments": { "bot_id": "User identifier of the service's bot", "scope": "Telegram Passport element types requested by the service", "public_key": "Service's public key" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "PUBLIC_KEY_REQUIRED", "comment": "A public key is required." }], "available": "user" }, "account.sendVerifyPhoneCode": { "comment": "Send the verification phone code for telegram passport.", "arguments": { "phone_number": "The phone number to verify", "settings": "Phone code settings" }, "throws": [{ "code": 400, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }], "available": "user" }, "account.acceptAuthorization": { "comment": "Sends a Telegram Passport authorization form, effectively sharing data with the service", "arguments": { "bot_id": "Bot ID", "scope": "Telegram Passport element types requested by the service", "public_key": "Service's public key", "value_hashes": "Types of values sent and their hashes", "credentials": "Encrypted values" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "PUBLIC_KEY_REQUIRED", "comment": "A public key is required." }], "available": "user" }, "account.verifyEmail": { "comment": "Verify an email address.", "arguments": { "purpose": "Verification purpose", "verification": "Email verification code or token" }, "throws": [{ "code": 400, "name": "EMAIL_INVALID", "comment": "The specified email is invalid." }, { "code": 400, "name": "EMAIL_NOT_ALLOWED", "comment": "The specified email cannot be used to complete the operation." }, { "code": 400, "name": "EMAIL_VERIFY_EXPIRED", "comment": "The verification email has expired." }, { "code": 400, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }], "available": "user" }, "account.sendVerifyEmailCode": { "comment": "Send an email verification code.", "arguments": { "purpose": "Verification purpose.", "email": "The email where to send the code." }, "throws": [{ "code": 400, "name": "EMAIL_INVALID", "comment": "The specified email is invalid." }, { "code": 400, "name": "EMAIL_NOT_ALLOWED", "comment": "The specified email cannot be used to complete the operation." }, { "code": 400, "name": "EMAIL_NOT_SETUP", "comment": "In order to change the login email with emailVerifyPurposeLoginChange, an existing login email must already be set using emailVerifyPurposeLoginSetup." }, { "code": 400, "name": "PHONE_HASH_EXPIRED", "comment": "An invalid or expired phone_code_hash was provided." }, { "code": 400, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }], "available": "user" }, "account.deleteSecureValue": { "comment": "Delete stored Telegram Passport documents, for more info see the passport docs »", "arguments": { "types": "Document types to delete" }, "available": "user" }, "account.confirmPasswordEmail": { "comment": "Verify an email to use as 2FA recovery method.", "arguments": { "code": "The phone code that was received after setting a recovery email" }, "throws": [{ "code": 400, "name": "CODE_INVALID", "comment": "Code invalid." }, { "code": 400, "name": "EMAIL_HASH_EXPIRED", "comment": "Email hash expired." }], "available": "user" }, "account.finishTakeoutSession": { "comment": "Terminate a takeout session, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "success": "Data exported successfully" }, "throws": [{ "code": 403, "name": "TAKEOUT_REQUIRED", "comment": "A takeout session needs to be initialized first, see here » for more info." }], "available": "user" }, "account.resendPasswordEmail": { "comment": "Resend the code to verify an email to use as 2FA recovery method.", "throws": [{ "code": 400, "name": "EMAIL_HASH_EXPIRED", "comment": "Email hash expired." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.initTakeoutSession": { "comment": "Initialize a takeout session, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "contacts": "Whether to export contacts", "message_users": "Whether to export messages in private chats", "message_chats": "Whether to export messages in basic groups", "message_megagroups": "Whether to export messages in supergroups", "message_channels": "Whether to export messages in channels", "files": "Whether to export files", "file_max_size": "Maximum size of files to export" }, "throws": [{ "code": 420, "name": "TAKEOUT_INIT_DELAY_%d", "comment": "Sorry, for security reasons, you will be able to begin downloading your data in %d seconds. We have notified all your devices about the export request to make sure it's authorized and to give you time to react if it's not." }], "available": "user" }, "account.cancelPasswordEmail": { "comment": "Cancel the code that was sent to verify an email to use as 2FA recovery method.", "throws": [{ "code": 400, "name": "EMAIL_HASH_EXPIRED", "comment": "Email hash expired." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.verifyPhone": { "comment": "Verify a phone number for telegram passport.", "arguments": { "phone_number": "Phone number", "phone_code_hash": "Phone code hash received from the call to {@link account.RawSendVerifyPhoneCodeRequest}", "phone_code": "Code received after the call to {@link account.RawSendVerifyPhoneCodeRequest}" }, "throws": [{ "code": 400, "name": "PHONE_CODE_EMPTY", "comment": "phone_code is missing." }, { "code": 400, "name": "PHONE_CODE_EXPIRED", "comment": "The phone code you provided has expired." }, { "code": 400, "name": "PHONE_NUMBER_INVALID", "comment": "The phone number is invalid." }], "available": "user" }, "account.saveWallPaper": { "comment": "Install/uninstall wallpaper", "arguments": { "wallpaper": "Wallpaper to install or uninstall", "unsave": "Uninstall wallpaper?", "settings": "Wallpaper settings" }, "throws": [{ "code": 400, "name": "WALLPAPER_INVALID", "comment": "The specified wallpaper is invalid." }], "available": "user" }, "account.getWallPaper": { "comment": "Get info about a certain wallpaper", "arguments": { "wallpaper": "The wallpaper to get info about" }, "throws": [{ "code": 400, "name": "WALLPAPER_INVALID", "comment": "The specified wallpaper is invalid." }], "available": "user" }, "account.setContactSignUpNotification": { "comment": "Toggle contact sign up notifications", "arguments": { "silent": "Whether to disable contact sign up notifications" }, "available": "user" }, "account.getNotifyExceptions": { "comment": "Returns list of chats with non-default notification settings", "arguments": { "flags": "Flags, see TL conditional fields", "compare_sound": "If set, chats with non-default sound will be returned", "compare_stories": "If set, chats with non-default notification settings for stories will be returned", "peer": "If specified, only chats of the specified category will be returned" }, "available": "user" }, "account.uploadWallPaper": { "comment": "Create and upload a new wallpaper", "arguments": { "flags": "Flags, see TL conditional fields", "for_chat": "Set this flag when uploading wallpapers to be passed to {@link messages.RawSetChatWallPaperRequest}.", "file": "The JPG/PNG wallpaper", "mime_type": "MIME type of uploaded wallpaper", "settings": "Wallpaper settings" }, "throws": [{ "code": 400, "name": "WALLPAPER_FILE_INVALID", "comment": "The specified wallpaper file is invalid." }, { "code": 400, "name": "WALLPAPER_MIME_INVALID", "comment": "The specified wallpaper MIME type is invalid." }], "available": "user" }, "account.installWallPaper": { "comment": "Install wallpaper", "arguments": { "wallpaper": "Wallpaper to install", "settings": "Wallpaper settings" }, "throws": [{ "code": 400, "name": "WALLPAPER_INVALID", "comment": "The specified wallpaper is invalid." }], "available": "user" }, "account.getContactSignUpNotification": { "comment": "Whether the user will receive notifications when contacts sign up", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.saveAutoDownloadSettings": { "comment": "Change media autodownload settings", "arguments": { "flags": "Flags, see TL conditional fields", "low": "Whether to save media in the low data usage preset", "high": "Whether to save media in the high data usage preset", "settings": "Media autodownload settings" }, "available": "user" }, "account.getAutoDownloadSettings": { "comment": "Get media autodownload settings", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.resetWallPapers": { "comment": "Delete all installed wallpapers, reverting to the default wallpaper set.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.createTheme": { "comment": "Create a theme", "arguments": { "flags": "Flags, see TL conditional fields", "slug": "Unique theme ID used to generate theme deep links, can be empty to autogenerate a random ID.", "title": "Theme name", "document": "Theme file", "settings": "Theme settings, multiple values can be provided for the different base themes (day/night mode, etc)." }, "throws": [{ "code": 400, "name": "THEME_MIME_INVALID", "comment": "The theme's MIME type is invalid." }, { "code": 400, "name": "THEME_TITLE_INVALID", "comment": "The specified theme title is invalid." }], "available": "user" }, "account.uploadTheme": { "comment": "Upload theme", "arguments": { "flags": "Flags, see TL conditional fields", "file": "Previously uploaded theme file with platform-specific colors for UI components, can be left unset when creating themes that only modify the wallpaper or accent colors.", "thumb": "Thumbnail", "file_name": "File name", "mime_type": "MIME type, must be application/x-tgtheme-{format}, where format depends on the client" }, "throws": [{ "code": 400, "name": "THEME_FILE_INVALID", "comment": "Invalid theme file provided." }, { "code": 400, "name": "THEME_MIME_INVALID", "comment": "The theme's MIME type is invalid." }], "available": "user" }, "account.updateTheme": { "comment": "Update theme", "arguments": { "flags": "Flags, see TL conditional fields", "format": "Theme format, a string that identifies the theming engines supported by the client", "theme": "Theme to update", "slug": "Unique theme ID", "title": "Theme name", "document": "Theme file", "settings": "Theme settings" }, "throws": [{ "code": 400, "name": "THEME_INVALID", "comment": "Invalid theme provided." }], "available": "user" }, "account.installTheme": { "comment": "Install a theme", "arguments": { "flags": "Flags, see TL conditional fields", "dark": "Whether to install the dark version", "theme": "Theme to install", "format": "Theme format, a string that identifies the theming engines supported by the client", "base_theme": "Indicates a basic theme provided by all clients" }, "available": "user" }, "account.getThemes": { "comment": "Get installed themes", "arguments": { "format": "Theme format, a string that identifies the theming engines supported by the client", "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "account.setContentSettings": { "comment": "Set sensitive content settings (for viewing or hiding NSFW content)", "arguments": { "flags": "Flags, see TL conditional fields", "sensitive_enabled": "Enable NSFW content" }, "throws": [{ "code": 403, "name": "SENSITIVE_CHANGE_FORBIDDEN", "comment": "You can't change your sensitive content settings." }], "available": "user" }, "account.getTheme": { "comment": "Get theme information", "arguments": { "format": "Theme format, a string that identifies the theming engines supported by the client", "theme": "Theme" }, "throws": [{ "code": 400, "name": "THEME_FORMAT_INVALID", "comment": "Invalid theme format provided." }, { "code": 400, "name": "THEME_INVALID", "comment": "Invalid theme provided." }], "available": "user" }, "account.getMultiWallPapers": { "comment": "Get info about multiple wallpapers", "arguments": { "wallpapers": "Wallpapers to fetch info about" }, "throws": [{ "code": 400, "name": "WALLPAPER_INVALID", "comment": "The specified wallpaper is invalid." }], "available": "user" }, "account.getContentSettings": { "comment": "Get sensitive content settings", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.setGlobalPrivacySettings": { "comment": "Set global privacy settings", "arguments": { "settings": "Global privacy settings" }, "throws": [{ "code": 400, "name": "AUTOARCHIVE_NOT_AVAILABLE", "comment": "The autoarchive setting is not available at this time: please check the value of the autoarchive_setting_available field in client config » before calling this method." }, { "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }], "available": "user" }, "account.getGlobalPrivacySettings": { "comment": "Get global privacy settings", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.saveTheme": { "comment": "Save a theme", "arguments": { "theme": "Theme to save", "unsave": "Unsave" }, "throws": [{ "code": 400, "name": "THEME_INVALID", "comment": "Invalid theme provided." }], "available": "user" }, "account.resetPassword": { "comment": "Initiate a 2FA password reset: can only be used if the user is already logged-in, see here for more info »", "throws": [{ "code": 400, "name": "PASSWORD_EMPTY", "comment": "The provided password is empty." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.reportProfilePhoto": { "comment": "Report a profile photo of a dialog", "arguments": { "peer": "The dialog", "photo_id": "Dialog photo ID", "reason": "Report reason", "message": "Comment for report moderation" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "account.declinePasswordReset": { "comment": "Abort a pending 2FA password reset, see here for more info »", "throws": [{ "code": 400, "name": "RESET_REQUEST_MISSING", "comment": "No password reset is in progress." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.getChatThemes": { "comment": "Get all available chat themes ».", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "account.setAuthorizationTTL": { "comment": "Set time-to-live of current session", "arguments": { "authorization_ttl_days": "Time-to-live of current session in days" }, "throws": [{ "code": 406, "name": "FRESH_RESET_AUTHORISATION_FORBIDDEN", "comment": "You can't logout other sessions if less than 24 hours have passed since you logged on the current session." }, { "code": 400, "name": "TTL_DAYS_INVALID", "comment": "The provided TTL is invalid." }], "available": "user" }, "account.changeAuthorizationSettings": { "comment": "Change settings related to a session.", "arguments": { "flags": "Flags, see TL conditional fields", "confirmed": "If set, confirms a newly logged in session ».", "hash": "Session ID from the {@link RawAuthorization} constructor, fetchable using {@link account.RawGetAuthorizationsRequest}", "encrypted_requests_disabled": "Whether to enable or disable receiving encrypted chats: if the flag is not set, the previous setting is not changed", "call_requests_disabled": "Whether to enable or disable receiving calls: if the flag is not set, the previous setting is not changed" }, "throws": [{ "code": 400, "name": "HASH_INVALID", "comment": "The provided hash is invalid." }], "available": "user" }, "account.getSavedRingtones": { "comment": "Fetch saved notification sounds", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "account.saveRingtone": { "comment": "Save or remove saved notification sound.\n\nIf the notification sound is already in MP3 format, {@link account.RawSavedRingtone} will be returned.
\nOtherwise, it will be automatically converted and a {@link account.RawSavedRingtoneConverted} will be returned, containing a new {@link RawDocument} object that should be used to refer to the ringtone from now on (ie when deleting it using the unsave parameter, or when downloading it).", "arguments": { "id": "Notification sound uploaded using {@link account.RawUploadRingtoneRequest}", "unsave": "Whether to add or delete the notification sound" }, "throws": [{ "code": 400, "name": "RINGTONE_INVALID", "comment": "The specified ringtone is invalid." }], "available": "user" }, "account.uploadRingtone": { "comment": "Upload notification sound, use {@link account.RawSaveRingtoneRequest} to convert it and add it to the list of saved notification sounds.", "arguments": { "file": "Notification sound", "file_name": "File name", "mime_type": "MIME type of file" }, "throws": [{ "code": 400, "name": "RINGTONE_MIME_INVALID", "comment": "The MIME type for the ringtone is invalid." }], "available": "user" }, "account.updateEmojiStatus": { "comment": "Set an emoji status", "arguments": { "emoji_status": "Emoji status to set" }, "throws": [{ "code": 400, "name": "DOCUMENT_INVALID", "comment": "The specified document is invalid." }], "available": "user" }, "account.getDefaultEmojiStatuses": { "comment": "Get a list of default suggested emoji statuses", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "account.getRecentEmojiStatuses": { "comment": "Get recently used emoji statuses", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "account.reorderUsernames": { "comment": "Reorder usernames associated with the currently logged-in user.", "arguments": { "order": "The new order for active usernames. All active usernames must be specified." }, "throws": [{ "code": 400, "name": "ORDER_INVALID", "comment": "The specified username order is invalid." }, { "code": 400, "name": "USERNAME_NOT_MODIFIED", "comment": "The username was not modified." }], "available": "user" }, "account.getDefaultProfilePhotoEmojis": { "comment": "Get a set of suggested custom emoji stickers that can be used as profile picture", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "account.clearRecentEmojiStatuses": { "comment": "Clears list of recently used emoji statuses", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.getDefaultGroupPhotoEmojis": { "comment": "Get a set of suggested custom emoji stickers that can be used as group picture", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "account.getAutoSaveSettings": { "comment": "Get autosave settings", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.toggleUsername": { "comment": "Activate or deactivate a purchased fragment.com username associated to the currently logged-in user.", "arguments": { "username": "Username", "active": "Whether to activate or deactivate it" }, "throws": [{ "code": 400, "name": "USERNAMES_ACTIVE_TOO_MUCH", "comment": "The maximum number of active usernames was reached." }, { "code": 400, "name": "USERNAME_INVALID", "comment": "The provided username is not valid." }, { "code": 400, "name": "USERNAME_NOT_MODIFIED", "comment": "The username was not modified." }], "available": "user" }, "account.deleteAutoSaveExceptions": { "comment": "Clear all peer-specific autosave settings.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.saveAutoSaveSettings": { "comment": "Modify autosave settings", "arguments": { "flags": "Flags, see TL conditional fields", "users": "Whether the new settings should affect all private chats", "chats": "Whether the new settings should affect all groups", "broadcasts": "Whether the new settings should affect all channels", "peer": "Whether the new settings should affect a specific peer", "settings": "The new autosave settings" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "account.invalidateSignInCodes": { "comment": "Invalidate the specified login codes, see here » for more info.", "arguments": { "codes": "The login codes to invalidate." }, "available": "user" }, "account.updateColor": { "comment": "Update the accent color and background custom emoji » of the current account.", "arguments": { "flags": "Flags, see TL conditional fields", "for_profile": "Whether to change the accent color emoji pattern of the profile page; otherwise, the accent color and emoji pattern of messages will be changed.", "color": "ID of the accent color palette » to use (not RGB24, see here » for more info).", "background_emoji_id": "Custom emoji ID used in the accent color pattern." }, "throws": [{ "code": 400, "name": "COLOR_INVALID", "comment": "The specified color palette ID was invalid." }, { "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }], "available": "user" }, "account.getChannelDefaultEmojiStatuses": { "comment": "Get a list of default suggested channel emoji statuses.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "account.getDefaultBackgroundEmojis": { "comment": "Get a set of suggested custom emoji stickers that can be used in an accent color pattern.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "account.updateBusinessWorkHours": { "comment": "Specify a set of Telegram Business opening hours.
\nThis info will be contained in {@link RawUserFull}.business_work_hours.\n\nTo remove all opening hours, invoke the method without setting the business_work_hours field.\n\nNote that the opening hours specified by the user must be appropriately validated and transformed before invoking the method, as specified here ».", "arguments": { "flags": "Flags, see TL conditional fields", "business_work_hours": "Opening hours (optional, if not set removes all opening hours)." }, "throws": [{ "code": 400, "name": "BUSINESS_WORK_HOURS_EMPTY", "comment": "No work hours were specified." }, { "code": 400, "name": "BUSINESS_WORK_HOURS_PERIOD_INVALID", "comment": "The specified work hours are invalid, see here » for the exact requirements." }, { "code": 400, "name": "TIMEZONE_INVALID", "comment": "The specified timezone does not exist." }], "available": "user" }, "account.updateBusinessLocation": { "comment": "Businesses » may advertise their location using this method, see here » for more info.\n\nTo remove business location information invoke the method without setting any of the parameters.", "arguments": { "flags": "Flags, see TL conditional fields", "geo_point": "Optional, contains a set of geographical coordinates.", "address": "Mandatory when setting/updating the location, contains a textual description of the address (max 96 UTF-8 chars)." }, "available": "user" }, "account.getChannelRestrictedStatusEmojis": { "comment": "Returns fetch the full list of custom emoji IDs » that cannot be used in channel emoji statuses ».", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "account.updateBusinessGreetingMessage": { "comment": "Set a list of Telegram Business greeting messages.", "arguments": { "flags": "Flags, see TL conditional fields", "message": "Greeting message configuration and contents." }, "available": "user" }, "account.getConnectedBots": { "comment": "List all currently connected business bots »", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.updateBusinessAwayMessage": { "comment": "Set a list of Telegram Business away messages.", "arguments": { "flags": "Flags, see TL conditional fields", "message": "Away message configuration and contents." }, "available": "user" }, "account.getBotBusinessConnection": { "comment": "Bots may invoke this method to re-fetch the {@link RawUpdateBotBusinessConnect} constructor associated with a specific business connection_id, see here » for more info on connected business bots.
\nThis is needed for example for freshly logged in bots that are receiving some {@link RawUpdateBotNewBusinessMessage}, etc. updates because some users have already connected to the bot before it could login.
\nIn this case, the bot is receiving messages from the business connection, but it hasn't cached the associated {@link RawUpdateBotBusinessConnect} with info about the connection (can it reply to messages? etc.) yet, and cannot receive the old ones because they were sent when the bot wasn't logged into the session yet.
\nThis method can be used to fetch info about a not-yet-cached business connection, and should not be invoked if the info is already cached or to fetch changes, as eventual changes will automatically be sent as new {@link RawUpdateBotBusinessConnect} updates to the bot using the usual update delivery methods ».", "arguments": { "connection_id": "Business connection ID »." }, "throws": [{ "code": 400, "name": "CONNECTION_ID_INVALID", "comment": "The specified connection ID is invalid." }], "available": "both" }, "account.toggleConnectedBotPaused": { "comment": "Pause or unpause a specific chat, temporarily disconnecting it from all business bots ».", "arguments": { "peer": "The chat to pause", "paused": "Whether to pause or unpause the chat" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "account.updateBirthday": { "comment": "Update our birthday, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "birthday": "Birthday." }, "throws": [{ "code": 400, "name": "BIRTHDAY_INVALID", "comment": "An invalid age was specified, must be between 0 and 150 years." }], "available": "user" }, "account.disablePeerConnectedBot": { "comment": "Permanently disconnect a specific chat from all business bots » (equivalent to specifying it in recipients.exclude_users during initial configuration with {@link account.RawUpdateConnectedBotRequest}); to reconnect of a chat disconnected using this method the user must reconnect the entire bot by invoking {@link account.RawUpdateConnectedBotRequest}.", "arguments": { "peer": "The chat to disconnect" }, "throws": [{ "code": 400, "name": "BOT_ALREADY_DISABLED", "comment": "The connected business bot was already disabled for the specified peer." }, { "code": 400, "name": "BOT_NOT_CONNECTED_YET", "comment": "No business bot is connected to the currently logged in user." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "account.updateBusinessIntro": { "comment": "Set or remove the Telegram Business introduction ».", "arguments": { "flags": "Flags, see TL conditional fields", "intro": "Telegram Business introduction, to remove it call the method without setting this flag." }, "available": "user" }, "account.editBusinessChatLink": { "comment": "Edit a created business chat deep link ».", "arguments": { "slug": "Slug of the link, obtained as specified here ».", "link": "New link information." }, "throws": [{ "code": 400, "name": "CHATLINK_SLUG_EMPTY", "comment": "The specified slug is empty." }, { "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }], "available": "user" }, "account.getBusinessChatLinks": { "comment": "List all created business chat deep links ».", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.deleteBusinessChatLink": { "comment": "Delete a business chat deep link ».", "arguments": { "slug": "Slug of the link, obtained as specified here »." }, "throws": [{ "code": 400, "name": "CHATLINK_SLUG_EMPTY", "comment": "The specified slug is empty." }, { "code": 400, "name": "CHATLINK_SLUG_EXPIRED", "comment": "The specified business chat link has expired." }], "available": "user" }, "account.updatePersonalChannel": { "comment": "Associate (or remove) a personal channel », that will be listed on our personal profile page ».\n\nChanging it will emit an {@link RawUpdateUser} update.", "arguments": { "channel": "The channel, pass {@link RawInputChannelEmpty} to remove it." }, "available": "user" }, "account.updateConnectedBot": { "comment": "Connect a business bot » to the current account, or to change the current connection settings.", "arguments": { "flags": "Flags, see TL conditional fields", "can_reply": "Whether the bot can reply to messages it receives from us, on behalf of us using the business connection.", "deleted": "Whether to fully disconnect the bot from the current account.", "bot": "The bot to connect or disconnect", "recipients": "Configuration for the business connection" }, "throws": [{ "code": 400, "name": "BOT_BUSINESS_MISSING", "comment": "The specified bot is not a business bot (the {@link RawUser}.bot_business flag is not set)." }, { "code": 400, "name": "BUSINESS_RECIPIENTS_EMPTY", "comment": "You didn't set any flag in inputBusinessBotRecipients, thus the bot cannot work with any peer." }, { "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }], "available": "user" }, "users.getFullUser": { "comment": "Returns extended user info by ID.", "arguments": { "id": "User ID" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "USERNAME_OCCUPIED", "comment": "The provided username is already occupied." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "both" }, "account.setReactionsNotifySettings": { "comment": "Change the reaction notification settings ».", "arguments": { "settings": "New reaction notification settings." }, "available": "user" }, "account.getReactionsNotifySettings": { "comment": "Get the current reaction notification settings ».", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "account.toggleSponsoredMessages": { "comment": "Disable or re-enable Telegram ads for the current Premium account.\n\nUseful for business owners that may want to launch and view their own Telegram ads via the Telegram ad platform ».", "arguments": { "enabled": "Enable or disable ads." }, "available": "user" }, "users.setSecureValueErrors": { "comment": "Notify the user that the sent passport data contains some errors The user will not be able to re-submit their Passport data to you until the errors are fixed (the contents of the field for which you returned the error must change).\n\nUse this if the data submitted by the user doesn't satisfy the standards your service requires for any reason. For example, if a birthday date seems invalid, a submitted document is blurry, a scan shows evidence of tampering, etc. Supply some details in the error message to make sure the user knows how to correct the issues.", "arguments": { "id": "The user", "errors": "Errors" }, "throws": [{ "code": 403, "name": "USER_BOT_INVALID", "comment": "User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "bot" }, "users.getUsers": { "comment": "Returns basic user info according to their identifiers.", "arguments": { "id": "List of user identifiers" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "FROM_MESSAGE_BOT_DISABLED", "comment": "Bots can't use fromMessage min constructors." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }], "available": "both" }, "contacts.getContactIDs": { "comment": "Get the telegram IDs of all contacts.
\nReturns an array of Telegram user IDs for all contacts (0 if a contact does not have an associated Telegram account or have hidden their account using privacy settings).", "arguments": { "hash": "Hash used for caching, for more info click here" }, "available": "user" }, "users.getIsPremiumRequiredToContact": { "comment": "Check whether we can write to the specified user (this method can only be called by non-Premium users), see here » for more info on the full flow.", "arguments": { "id": "Users to fetch info about." }, "available": "user" }, "contacts.getStatuses": { "comment": "Use this method to obtain the online statuses of all contacts with an accessible Telegram account.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "contacts.getContacts": { "comment": "Returns the current user's contact list.", "arguments": { "hash": "Hash used for caching, for more info click here.
Note that the hash is computed using the usual algorithm, passing to the algorithm first the previously returned {@link contacts.RawContacts}.saved_count field, then max 100000 sorted user IDs from the contact list, including the ID of the currently logged in user if it is saved as a contact.
Example: tdlib implementation." }, "available": "user" }, "contacts.deleteContacts": { "comment": "Deletes several contacts from the list.", "arguments": { "id": "User ID list" }, "available": "user" }, "contacts.deleteByPhones": { "comment": "Delete contacts by phone number", "arguments": { "phones": "Phone numbers" }, "available": "user" }, "contacts.importContacts": { "comment": "Imports contacts: saves a full list on the server, adds already registered contacts to the contact list, returns added contacts and their info.\n\nUse {@link contacts.RawAddContactRequest} to add Telegram contacts without actually using their phone number.", "arguments": { "contacts": "List of contacts to import" }, "available": "user" }, "contacts.unblock": { "comment": "Deletes a peer from a blocklist, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "my_stories_from": "Whether the peer should be removed from the story blocklist; if not set, the peer will be removed from the main blocklist, see here » for more info.", "id": "Peer" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CONTACT_ID_INVALID", "comment": "The provided contact ID is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "account.createBusinessChatLink": { "comment": "Create a business chat deep link ».", "arguments": { "link": "Info about the link to create." }, "throws": [{ "code": 400, "name": "CHATLINKS_TOO_MUCH", "comment": "Too many business chat links were created, please delete some older links." }, { "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }], "available": "user" }, "contacts.getBlocked": { "comment": "Returns the list of blocked users.", "arguments": { "flags": "Flags, see TL conditional fields", "my_stories_from": "Whether to fetch the story blocklist; if not set, will fetch the main blocklist. See here » for differences between the two.", "offset": "The number of list elements to be skipped", "limit": "The number of list elements to be returned" }, "available": "user" }, "contacts.resolveUsername": { "comment": "Resolve a @username to get peer info", "arguments": { "username": "@username to resolve" }, "throws": [{ "code": 400, "name": "CONNECTION_LAYER_INVALID", "comment": "Layer invalid." }, { "code": 400, "name": "USERNAME_INVALID", "comment": "The provided username is not valid." }, { "code": 400, "name": "USERNAME_NOT_OCCUPIED", "comment": "The provided username is not occupied." }], "available": "both" }, "contacts.search": { "comment": "Returns users found by username substring.", "arguments": { "q": "Target substring", "limit": "Maximum number of users to be returned" }, "throws": [{ "code": 400, "name": "QUERY_TOO_SHORT", "comment": "The query string is too short." }, { "code": 400, "name": "SEARCH_QUERY_EMPTY", "comment": "The search query is empty." }], "available": "user" }, "contacts.resetSaved": { "comment": "Removes all contacts without an associated Telegram account.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "contacts.resetTopPeerRating": { "comment": "Reset rating of top peer", "arguments": { "category": "Top peer category", "peer": "Peer whose rating should be reset" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "contacts.getSaved": { "comment": "Get all contacts, requires a takeout session, see here » for more info.", "throws": [{ "code": 400, "name": "TAKEOUT_INVALID", "comment": "The specified takeout ID is invalid." }, { "code": 403, "name": "TAKEOUT_REQUIRED", "comment": "A takeout session needs to be initialized first, see here » for more info." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "contacts.toggleTopPeers": { "comment": "Enable/disable top peers", "arguments": { "enabled": "Enable/disable" }, "available": "user" }, "contacts.addContact": { "comment": "Add an existing telegram user as contact.\n\nUse {@link contacts.RawImportContactsRequest} to add contacts by phone number, without knowing their Telegram ID.", "arguments": { "flags": "Flags, see TL conditional fields", "add_phone_privacy_exception": "Allow the other user to see our phone number?", "id": "Telegram ID of the other user", "first_name": "First name", "last_name": "Last name", "phone": "User's phone number, may be omitted to simply add the user to the contact list, without a phone number." }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CONTACT_ID_INVALID", "comment": "The provided contact ID is invalid." }, { "code": 400, "name": "CONTACT_NAME_EMPTY", "comment": "Contact name empty." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "user" }, "contacts.getTopPeers": { "comment": "Get most used peers", "arguments": { "flags": "Flags, see TL conditional fields", "correspondents": "Users we've chatted most frequently with", "bots_pm": "Most used bots", "bots_inline": "Most used inline bots", "phone_calls": "Most frequently called users", "forward_users": "Users to which the users often forwards messages to", "forward_chats": "Chats to which the users often forwards messages to", "groups": "Often-opened groups and supergroups", "channels": "Most frequently visited channels", "bots_app": "Most frequently used Main Mini Bot Apps.", "offset": "Offset for pagination", "limit": "Maximum number of results to return, see pagination", "hash": "Hash used for caching, for more info click here" }, "throws": [{ "code": 400, "name": "TYPES_EMPTY", "comment": "No top peer type was provided." }], "available": "user" }, "contacts.acceptContact": { "comment": "If the add contact action bar is active, add that user as contact", "arguments": { "id": "The user to add as contact" }, "throws": [{ "code": 400, "name": "CONTACT_ADD_MISSING", "comment": "Contact to add is missing." }, { "code": 400, "name": "CONTACT_ID_INVALID", "comment": "The provided contact ID is invalid." }, { "code": 400, "name": "CONTACT_REQ_MISSING", "comment": "Missing contact request." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "user" }, "account.resolveBusinessChatLink": { "comment": "Resolve a business chat deep link ».", "arguments": { "slug": "Slug of the link, obtained as specified here »." }, "throws": [{ "code": 400, "name": "CHATLINK_SLUG_EMPTY", "comment": "The specified slug is empty." }, { "code": 400, "name": "CHATLINK_SLUG_EXPIRED", "comment": "The specified business chat link has expired." }], "available": "user" }, "contacts.getLocated": { "comment": "Get users and geochats near you, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "background": "While the geolocation of the current user is public, clients should update it in the background every half-an-hour or so, while setting this flag.
Do this only if the new location is more than 1 KM away from the previous one, or if the previous location is unknown.", "geo_point": "Geolocation", "self_expires": "If set, the geolocation of the current user will be public for the specified number of seconds; pass 0x7fffffff to disable expiry, 0 to make the current geolocation private; if the flag isn't set, no changes will be applied." }, "throws": [{ "code": 406, "name": "BUSINESS_ADDRESS_ACTIVE", "comment": "The user is currently advertising a Business Location, the location may only be changed (or removed) using {@link account.RawUpdateBusinessLocationRequest}. ." }, { "code": 400, "name": "GEO_POINT_INVALID", "comment": "Invalid geoposition provided." }, { "code": 406, "name": "USERPIC_PRIVACY_REQUIRED", "comment": "You need to disable privacy settings for your profile picture in order to make your geolocation public." }, { "code": 406, "name": "USERPIC_UPLOAD_REQUIRED", "comment": "You must have a profile picture to publish your geolocation." }], "available": "user" }, "contacts.blockFromReplies": { "comment": "Stop getting notifications about discussion replies of a certain user in @replies", "arguments": { "flags": "Flags, see TL conditional fields", "delete_message": "Whether to delete the specified message as well", "delete_history": "Whether to delete all @replies messages from this user as well", "report_spam": "Whether to also report this user for spam", "msg_id": "ID of the message in the @replies chat" }, "throws": [{ "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "user" }, "contacts.exportContactToken": { "comment": "Generates a temporary profile link for the currently logged-in user.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "contacts.importContactToken": { "comment": "Obtain user info from a temporary profile link.", "arguments": { "token": "The token extracted from the temporary profile link." }, "throws": [{ "code": 400, "name": "IMPORT_TOKEN_INVALID", "comment": "The specified token is invalid." }], "available": "user" }, "contacts.resolvePhone": { "comment": "Resolve a phone number to get user info, if their privacy settings allow it.", "arguments": { "phone": "Phone number in international format, possibly obtained from a phone number deep link." }, "throws": [{ "code": 400, "name": "PHONE_NOT_OCCUPIED", "comment": "No user is associated to the specified phone number." }], "available": "user" }, "contacts.getBirthdays": { "comment": "Fetch all users with birthdays that fall within +1/-1 days, relative to the current day: this method should be invoked by clients every 6-8 hours, and if the result is non-empty, it should be used to appropriately update locally cached birthday information in {@link RawUser}.birthday.\n\nSee here » for more info.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "contacts.setBlocked": { "comment": "Replace the contents of an entire blocklist, see here for more info ».", "arguments": { "flags": "Flags, see TL conditional fields", "my_stories_from": "Whether to edit the story blocklist; if not set, will edit the main blocklist. See here » for differences between the two.", "id": "Full content of the blocklist.", "limit": "Maximum number of results to return, see pagination" }, "available": "user" }, "messages.getDialogs": { "comment": "Returns the current user dialog list.", "arguments": { "flags": "Flags, see TL conditional fields", "exclude_pinned": "Exclude pinned dialogs", "folder_id": "Peer folder ID, for more info click here", "offset_date": "Offsets for pagination, for more info click here", "offset_id": "Offsets for pagination, for more info click here (top_message ID used for pagination)", "offset_peer": "Offset peer for pagination", "limit": "Number of list elements to be returned", "hash": "Hash used for caching, for more info click here" }, "throws": [{ "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "FOLDER_ID_INVALID", "comment": "Invalid folder ID." }, { "code": 400, "name": "OFFSET_PEER_ID_INVALID", "comment": "The provided offset peer is invalid." }], "available": "user" }, "messages.getHistory": { "comment": "Returns the conversation history with one interlocutor / within a chat", "arguments": { "peer": "Target peer", "offset_id": "Only return messages starting from the specified message ID", "offset_date": "Only return messages sent before the specified date", "add_offset": "Number of list elements to be skipped, negative values are also accepted.", "limit": "Number of results to return", "max_id": "If a positive value was transferred, the method will return only messages with IDs less than max_id", "min_id": "If a positive value was transferred, the method will return only messages with IDs more than min_id", "hash": "Result hash" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "TAKEOUT_INVALID", "comment": "The specified takeout ID is invalid." }], "available": "user" }, "contacts.editCloseFriends": { "comment": "Edit the close friends list, see here » for more info.", "arguments": { "id": "Full list of user IDs of close friends, see here for more info." }, "available": "user" }, "messages.search": { "comment": "Search for messages.", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "User or chat, histories with which are searched, or {@link RawInputPeerEmpty} constructor to search in all private chats and normal groups (not channels) ». Use {@link messages.RawSearchGlobalRequest} to search globally in all chats, groups, supergroups and channels.", "q": "Text search request", "from_id": "Only return messages sent by the specified user ID", "saved_peer_id": "Search within the saved message dialog » with this ID.", "saved_reaction": "You may search for saved messages tagged » with one or more reactions using this flag.", "top_msg_id": "Thread ID", "filter": "Filter to return only specified message types", "min_date": "If a positive value was transferred, only messages with a sending date bigger than the transferred one will be returned", "max_date": "If a positive value was transferred, only messages with a sending date smaller than the transferred one will be returned", "offset_id": "Only return messages starting from the specified message ID", "add_offset": "Additional offset", "limit": "Number of results to return", "max_id": "Maximum message ID to return", "min_id": "Minimum message ID to return", "hash": "Hash" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "FROM_PEER_INVALID", "comment": "The specified from_id is invalid." }, { "code": 400, "name": "INPUT_FILTER_INVALID", "comment": "The specified filter is invalid." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "PEER_ID_NOT_SUPPORTED", "comment": "The provided peer ID is not supported." }, { "code": 400, "name": "SEARCH_QUERY_EMPTY", "comment": "The search query is empty." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "user" }, "messages.readHistory": { "comment": "Marks message history as read.", "arguments": { "peer": "Target user or group", "max_id": "If a positive value is passed, only messages with identifiers less or equal than the given one will be read" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getMessages": { "comment": "Returns the list of messages by their IDs.", "arguments": { "id": "Message ID list" }, "available": "both" }, "messages.deleteHistory": { "comment": "Deletes communication history.", "arguments": { "flags": "Flags, see TL conditional fields", "just_clear": "Just clear history for the current user, without actually removing messages for every chat user", "revoke": "Whether to delete the message history for all chat participants", "peer": "User or chat, communication history of which will be deleted", "max_id": "Maximum ID of message to delete", "min_date": "Delete all messages newer than this UNIX timestamp", "max_date": "Delete all messages older than this UNIX timestamp" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_REVOKE_DATE_UNSUPPORTED", "comment": "min_date and max_date are not available for using with non-user peers." }, { "code": 400, "name": "MAX_DATE_INVALID", "comment": "The specified maximum date is invalid." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "MIN_DATE_INVALID", "comment": "The specified minimum date is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.deleteMessages": { "comment": "Deletes messages by their identifiers.", "arguments": { "flags": "Flags, see TL conditional fields", "revoke": "Whether to delete messages for all participants of the chat", "id": "Message ID list" }, "throws": [{ "code": 403, "name": "MESSAGE_DELETE_FORBIDDEN", "comment": "You can't delete one of the messages you tried to delete, most likely because it is a service message." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }], "available": "both" }, "contacts.block": { "comment": "Adds a peer to a blocklist, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "my_stories_from": "Whether the peer should be added to the story blocklist; if not set, the peer will be added to the main blocklist, see here » for more info.", "id": "Peer" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CONTACT_ID_INVALID", "comment": "The provided contact ID is invalid." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.setTyping": { "comment": "Sends a current user typing event (see SendMessageAction for all event types) to a conversation partner or group.", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Target user or group", "top_msg_id": "Topic ID", "action": "Type of action" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 403, "name": "GROUPCALL_FORBIDDEN", "comment": "The group call has already ended." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }, { "code": 403, "name": "USER_IS_BLOCKED", "comment": "You were blocked by this user." }, { "code": 400, "name": "USER_IS_BOT", "comment": "Bots can't send messages to other bots." }], "available": "both" }, "messages.receivedMessages": { "comment": "Confirms receipt of messages by a client, cancels PUSH-notification sending.", "arguments": { "max_id": "Maximum message ID available in a client." }, "available": "user" }, "messages.sendMessage": { "comment": "Sends a message to a chat", "arguments": { "flags": "Flags, see TL conditional fields", "no_webpage": "Set this flag to disable generation of the webpage preview", "silent": "Send this message silently (no notifications for the receivers)", "background": "Send this message as background message", "clear_draft": "Clear the draft field", "noforwards": "Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled", "update_stickersets_order": "Whether to move used stickersets to top, see here for more info on this flag »", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "peer": "The destination where the message will be sent", "reply_to": "If set, indicates that the message should be sent in reply to the specified message or story.
Also used to quote other messages.", "message": "The message", "random_id": "Unique client message ID required to prevent message resending", "reply_markup": "Reply markup for sending bot buttons", "entities": "Message entities for sending styled text", "schedule_date": "Scheduled message date for scheduled messages", "send_as": "Send this message as the specified peer", "quick_reply_shortcut": "Add the message to the specified quick reply shortcut », instead.", "effect": "Specifies a message effect » to use for the message." }, "throws": [{ "code": 400, "name": "ADMIN_RIGHTS_EMPTY", "comment": "The chatAdminRights constructor passed in keyboardButtonRequestPeer.peer_type.user_admin_rights has no rights set (i.e. flags is 0)." }, { "code": 400, "name": "BOT_DOMAIN_INVALID", "comment": "Bot domain invalid." }, { "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "BUSINESS_PEER_INVALID", "comment": "Messages can't be set to the specified peer through the current business connection." }, { "code": 400, "name": "BUTTON_DATA_INVALID", "comment": "The data of one or more of the buttons you provided is invalid." }, { "code": 400, "name": "BUTTON_TYPE_INVALID", "comment": "The type of one or more of the buttons you provided is invalid." }, { "code": 400, "name": "BUTTON_URL_INVALID", "comment": "Button URL invalid." }, { "code": 400, "name": "BUTTON_USER_INVALID", "comment": "The user_id passed to inputKeyboardButtonUserProfile is invalid!" }, { "code": 400, "name": "BUTTON_USER_PRIVACY_RESTRICTED", "comment": "The privacy setting of the user specified in a {@link RawInputKeyboardButtonUserProfile} button do not allow creating such a button." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_GUEST_SEND_FORBIDDEN", "comment": "You join the discussion group before commenting, see here » for more info." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_RESTRICTED", "comment": "You can't send messages in this chat, you were restricted." }, { "code": 403, "name": "CHAT_SEND_PLAIN_FORBIDDEN", "comment": "You can't send non-media (text) messages in this chat." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "DOCUMENT_INVALID", "comment": "The specified document is invalid." }, { "code": 400, "name": "ENCRYPTION_DECLINED", "comment": "The secret chat was declined." }, { "code": 400, "name": "ENTITIES_TOO_LONG", "comment": "You provided too many styled message entities." }, { "code": 400, "name": "ENTITY_BOUNDS_INVALID", "comment": "A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length." }, { "code": 400, "name": "ENTITY_MENTION_USER_INVALID", "comment": "You mentioned an invalid user." }, { "code": 400, "name": "FROM_MESSAGE_BOT_DISABLED", "comment": "Bots can't use fromMessage min constructors." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MESSAGE_EMPTY", "comment": "The provided message is empty." }, { "code": 400, "name": "MESSAGE_TOO_LONG", "comment": "The provided message is too long." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 500, "name": "MSG_WAIT_FAILED", "comment": "A waiting call returned an error." }, { "code": 406, "name": "PAYMENT_UNSUPPORTED", "comment": "A detailed description of the error will be received separately as described here »." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "PINNED_DIALOGS_TOO_MUCH", "comment": "Too many pinned dialogs." }, { "code": 400, "name": "POLL_OPTION_INVALID", "comment": "Invalid poll option provided." }, { "code": 406, "name": "PRIVACY_PREMIUM_REQUIRED", "comment": "You need a Telegram Premium subscription to send a message to this user." }, { "code": 400, "name": "QUICK_REPLIES_TOO_MUCH", "comment": "A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached." }, { "code": 400, "name": "QUOTE_TEXT_INVALID", "comment": "The specified reply_to.quote_text field is invalid." }, { "code": 500, "name": "RANDOM_ID_DUPLICATE", "comment": "You provided a random ID that was already used." }, { "code": 400, "name": "REPLY_MARKUP_INVALID", "comment": "The provided reply markup is invalid." }, { "code": 400, "name": "REPLY_MARKUP_TOO_LONG", "comment": "The specified reply_markup is too long." }, { "code": 400, "name": "REPLY_MESSAGES_TOO_MUCH", "comment": "Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached." }, { "code": 400, "name": "REPLY_MESSAGE_ID_INVALID", "comment": "The specified reply-to message ID is invalid." }, { "code": 400, "name": "REPLY_TO_INVALID", "comment": "The specified reply_to field is invalid." }, { "code": 400, "name": "REPLY_TO_USER_INVALID", "comment": "The replied-to user is invalid." }, { "code": 400, "name": "SCHEDULE_BOT_NOT_ALLOWED", "comment": "Bots cannot schedule messages." }, { "code": 400, "name": "SCHEDULE_DATE_TOO_LATE", "comment": "You can't schedule a message this far in the future." }, { "code": 400, "name": "SCHEDULE_STATUS_PRIVATE", "comment": "Can't schedule until user is online, if the user's last seen timestamp is hidden by their privacy settings." }, { "code": 400, "name": "SCHEDULE_TOO_MUCH", "comment": "There are too many scheduled messages." }, { "code": 400, "name": "SEND_AS_PEER_INVALID", "comment": "You can't send messages as the specified peer." }, { "code": 420, "name": "SLOWMODE_WAIT_%d", "comment": "Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat." }, { "code": 400, "name": "STORY_ID_INVALID", "comment": "The specified story ID is invalid." }, { "code": 406, "name": "TOPIC_CLOSED", "comment": "This topic was closed, you can't send messages to it anymore." }, { "code": 406, "name": "TOPIC_DELETED", "comment": "The specified topic was deleted." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }, { "code": 403, "name": "USER_IS_BLOCKED", "comment": "You were blocked by this user." }, { "code": 400, "name": "USER_IS_BOT", "comment": "Bots can't send messages to other bots." }, { "code": 400, "name": "WC_CONVERT_URL_INVALID", "comment": "WC convert URL invalid." }, { "code": 400, "name": "YOU_BLOCKED_USER", "comment": "You blocked this user." }], "available": "both" }, "messages.forwardMessages": { "comment": "Forwards messages by their IDs.", "arguments": { "flags": "Flags, see TL conditional fields", "silent": "Whether to send messages silently (no notification will be triggered on the destination clients)", "background": "Whether to send the message in background", "with_my_score": "When forwarding games, whether to include your score in the game", "drop_author": "Whether to forward messages without quoting the original author", "drop_media_captions": "Whether to strip captions from media", "noforwards": "Only for bots, disallows further re-forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled", "from_peer": "Source of messages", "id": "IDs of messages", "random_id": "Random ID to prevent resending of messages", "to_peer": "Destination peer", "top_msg_id": "Destination forum topic", "schedule_date": "Scheduled message date for scheduled messages", "send_as": "Forward the messages as the specified peer", "quick_reply_shortcut": "Add the messages to the specified quick reply shortcut », instead." }, "throws": [{ "code": 400, "name": "BROADCAST_PUBLIC_VOTERS_FORBIDDEN", "comment": "You can't forward polls with public voters." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 406, "name": "CHAT_FORWARDS_RESTRICTED", "comment": "You can't forward messages from a protected chat." }, { "code": 403, "name": "CHAT_GUEST_SEND_FORBIDDEN", "comment": "You join the discussion group before commenting, see here » for more info." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_RESTRICTED", "comment": "You can't send messages in this chat, you were restricted." }, { "code": 403, "name": "CHAT_SEND_AUDIOS_FORBIDDEN", "comment": "You can't send audio messages in this chat." }, { "code": 403, "name": "CHAT_SEND_DOCS_FORBIDDEN", "comment": "You can't send documents in this chat." }, { "code": 403, "name": "CHAT_SEND_GAME_FORBIDDEN", "comment": "You can't send a game to this chat." }, { "code": 403, "name": "CHAT_SEND_GIFS_FORBIDDEN", "comment": "You can't send gifs in this chat." }, { "code": 403, "name": "CHAT_SEND_MEDIA_FORBIDDEN", "comment": "You can't send media in this chat." }, { "code": 403, "name": "CHAT_SEND_PHOTOS_FORBIDDEN", "comment": "You can't send photos in this chat." }, { "code": 403, "name": "CHAT_SEND_PLAIN_FORBIDDEN", "comment": "You can't send non-media (text) messages in this chat." }, { "code": 403, "name": "CHAT_SEND_POLL_FORBIDDEN", "comment": "You can't send polls in this chat." }, { "code": 403, "name": "CHAT_SEND_STICKERS_FORBIDDEN", "comment": "You can't send stickers in this chat." }, { "code": 403, "name": "CHAT_SEND_VIDEOS_FORBIDDEN", "comment": "You can't send videos in this chat." }, { "code": 403, "name": "CHAT_SEND_VOICES_FORBIDDEN", "comment": "You can't send voice recordings in this chat." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "GROUPED_MEDIA_INVALID", "comment": "Invalid grouped media." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MEDIA_EMPTY", "comment": "The provided media object is invalid." }, { "code": 400, "name": "MESSAGE_IDS_EMPTY", "comment": "No message ids were provided." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 406, "name": "PAYMENT_UNSUPPORTED", "comment": "A detailed description of the error will be received separately as described here »." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }, { "code": 406, "name": "PRIVACY_PREMIUM_REQUIRED", "comment": "You need a Telegram Premium subscription to send a message to this user." }, { "code": 400, "name": "QUICK_REPLIES_TOO_MUCH", "comment": "A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached." }, { "code": 400, "name": "QUIZ_ANSWER_MISSING", "comment": "You can forward a quiz while hiding the original author only after choosing an option in the quiz." }, { "code": 500, "name": "RANDOM_ID_DUPLICATE", "comment": "You provided a random ID that was already used." }, { "code": 400, "name": "RANDOM_ID_INVALID", "comment": "A provided random ID is invalid." }, { "code": 400, "name": "REPLY_MESSAGES_TOO_MUCH", "comment": "Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached." }, { "code": 400, "name": "SCHEDULE_BOT_NOT_ALLOWED", "comment": "Bots cannot schedule messages." }, { "code": 400, "name": "SCHEDULE_DATE_TOO_LATE", "comment": "You can't schedule a message this far in the future." }, { "code": 400, "name": "SCHEDULE_TOO_MUCH", "comment": "There are too many scheduled messages." }, { "code": 400, "name": "SEND_AS_PEER_INVALID", "comment": "You can't send messages as the specified peer." }, { "code": 400, "name": "SLOWMODE_MULTI_MSGS_DISABLED", "comment": "Slowmode is enabled, you cannot forward multiple messages to this group." }, { "code": 420, "name": "SLOWMODE_WAIT_%d", "comment": "Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat." }, { "code": 406, "name": "TOPIC_CLOSED", "comment": "This topic was closed, you can't send messages to it anymore." }, { "code": 406, "name": "TOPIC_DELETED", "comment": "The specified topic was deleted." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }, { "code": 403, "name": "USER_IS_BLOCKED", "comment": "You were blocked by this user." }, { "code": 400, "name": "USER_IS_BOT", "comment": "Bots can't send messages to other bots." }, { "code": 403, "name": "VOICE_MESSAGES_FORBIDDEN", "comment": "This user's privacy settings forbid you from sending voice messages." }, { "code": 400, "name": "YOU_BLOCKED_USER", "comment": "You blocked this user." }], "available": "both" }, "messages.sendMedia": { "comment": "Send a media", "arguments": { "flags": "Flags, see TL conditional fields", "silent": "Send message silently (no notification should be triggered)", "background": "Send message in background", "clear_draft": "Clear the draft", "noforwards": "Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled", "update_stickersets_order": "Whether to move used stickersets to top, see here for more info on this flag »", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "peer": "Destination", "reply_to": "If set, indicates that the message should be sent in reply to the specified message or story.", "media": "Attached media", "message": "Caption", "random_id": "Random ID to avoid resending the same message", "reply_markup": "Reply markup for bot keyboards", "entities": "Message entities for styled text", "schedule_date": "Scheduled message date for scheduled messages", "send_as": "Send this message as the specified peer", "quick_reply_shortcut": "Add the message to the specified quick reply shortcut », instead.", "effect": "Specifies a message effect » to use for the message." }, "throws": [{ "code": 400, "name": "BOT_GAMES_DISABLED", "comment": "Games can't be sent to channels." }, { "code": 400, "name": "BOT_PAYMENTS_DISABLED", "comment": "Please enable bot payments in botfather before calling this method." }, { "code": 400, "name": "BROADCAST_PUBLIC_VOTERS_FORBIDDEN", "comment": "You can't forward polls with public voters." }, { "code": 400, "name": "BUTTON_DATA_INVALID", "comment": "The data of one or more of the buttons you provided is invalid." }, { "code": 400, "name": "BUTTON_POS_INVALID", "comment": "The position of one of the keyboard buttons is invalid (i.e. a Game or Pay button not in the first position, and so on...)." }, { "code": 400, "name": "BUTTON_TYPE_INVALID", "comment": "The type of one or more of the buttons you provided is invalid." }, { "code": 400, "name": "BUTTON_URL_INVALID", "comment": "Button URL invalid." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_FORWARDS_RESTRICTED", "comment": "You can't forward messages from a protected chat." }, { "code": 403, "name": "CHAT_GUEST_SEND_FORBIDDEN", "comment": "You join the discussion group before commenting, see here » for more info." }, { "code": 400, "name": "CHAT_RESTRICTED", "comment": "You can't send messages in this chat, you were restricted." }, { "code": 403, "name": "CHAT_SEND_AUDIOS_FORBIDDEN", "comment": "You can't send audio messages in this chat." }, { "code": 403, "name": "CHAT_SEND_DOCS_FORBIDDEN", "comment": "You can't send documents in this chat." }, { "code": 403, "name": "CHAT_SEND_GIFS_FORBIDDEN", "comment": "You can't send gifs in this chat." }, { "code": 403, "name": "CHAT_SEND_MEDIA_FORBIDDEN", "comment": "You can't send media in this chat." }, { "code": 403, "name": "CHAT_SEND_PHOTOS_FORBIDDEN", "comment": "You can't send photos in this chat." }, { "code": 403, "name": "CHAT_SEND_PLAIN_FORBIDDEN", "comment": "You can't send non-media (text) messages in this chat." }, { "code": 403, "name": "CHAT_SEND_POLL_FORBIDDEN", "comment": "You can't send polls in this chat." }, { "code": 403, "name": "CHAT_SEND_ROUNDVIDEOS_FORBIDDEN", "comment": "You can't send round videos to this chat." }, { "code": 403, "name": "CHAT_SEND_STICKERS_FORBIDDEN", "comment": "You can't send stickers in this chat." }, { "code": 403, "name": "CHAT_SEND_VIDEOS_FORBIDDEN", "comment": "You can't send videos in this chat." }, { "code": 403, "name": "CHAT_SEND_VOICES_FORBIDDEN", "comment": "You can't send voice recordings in this chat." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "CURRENCY_TOTAL_AMOUNT_INVALID", "comment": "The total amount of all prices is invalid." }, { "code": 400, "name": "DOCUMENT_INVALID", "comment": "The specified document is invalid." }, { "code": 400, "name": "EMOTICON_INVALID", "comment": "The specified emoji is invalid." }, { "code": 400, "name": "ENTITY_BOUNDS_INVALID", "comment": "A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length." }, { "code": 400, "name": "EXTERNAL_URL_INVALID", "comment": "External URL invalid." }, { "code": 400, "name": "FILE_PARTS_INVALID", "comment": "The number of file parts is invalid." }, { "code": 400, "name": "FILE_PART_LENGTH_INVALID", "comment": "The length of a file part is invalid." }, { "code": 400, "name": "FILE_REFERENCE_EMPTY", "comment": "An empty file reference was specified." }, { "code": 400, "name": "FILE_REFERENCE_EXPIRED", "comment": "File reference expired, it must be refetched as described in the documentation." }, { "code": 400, "name": "GAME_BOT_INVALID", "comment": "Bots can't send another bot's game." }, { "code": 400, "name": "IMAGE_PROCESS_FAILED", "comment": "Failure while processing image." }, { "code": 400, "name": "INPUT_FILE_INVALID", "comment": "The specified InputFile is invalid." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MD5_CHECKSUM_INVALID", "comment": "The MD5 checksums do not match." }, { "code": 400, "name": "MEDIA_CAPTION_TOO_LONG", "comment": "The caption is too long." }, { "code": 400, "name": "MEDIA_EMPTY", "comment": "The provided media object is invalid." }, { "code": 400, "name": "MEDIA_INVALID", "comment": "Media invalid." }, { "code": 400, "name": "MESSAGE_EMPTY", "comment": "The provided message is empty." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PAYMENT_PROVIDER_INVALID", "comment": "The specified payment provider is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "PHOTO_EXT_INVALID", "comment": "The extension of the photo is invalid." }, { "code": 400, "name": "PHOTO_INVALID_DIMENSIONS", "comment": "The photo dimensions are invalid." }, { "code": 400, "name": "PHOTO_SAVE_FILE_INVALID", "comment": "Internal issues, try again later." }, { "code": 400, "name": "POLL_ANSWERS_INVALID", "comment": "Invalid poll answers were provided." }, { "code": 400, "name": "POLL_ANSWER_INVALID", "comment": "One of the poll answers is not acceptable." }, { "code": 400, "name": "POLL_OPTION_DUPLICATE", "comment": "Duplicate poll options provided." }, { "code": 400, "name": "POLL_OPTION_INVALID", "comment": "Invalid poll option provided." }, { "code": 400, "name": "POLL_QUESTION_INVALID", "comment": "One of the poll questions is not acceptable." }, { "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }, { "code": 403, "name": "PRIVACY_PREMIUM_REQUIRED", "comment": "You need a Telegram Premium subscription to send a message to this user." }, { "code": 400, "name": "QUICK_REPLIES_TOO_MUCH", "comment": "A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached." }, { "code": 400, "name": "QUIZ_CORRECT_ANSWERS_EMPTY", "comment": "No correct quiz answer was specified." }, { "code": 400, "name": "QUIZ_CORRECT_ANSWERS_TOO_MUCH", "comment": "You specified too many correct answers in a quiz, quizzes can only have one right answer!" }, { "code": 400, "name": "QUIZ_CORRECT_ANSWER_INVALID", "comment": "An invalid value was provided to the correct_answers field." }, { "code": 400, "name": "QUIZ_MULTIPLE_INVALID", "comment": "Quizzes can't have the multiple_choice flag set!" }, { "code": 500, "name": "RANDOM_ID_DUPLICATE", "comment": "You provided a random ID that was already used." }, { "code": 400, "name": "REPLY_MARKUP_BUY_EMPTY", "comment": "Reply markup for buy button empty." }, { "code": 400, "name": "REPLY_MARKUP_GAME_EMPTY", "comment": "A game message is being edited, but the newly provided keyboard doesn't have a keyboardButtonGame button." }, { "code": 400, "name": "REPLY_MARKUP_INVALID", "comment": "The provided reply markup is invalid." }, { "code": 400, "name": "REPLY_MARKUP_TOO_LONG", "comment": "The specified reply_markup is too long." }, { "code": 400, "name": "REPLY_MESSAGES_TOO_MUCH", "comment": "Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached." }, { "code": 400, "name": "SCHEDULE_BOT_NOT_ALLOWED", "comment": "Bots cannot schedule messages." }, { "code": 400, "name": "SCHEDULE_DATE_TOO_LATE", "comment": "You can't schedule a message this far in the future." }, { "code": 400, "name": "SCHEDULE_TOO_MUCH", "comment": "There are too many scheduled messages." }, { "code": 400, "name": "SEND_AS_PEER_INVALID", "comment": "You can't send messages as the specified peer." }, { "code": 420, "name": "SLOWMODE_WAIT_%d", "comment": "Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat." }, { "code": 400, "name": "STORY_ID_INVALID", "comment": "The specified story ID is invalid." }, { "code": 406, "name": "TOPIC_CLOSED", "comment": "This topic was closed, you can't send messages to it anymore." }, { "code": 406, "name": "TOPIC_DELETED", "comment": "The specified topic was deleted." }, { "code": 400, "name": "TTL_MEDIA_INVALID", "comment": "Invalid media Time To Live was provided." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }, { "code": 403, "name": "USER_IS_BLOCKED", "comment": "You were blocked by this user." }, { "code": 400, "name": "USER_IS_BOT", "comment": "Bots can't send messages to other bots." }, { "code": 400, "name": "VIDEO_CONTENT_TYPE_INVALID", "comment": "The video's content type is invalid." }, { "code": 400, "name": "VOICE_MESSAGES_FORBIDDEN", "comment": "This user's privacy settings forbid you from sending voice messages." }, { "code": 400, "name": "WEBDOCUMENT_MIME_INVALID", "comment": "Invalid webdocument mime type provided." }, { "code": 400, "name": "WEBPAGE_CURL_FAILED", "comment": "Failure while fetching the webpage with cURL." }, { "code": 400, "name": "WEBPAGE_MEDIA_EMPTY", "comment": "Webpage media empty." }, { "code": 400, "name": "WEBPAGE_NOT_FOUND", "comment": "A preview for the specified webpage url could not be generated." }, { "code": 400, "name": "WEBPAGE_URL_INVALID", "comment": "The specified webpage url is invalid." }, { "code": 400, "name": "YOU_BLOCKED_USER", "comment": "You blocked this user." }], "available": "both" }, "messages.reportSpam": { "comment": "Report a new incoming chat for spam, if the {@link RawPeerSettings} of the chat allow us to do that", "arguments": { "peer": "Peer to report" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getPeerSettings": { "comment": "Get peer settings", "arguments": { "peer": "The peer" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getChats": { "comment": "Returns chat basic info on their IDs.", "arguments": { "id": "List of chat IDs" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "both" }, "messages.report": { "comment": "Report a message in a chat for violation of telegram's Terms of Service", "arguments": { "peer": "Peer", "id": "IDs of messages to report", "reason": "Why are these messages being reported", "message": "Comment for report moderation" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getFullChat": { "comment": "Get full info about a basic group.", "arguments": { "chat_id": "Basic group ID." }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "both" }, "messages.editChatTitle": { "comment": "Changes chat name and sends a service message on it.", "arguments": { "chat_id": "Chat ID", "title": "New chat name, different from the old one" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "CHAT_TITLE_EMPTY", "comment": "No chat title provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "both" }, "messages.editChatPhoto": { "comment": "Changes chat photo and sends a service message on it", "arguments": { "chat_id": "Chat ID", "photo": "Photo to be set" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "IMAGE_PROCESS_FAILED", "comment": "Failure while processing image." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "PHOTO_CROP_SIZE_SMALL", "comment": "Photo is too small." }, { "code": 400, "name": "PHOTO_EXT_INVALID", "comment": "The extension of the photo is invalid." }, { "code": 400, "name": "PHOTO_INVALID", "comment": "Photo invalid." }], "available": "both" }, "messages.addChatUser": { "comment": "Adds a user to a chat and sends a service message on it.", "arguments": { "chat_id": "Chat ID", "user_id": "User ID to be added", "fwd_limit": "Number of last messages to be forwarded" }, "throws": [{ "code": 400, "name": "BOT_GROUPS_BLOCKED", "comment": "This bot can't be added to groups." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USERS_TOO_MUCH", "comment": "The maximum number of users has been exceeded (to create a chat, for example)." }, { "code": 400, "name": "USER_ALREADY_PARTICIPANT", "comment": "The user is already in the group." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }, { "code": 400, "name": "USER_IS_BLOCKED", "comment": "You were blocked by this user." }, { "code": 403, "name": "USER_NOT_MUTUAL_CONTACT", "comment": "The provided user is not a mutual contact." }, { "code": 403, "name": "USER_PRIVACY_RESTRICTED", "comment": "The user's privacy settings do not allow you to do this." }, { "code": 400, "name": "YOU_BLOCKED_USER", "comment": "You blocked this user." }], "available": "user" }, "messages.deleteChatUser": { "comment": "Deletes a user from a chat and sends a service message on it.", "arguments": { "flags": "Flags, see TL conditional fields", "revoke_history": "Remove the entire chat history of the specified user in this chat.", "chat_id": "Chat ID", "user_id": "User ID to be deleted" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }, { "code": 400, "name": "USER_NOT_PARTICIPANT", "comment": "You're not a member of this supergroup/channel." }], "available": "both" }, "messages.getDhConfig": { "comment": "Returns configuration parameters for Diffie-Hellman key generation. Can also return a random sequence of bytes of required length.", "arguments": { "version": "Value of the version parameter from {@link messages.RawDhConfig}, available at the client", "random_length": "Length of the required random sequence" }, "throws": [{ "code": 400, "name": "RANDOM_LENGTH_INVALID", "comment": "Random length invalid." }], "available": "user" }, "messages.requestEncryption": { "comment": "Sends a request to start a secret chat to the user.", "arguments": { "user_id": "User ID", "random_id": "Unique client request ID required to prevent resending. This also doubles as the chat ID.", "g_a": "A = g ^ a mod p, see Wikipedia" }, "throws": [{ "code": 400, "name": "DH_G_A_INVALID", "comment": "g_a invalid." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "user" }, "messages.acceptEncryption": { "comment": "Confirms creation of a secret chat", "arguments": { "peer": "Secret chat ID", "g_b": "B = g ^ b mod p, see Wikipedia", "key_fingerprint": "64-bit fingerprint of the received key" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "ENCRYPTION_ALREADY_ACCEPTED", "comment": "Secret chat already accepted." }, { "code": 400, "name": "ENCRYPTION_ALREADY_DECLINED", "comment": "The secret chat was already declined." }], "available": "user" }, "messages.discardEncryption": { "comment": "Cancels a request for creation and/or delete info on secret chat.", "arguments": { "flags": "Flags, see TL conditional fields", "delete_history": "Whether to delete the entire chat history for the other user as well", "chat_id": "Secret chat ID" }, "throws": [{ "code": 400, "name": "CHAT_ID_EMPTY", "comment": "The provided chat ID is empty." }, { "code": 400, "name": "ENCRYPTION_ALREADY_ACCEPTED", "comment": "Secret chat already accepted." }, { "code": 400, "name": "ENCRYPTION_ALREADY_DECLINED", "comment": "The secret chat was already declined." }, { "code": 400, "name": "ENCRYPTION_ID_INVALID", "comment": "The provided secret chat ID is invalid." }], "available": "user" }, "messages.setEncryptedTyping": { "comment": "Send typing event by the current user to a secret chat.", "arguments": { "peer": "Secret chat ID", "typing": "Typing.
Possible values:
true, if the user started typing and more than 5 seconds have passed since the last request
false, if the user stopped typing" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }], "available": "user" }, "messages.readEncryptedHistory": { "comment": "Marks message history within a secret chat as read.", "arguments": { "peer": "Secret chat ID", "max_date": "Maximum date value for received messages in history" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "MAX_DATE_INVALID", "comment": "The specified maximum date is invalid." }, { "code": 400, "name": "MSG_WAIT_FAILED", "comment": "A waiting call returned an error." }], "available": "user" }, "messages.sendEncrypted": { "comment": "Sends a text message to a secret chat.", "arguments": { "flags": "Flags, see TL conditional fields", "silent": "Send encrypted message without a notification", "peer": "Secret chat ID", "random_id": "Unique client message ID, necessary to avoid message resending", "data": "TL-serialization of DecryptedMessage type, encrypted with a key that was created during chat initialization" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "DATA_INVALID", "comment": "Encrypted data invalid." }, { "code": 400, "name": "DATA_TOO_LONG", "comment": "Data too long." }, { "code": 400, "name": "ENCRYPTION_DECLINED", "comment": "The secret chat was declined." }, { "code": 500, "name": "MSG_WAIT_FAILED", "comment": "A waiting call returned an error." }, { "code": 403, "name": "USER_IS_BLOCKED", "comment": "You were blocked by this user." }], "available": "user" }, "messages.sendEncryptedService": { "comment": "Sends a service message to a secret chat.", "arguments": { "peer": "Secret chat ID", "random_id": "Unique client message ID required to prevent message resending", "data": "TL-serialization of DecryptedMessage type, encrypted with a key generated during chat initialization" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "DATA_INVALID", "comment": "Encrypted data invalid." }, { "code": 400, "name": "ENCRYPTION_DECLINED", "comment": "The secret chat was declined." }, { "code": 400, "name": "ENCRYPTION_ID_INVALID", "comment": "The provided secret chat ID is invalid." }, { "code": 500, "name": "MSG_WAIT_FAILED", "comment": "A waiting call returned an error." }, { "code": 403, "name": "USER_DELETED", "comment": "You can't send this secret message because the other participant deleted their account." }, { "code": 403, "name": "USER_IS_BLOCKED", "comment": "You were blocked by this user." }], "available": "user" }, "messages.readMessageContents": { "comment": "Notifies the sender about the recipient having listened a voice message or watched a video.", "arguments": { "id": "Message ID list" }, "available": "user" }, "messages.reportEncryptedSpam": { "comment": "Report a secret chat for spam", "arguments": { "peer": "The secret chat to report" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }], "available": "user" }, "messages.getStickers": { "comment": "Get stickers by emoji", "arguments": { "emoticon": "The emoji", "hash": "Hash used for caching, for more info click here." }, "throws": [{ "code": 400, "name": "EMOTICON_EMPTY", "comment": "The emoji is empty." }], "available": "user" }, "messages.exportChatInvite": { "comment": "Export an invite link for a chat", "arguments": { "flags": "Flags, see TL conditional fields", "legacy_revoke_permanent": "Legacy flag, reproducing legacy behavior of this method: if set, revokes all previous links before creating a new one. Kept for bot API BC, should not be used by modern clients.", "request_needed": "Whether admin confirmation is required before admitting each separate user into the chat", "peer": "Chat", "expire_date": "Expiration date", "usage_limit": "Maximum number of users that can join using this link", "title": "Description of the invite link, visible only to administrators" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "EXPIRE_DATE_INVALID", "comment": "The specified expiration date is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USAGE_LIMIT_INVALID", "comment": "The specified usage limit is invalid." }], "available": "both" }, "messages.getWebPagePreview": { "comment": "Get preview of webpage", "arguments": { "flags": "Flags, see TL conditional fields", "message": "Message from which to extract the preview", "entities": "Message entities for styled text" }, "throws": [{ "code": 400, "name": "ENTITY_BOUNDS_INVALID", "comment": "A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length." }, { "code": 400, "name": "MESSAGE_EMPTY", "comment": "The provided message is empty." }], "available": "user" }, "messages.checkChatInvite": { "comment": "Check the validity of a chat invite link and get basic info about it", "arguments": { "hash": "Invite hash from chat invite deep link »." }, "throws": [{ "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "INVITE_HASH_EMPTY", "comment": "The invite hash is empty." }, { "code": 406, "name": "INVITE_HASH_EXPIRED", "comment": "The invite link has expired." }, { "code": 400, "name": "INVITE_HASH_INVALID", "comment": "The invite hash is invalid." }], "available": "user" }, "messages.getAllStickers": { "comment": "Get all installed stickers", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.importChatInvite": { "comment": "Import a chat invite and join a private chat/supergroup/channel", "arguments": { "hash": "hash from a chat invite deep link" }, "throws": [{ "code": 400, "name": "CHANNELS_TOO_MUCH", "comment": "You have joined too many channels/supergroups." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_INVALID", "comment": "Invalid chat." }, { "code": 400, "name": "INVITE_HASH_EMPTY", "comment": "The invite hash is empty." }, { "code": 406, "name": "INVITE_HASH_EXPIRED", "comment": "The invite link has expired." }, { "code": 400, "name": "INVITE_HASH_INVALID", "comment": "The invite hash is invalid." }, { "code": 400, "name": "INVITE_REQUEST_SENT", "comment": "You have successfully requested to join this chat or channel." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USERS_TOO_MUCH", "comment": "The maximum number of users has been exceeded (to create a chat, for example)." }, { "code": 400, "name": "USER_ALREADY_PARTICIPANT", "comment": "The user is already in the group." }, { "code": 400, "name": "USER_CHANNELS_TOO_MUCH", "comment": "One of the users you tried to add is already in too many channels/supergroups." }], "available": "user" }, "messages.getStickerSet": { "comment": "Get info about a stickerset", "arguments": { "stickerset": "Stickerset", "hash": "Hash used for caching, for more info click here" }, "throws": [{ "code": 400, "name": "EMOTICON_STICKERPACK_MISSING", "comment": "inputStickerSetDice.emoji cannot be empty." }, { "code": 406, "name": "STICKERSET_INVALID", "comment": "The provided sticker set is invalid." }], "available": "both" }, "messages.uninstallStickerSet": { "comment": "Uninstall a stickerset", "arguments": { "stickerset": "The stickerset to uninstall" }, "throws": [{ "code": 406, "name": "STICKERSET_INVALID", "comment": "The provided sticker set is invalid." }], "available": "user" }, "messages.installStickerSet": { "comment": "Install a stickerset", "arguments": { "stickerset": "Stickerset to install", "archived": "Whether to archive stickerset" }, "throws": [{ "code": 406, "name": "STICKERSET_INVALID", "comment": "The provided sticker set is invalid." }], "available": "user" }, "messages.startBot": { "comment": "Start a conversation with a bot using a deep linking parameter", "arguments": { "bot": "The bot", "peer": "The chat where to start the bot, can be the bot's private chat or a group", "random_id": "Random ID to avoid resending the same message", "start_param": "Deep linking parameter" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 500, "name": "RANDOM_ID_DUPLICATE", "comment": "You provided a random ID that was already used." }, { "code": 400, "name": "START_PARAM_EMPTY", "comment": "The start parameter is empty." }, { "code": 400, "name": "START_PARAM_INVALID", "comment": "Start parameter invalid." }, { "code": 400, "name": "START_PARAM_TOO_LONG", "comment": "Start parameter is too long." }], "available": "user" }, "messages.getMessagesViews": { "comment": "Get and increase the view counter of a message sent or forwarded from a channel", "arguments": { "peer": "Peer where the message was found", "id": "ID of message", "increment": "Whether to mark the message as viewed and increment the view counter" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.createChat": { "comment": "Creates a new chat.", "arguments": { "flags": "Flags, see TL conditional fields", "users": "List of user IDs to be invited", "title": "Chat name", "ttl_period": "Time-to-live of all messages that will be sent in the chat: once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well. You can use {@link messages.RawSetDefaultHistoryTTLRequest} to edit this value later." }, "throws": [{ "code": 500, "name": "CHAT_ID_GENERATE_FAILED", "comment": "Failure while generating the chat ID." }, { "code": 400, "name": "CHAT_INVALID", "comment": "Invalid chat." }, { "code": 400, "name": "CHAT_TITLE_EMPTY", "comment": "No chat title provided." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "TTL_PERIOD_INVALID", "comment": "The specified TTL period is invalid." }, { "code": 400, "name": "USERS_TOO_FEW", "comment": "Not enough users (to create a chat, for example)." }, { "code": 406, "name": "USER_RESTRICTED", "comment": "You're spamreported, you can't create channels or chats." }], "available": "user" }, "messages.editChatAdmin": { "comment": "Make a user admin in a basic group.", "arguments": { "chat_id": "The ID of the group", "user_id": "The user to make admin", "is_admin": "Whether to make them admin" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }, { "code": 400, "name": "USER_NOT_PARTICIPANT", "comment": "You're not a member of this supergroup/channel." }], "available": "user" }, "messages.migrateChat": { "comment": "Turn a basic group into a supergroup", "arguments": { "chat_id": "Basic group to migrate" }, "throws": [{ "code": 400, "name": "CHANNELS_TOO_MUCH", "comment": "You have joined too many channels/supergroups." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 500, "name": "CHAT_INVALID", "comment": "Invalid chat." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.reorderStickerSets": { "comment": "Reorder installed stickersets", "arguments": { "flags": "Flags, see TL conditional fields", "masks": "Reorder mask stickersets", "emojis": "Reorder custom emoji stickersets", "order": "New stickerset order by stickerset IDs" }, "available": "user" }, "messages.sendEncryptedFile": { "comment": "Sends a message with a file attachment to a secret chat", "arguments": { "flags": "Flags, see TL conditional fields", "silent": "Whether to send the file without triggering a notification", "peer": "Secret chat ID", "random_id": "Unique client message ID necessary to prevent message resending", "data": "TL-serialization of DecryptedMessage type, encrypted with a key generated during chat initialization", "file": "File attachment for the secret chat" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "DATA_TOO_LONG", "comment": "Data too long." }, { "code": 400, "name": "ENCRYPTION_DECLINED", "comment": "The secret chat was declined." }, { "code": 400, "name": "FILE_EMTPY", "comment": "An empty file was provided." }, { "code": 400, "name": "MD5_CHECKSUM_INVALID", "comment": "The MD5 checksums do not match." }, { "code": 400, "name": "MSG_WAIT_FAILED", "comment": "A waiting call returned an error." }], "available": "user" }, "messages.searchGlobal": { "comment": "Search for messages and peers globally", "arguments": { "flags": "Flags, see TL conditional fields", "broadcasts_only": "If set, only returns results from channels (used in the global channel search tab »).", "folder_id": "Peer folder ID, for more info click here", "q": "Query", "filter": "Global search filter", "min_date": "If a positive value was specified, the method will return only messages with date bigger than min_date", "max_date": "If a positive value was transferred, the method will return only messages with date smaller than max_date", "offset_rate": "Initially 0, then set to the {@link messages.RawMessagesSlice}", "offset_peer": "Offsets for pagination, for more info click here", "offset_id": "Offsets for pagination, for more info click here", "limit": "Offsets for pagination, for more info click here" }, "throws": [{ "code": 400, "name": "FOLDER_ID_INVALID", "comment": "Invalid folder ID." }, { "code": 400, "name": "INPUT_FILTER_INVALID", "comment": "The specified filter is invalid." }, { "code": 400, "name": "SEARCH_QUERY_EMPTY", "comment": "The search query is empty." }], "available": "user" }, "messages.receivedQueue": { "comment": "Confirms receipt of messages in a secret chat by client, cancels push notifications.
\nThe method returns a list of random_ids of messages for which push notifications were cancelled.", "arguments": { "max_qts": "Maximum qts value available at the client" }, "throws": [{ "code": 400, "name": "MAX_QTS_INVALID", "comment": "The specified max_qts is invalid." }, { "code": 500, "name": "MSG_WAIT_FAILED", "comment": "A waiting call returned an error." }], "available": "user" }, "messages.getSavedGifs": { "comment": "Get saved GIFs.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.getInlineBotResults": { "comment": "Query an inline bot", "arguments": { "flags": "Flags, see TL conditional fields", "bot": "The bot to query", "peer": "The currently opened chat", "geo_point": "The geolocation, if requested", "query": "The query", "offset": "The offset within the results, will be passed directly as-is to the bot." }, "throws": [{ "code": 400, "name": "BOT_INLINE_DISABLED", "comment": "This bot can't be used in inline mode." }, { "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "BOT_RESPONSE_TIMEOUT", "comment": "A timeout occurred while fetching data from the bot." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": -503, "name": "Timeout", "comment": "Timeout while fetching data." }], "available": "user" }, "messages.getDocumentByHash": { "comment": "Get a document by its SHA256 hash, mainly used for gifs", "arguments": { "sha256": "SHA256 of file", "size": "Size of the file in bytes", "mime_type": "Mime type" }, "throws": [{ "code": 400, "name": "SHA256_HASH_INVALID", "comment": "The provided SHA256 hash is invalid." }], "available": "both" }, "messages.setInlineBotResults": { "comment": "Answer an inline query, for bots only", "arguments": { "flags": "Flags, see TL conditional fields", "gallery": "Set this flag if the results are composed of media files", "private": "Set this flag if results may be cached on the server side only for the user that sent the query. By default, results may be returned to any user who sends the same query", "query_id": "Unique identifier for the answered query", "results": "Vector of results for the inline query", "cache_time": "The maximum amount of time in seconds that the result of the inline query may be cached on the server. Defaults to 300.", "next_offset": "Pass the offset that a client should send in the next query with the same text to receive more results. Pass an empty string if there are no more results or if you don't support pagination. Offset length can't exceed 64 bytes.", "switch_pm": "If passed, clients will display a button on top of the remaining inline result list with the specified text, that switches the user to a private chat with the bot and sends the bot a start message with a certain parameter.", "switch_webview": "If passed, clients will display a button on top of the remaining inline result list with the specified text, that switches the user to the specified inline mode mini app." }, "throws": [{ "code": 400, "name": "ARTICLE_TITLE_EMPTY", "comment": "The title of the article is empty." }, { "code": 400, "name": "AUDIO_CONTENT_URL_EMPTY", "comment": "The remote URL specified in the content field is empty." }, { "code": 400, "name": "AUDIO_TITLE_EMPTY", "comment": "An empty audio title was provided." }, { "code": 400, "name": "BUTTON_DATA_INVALID", "comment": "The data of one or more of the buttons you provided is invalid." }, { "code": 400, "name": "BUTTON_TYPE_INVALID", "comment": "The type of one or more of the buttons you provided is invalid." }, { "code": 400, "name": "BUTTON_URL_INVALID", "comment": "Button URL invalid." }, { "code": 400, "name": "DOCUMENT_INVALID", "comment": "The specified document is invalid." }, { "code": 400, "name": "FILE_CONTENT_TYPE_INVALID", "comment": "File content-type is invalid." }, { "code": 400, "name": "FILE_TITLE_EMPTY", "comment": "An empty file title was specified." }, { "code": 400, "name": "GIF_CONTENT_TYPE_INVALID", "comment": "GIF content-type invalid." }, { "code": 400, "name": "MESSAGE_EMPTY", "comment": "The provided message is empty." }, { "code": 400, "name": "MESSAGE_TOO_LONG", "comment": "The provided message is too long." }, { "code": 400, "name": "NEXT_OFFSET_INVALID", "comment": "The specified offset is longer than 64 bytes." }, { "code": 400, "name": "PHOTO_CONTENT_TYPE_INVALID", "comment": "Photo mime-type invalid." }, { "code": 400, "name": "PHOTO_CONTENT_URL_EMPTY", "comment": "Photo URL invalid." }, { "code": 400, "name": "PHOTO_INVALID", "comment": "Photo invalid." }, { "code": 400, "name": "PHOTO_THUMB_URL_EMPTY", "comment": "Photo thumbnail URL is empty." }, { "code": 400, "name": "QUERY_ID_INVALID", "comment": "The query ID is invalid." }, { "code": 400, "name": "REPLY_MARKUP_INVALID", "comment": "The provided reply markup is invalid." }, { "code": 400, "name": "RESULTS_TOO_MUCH", "comment": "Too many results were provided." }, { "code": 400, "name": "RESULT_ID_DUPLICATE", "comment": "You provided a duplicate result ID." }, { "code": 400, "name": "RESULT_ID_INVALID", "comment": "One of the specified result IDs is invalid." }, { "code": 400, "name": "RESULT_TYPE_INVALID", "comment": "Result type invalid." }, { "code": 400, "name": "SEND_MESSAGE_MEDIA_INVALID", "comment": "Invalid media provided." }, { "code": 400, "name": "SEND_MESSAGE_TYPE_INVALID", "comment": "The message type is invalid." }, { "code": 400, "name": "START_PARAM_EMPTY", "comment": "The start parameter is empty." }, { "code": 400, "name": "START_PARAM_INVALID", "comment": "Start parameter invalid." }, { "code": 400, "name": "STICKER_DOCUMENT_INVALID", "comment": "The specified sticker document is invalid." }, { "code": 400, "name": "SWITCH_PM_TEXT_EMPTY", "comment": "The switch_pm.text field was empty." }, { "code": 400, "name": "SWITCH_WEBVIEW_URL_INVALID", "comment": "The URL specified in switch_webview.url is invalid!" }, { "code": 400, "name": "URL_INVALID", "comment": "Invalid URL provided." }, { "code": 403, "name": "USER_BOT_INVALID", "comment": "User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }, { "code": 400, "name": "VIDEO_TITLE_EMPTY", "comment": "The specified video title is empty." }, { "code": 400, "name": "WEBDOCUMENT_INVALID", "comment": "Invalid webdocument URL provided." }, { "code": 400, "name": "WEBDOCUMENT_MIME_INVALID", "comment": "Invalid webdocument mime type provided." }, { "code": 400, "name": "WEBDOCUMENT_SIZE_TOO_BIG", "comment": "Webdocument is too big!" }, { "code": 400, "name": "WEBDOCUMENT_URL_INVALID", "comment": "The specified webdocument URL is invalid." }], "available": "bot" }, "messages.getMessageEditData": { "comment": "Find out if a media message's caption can be edited", "arguments": { "peer": "Peer where the media was sent", "id": "ID of message" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 403, "name": "MESSAGE_AUTHOR_REQUIRED", "comment": "Message author required." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.sendInlineBotResult": { "comment": "Send a result obtained using {@link messages.RawGetInlineBotResultsRequest}.", "arguments": { "flags": "Flags, see TL conditional fields", "silent": "Whether to send the message silently (no notification will be triggered on the other client)", "background": "Whether to send the message in background", "clear_draft": "Whether to clear the draft", "hide_via": "Whether to hide the via @botname in the resulting message (only for bot usernames encountered in the {@link RawConfig})", "peer": "Destination", "reply_to": "If set, indicates that the message should be sent in reply to the specified message or story.", "random_id": "Random ID to avoid resending the same query", "query_id": "Query ID from {@link messages.RawGetInlineBotResultsRequest}", "id": "Result ID from {@link messages.RawGetInlineBotResultsRequest}", "schedule_date": "Scheduled message date for scheduled messages", "send_as": "Send this message as the specified peer", "quick_reply_shortcut": "Add the message to the specified quick reply shortcut », instead." }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_GUEST_SEND_FORBIDDEN", "comment": "You join the discussion group before commenting, see here » for more info." }, { "code": 400, "name": "CHAT_RESTRICTED", "comment": "You can't send messages in this chat, you were restricted." }, { "code": 403, "name": "CHAT_SEND_AUDIOS_FORBIDDEN", "comment": "You can't send audio messages in this chat." }, { "code": 403, "name": "CHAT_SEND_GAME_FORBIDDEN", "comment": "You can't send a game to this chat." }, { "code": 403, "name": "CHAT_SEND_GIFS_FORBIDDEN", "comment": "You can't send gifs in this chat." }, { "code": 403, "name": "CHAT_SEND_INLINE_FORBIDDEN", "comment": "You can't send inline messages in this group." }, { "code": 403, "name": "CHAT_SEND_MEDIA_FORBIDDEN", "comment": "You can't send media in this chat." }, { "code": 403, "name": "CHAT_SEND_PHOTOS_FORBIDDEN", "comment": "You can't send photos in this chat." }, { "code": 403, "name": "CHAT_SEND_PLAIN_FORBIDDEN", "comment": "You can't send non-media (text) messages in this chat." }, { "code": 403, "name": "CHAT_SEND_STICKERS_FORBIDDEN", "comment": "You can't send stickers in this chat." }, { "code": 403, "name": "CHAT_SEND_VOICES_FORBIDDEN", "comment": "You can't send voice recordings in this chat." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "ENTITY_BOUNDS_INVALID", "comment": "A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length." }, { "code": 400, "name": "INLINE_RESULT_EXPIRED", "comment": "The inline query expired." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MEDIA_EMPTY", "comment": "The provided media object is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "QUERY_ID_EMPTY", "comment": "The query ID is empty." }, { "code": 400, "name": "QUICK_REPLIES_TOO_MUCH", "comment": "A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached." }, { "code": 500, "name": "RANDOM_ID_DUPLICATE", "comment": "You provided a random ID that was already used." }, { "code": 400, "name": "REPLY_MESSAGES_TOO_MUCH", "comment": "Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached." }, { "code": 400, "name": "RESULT_ID_EMPTY", "comment": "Result ID empty." }, { "code": 400, "name": "RESULT_ID_INVALID", "comment": "One of the specified result IDs is invalid." }, { "code": 400, "name": "SCHEDULE_DATE_TOO_LATE", "comment": "You can't schedule a message this far in the future." }, { "code": 400, "name": "SCHEDULE_TOO_MUCH", "comment": "There are too many scheduled messages." }, { "code": 500, "name": "SEND_MEDIA_INVALID", "comment": "The specified media is invalid." }, { "code": 420, "name": "SLOWMODE_WAIT_%d", "comment": "Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat." }, { "code": 400, "name": "TOPIC_DELETED", "comment": "The specified topic was deleted." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }, { "code": 400, "name": "VOICE_MESSAGES_FORBIDDEN", "comment": "This user's privacy settings forbid you from sending voice messages." }, { "code": 400, "name": "WEBPAGE_CURL_FAILED", "comment": "Failure while fetching the webpage with cURL." }, { "code": 400, "name": "WEBPAGE_MEDIA_EMPTY", "comment": "Webpage media empty." }, { "code": 400, "name": "YOU_BLOCKED_USER", "comment": "You blocked this user." }], "available": "user" }, "messages.editMessage": { "comment": "Edit message", "arguments": { "flags": "Flags, see TL conditional fields", "no_webpage": "Disable webpage preview", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "peer": "Where was the message sent", "id": "ID of the message to edit", "message": "New message", "media": "New attached media", "reply_markup": "Reply markup for inline keyboards", "entities": "Message entities for styled text", "schedule_date": "Scheduled message date for scheduled messages", "quick_reply_shortcut_id": "If specified, edits a quick reply shortcut message, instead »." }, "throws": [{ "code": 400, "name": "BOT_DOMAIN_INVALID", "comment": "Bot domain invalid." }, { "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "BUTTON_DATA_INVALID", "comment": "The data of one or more of the buttons you provided is invalid." }, { "code": 400, "name": "BUTTON_TYPE_INVALID", "comment": "The type of one or more of the buttons you provided is invalid." }, { "code": 400, "name": "BUTTON_URL_INVALID", "comment": "Button URL invalid." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_FORWARDS_RESTRICTED", "comment": "You can't forward messages from a protected chat." }, { "code": 403, "name": "CHAT_SEND_GIFS_FORBIDDEN", "comment": "You can't send gifs in this chat." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "DOCUMENT_INVALID", "comment": "The specified document is invalid." }, { "code": 400, "name": "ENTITIES_TOO_LONG", "comment": "You provided too many styled message entities." }, { "code": 400, "name": "ENTITY_BOUNDS_INVALID", "comment": "A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length." }, { "code": 400, "name": "FILE_PARTS_INVALID", "comment": "The number of file parts is invalid." }, { "code": 400, "name": "IMAGE_PROCESS_FAILED", "comment": "Failure while processing image." }, { "code": 403, "name": "INLINE_BOT_REQUIRED", "comment": "Only the inline bot can edit message." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MEDIA_CAPTION_TOO_LONG", "comment": "The caption is too long." }, { "code": 400, "name": "MEDIA_EMPTY", "comment": "The provided media object is invalid." }, { "code": 400, "name": "MEDIA_GROUPED_INVALID", "comment": "You tried to send media of different types in an album." }, { "code": 400, "name": "MEDIA_INVALID", "comment": "Media invalid." }, { "code": 400, "name": "MEDIA_NEW_INVALID", "comment": "The new media is invalid." }, { "code": 400, "name": "MEDIA_PREV_INVALID", "comment": "Previous media invalid." }, { "code": 400, "name": "MEDIA_TTL_INVALID", "comment": "The specified media TTL is invalid." }, { "code": 403, "name": "MESSAGE_AUTHOR_REQUIRED", "comment": "Message author required." }, { "code": 400, "name": "MESSAGE_EDIT_TIME_EXPIRED", "comment": "You can't edit this message anymore, too much time has passed since its creation." }, { "code": 400, "name": "MESSAGE_EMPTY", "comment": "The provided message is empty." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "MESSAGE_NOT_MODIFIED", "comment": "The provided message data is identical to the previous message data, the message wasn't modified." }, { "code": 400, "name": "MESSAGE_TOO_LONG", "comment": "The provided message is too long." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 500, "name": "MSG_WAIT_FAILED", "comment": "A waiting call returned an error." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "REPLY_MARKUP_INVALID", "comment": "The provided reply markup is invalid." }, { "code": 400, "name": "REPLY_MARKUP_TOO_LONG", "comment": "The specified reply_markup is too long." }, { "code": 400, "name": "SCHEDULE_DATE_INVALID", "comment": "Invalid schedule date provided." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }, { "code": 400, "name": "WEBPAGE_NOT_FOUND", "comment": "A preview for the specified webpage url could not be generated." }], "available": "both" }, "messages.editInlineBotMessage": { "comment": "Edit an inline bot message", "arguments": { "flags": "Flags, see TL conditional fields", "no_webpage": "Disable webpage preview", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "id": "Sent inline message ID", "message": "Message", "media": "Media", "reply_markup": "Reply markup for inline keyboards", "entities": "Message entities for styled text" }, "throws": [{ "code": 400, "name": "BUTTON_DATA_INVALID", "comment": "The data of one or more of the buttons you provided is invalid." }, { "code": 400, "name": "ENTITY_BOUNDS_INVALID", "comment": "A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "MESSAGE_NOT_MODIFIED", "comment": "The provided message data is identical to the previous message data, the message wasn't modified." }], "available": "both" }, "messages.getBotCallbackAnswer": { "comment": "Press an inline callback button and get a callback answer from the bot", "arguments": { "flags": "Flags, see TL conditional fields", "game": "Whether this is a \"play game\" button", "peer": "Where was the inline keyboard sent", "msg_id": "ID of the Message with the inline keyboard", "data": "Callback data", "password": "For buttons {@link RawKeyboardButtonCallback}, the SRP payload generated using SRP." }, "throws": [{ "code": 400, "name": "BOT_RESPONSE_TIMEOUT", "comment": "A timeout occurred while fetching data from the bot." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "DATA_INVALID", "comment": "Encrypted data invalid." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PASSWORD_MISSING", "comment": "You must enable 2FA before executing this operation." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": -503, "name": "Timeout", "comment": "Timeout while fetching data." }], "available": "user" }, "messages.setBotCallbackAnswer": { "comment": "Set the callback answer to a user button press (bots only)", "arguments": { "flags": "Flags, see TL conditional fields", "alert": "Whether to show the message as a popup instead of a toast notification", "query_id": "Query ID", "message": "Popup to show", "url": "URL to open", "cache_time": "Cache validity" }, "throws": [{ "code": 400, "name": "MESSAGE_TOO_LONG", "comment": "The provided message is too long." }, { "code": 400, "name": "QUERY_ID_INVALID", "comment": "The query ID is invalid." }, { "code": 400, "name": "URL_INVALID", "comment": "Invalid URL provided." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "messages.saveDraft": { "comment": "Save a message draft associated to a chat.", "arguments": { "flags": "Flags, see TL conditional fields", "no_webpage": "Disable generation of the webpage preview", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "reply_to": "If set, indicates that the message should be sent in reply to the specified message or story.", "peer": "Destination of the message that should be sent", "message": "The draft", "entities": "Message entities for styled text", "media": "Attached media", "effect": "Specifies a message effect » to use for the message." }, "throws": [{ "code": 400, "name": "ENTITY_BOUNDS_INVALID", "comment": "A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getFeaturedStickers": { "comment": "Get featured stickers", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.getPeerDialogs": { "comment": "Get dialog info of specified peers", "arguments": { "peers": "Peers" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.readFeaturedStickers": { "comment": "Mark new featured stickers as read", "arguments": { "id": "IDs of stickersets to mark as read" }, "available": "user" }, "messages.saveGif": { "comment": "Add GIF to saved gifs list", "arguments": { "id": "GIF to save", "unsave": "Whether to remove GIF from saved gifs list" }, "throws": [{ "code": 400, "name": "GIF_ID_INVALID", "comment": "The provided GIF ID is invalid." }], "available": "user" }, "messages.getRecentStickers": { "comment": "Get recent stickers", "arguments": { "flags": "Flags, see TL conditional fields", "attached": "Get stickers recently attached to photo or video files", "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.getAllDrafts": { "comment": "Return all message drafts.
\nReturns all the latest {@link RawUpdateDraftMessage} updates related to all chats with drafts.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.saveRecentSticker": { "comment": "Add/remove sticker from recent stickers list", "arguments": { "flags": "Flags, see TL conditional fields", "attached": "Whether to add/remove stickers recently attached to photo or video files", "id": "Sticker", "unsave": "Whether to save or unsave the sticker" }, "throws": [{ "code": 400, "name": "STICKER_ID_INVALID", "comment": "The provided sticker ID is invalid." }], "available": "user" }, "messages.clearRecentStickers": { "comment": "Clear recent stickers", "arguments": { "flags": "Flags, see TL conditional fields", "attached": "Set this flag to clear the list of stickers recently attached to photo or video files" }, "available": "user" }, "messages.getArchivedStickers": { "comment": "Get all archived stickers", "arguments": { "flags": "Flags, see TL conditional fields", "masks": "Get mask stickers", "emojis": "Get custom emoji stickers", "offset_id": "Offsets for pagination, for more info click here", "limit": "Maximum number of results to return, see pagination" }, "available": "user" }, "messages.getMaskStickers": { "comment": "Get installed mask stickers", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.setInlineGameScore": { "comment": "Use this method to set the score of the specified user in a game sent as an inline message (bots only).", "arguments": { "flags": "Flags, see TL conditional fields", "edit_message": "Set this flag if the game message should be automatically edited to include the current scoreboard", "force": "Set this flag if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters", "id": "ID of the inline message", "user_id": "User identifier", "score": "New score" }, "throws": [{ "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "messages.getInlineGameHighScores": { "comment": "Get highscores of a game sent using an inline bot", "arguments": { "id": "ID of inline message", "user_id": "Get high scores of a certain user" }, "throws": [{ "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "messages.getWebPage": { "comment": "Get instant view page", "arguments": { "url": "URL of IV page to fetch", "hash": "Hash used for caching, for more info click here.
Note: the usual hash generation algorithm cannot be used in this case, please re-use the {@link RawWebPage}.hash field returned by a previous call to the method, or pass 0 if this is the first call or if the previous call did not return a {@link RawWebPage}." }, "throws": [{ "code": 400, "name": "WC_CONVERT_URL_INVALID", "comment": "WC convert URL invalid." }], "available": "user" }, "messages.getCommonChats": { "comment": "Get chats in common with a user", "arguments": { "user_id": "User ID", "max_id": "Maximum ID of chat to return (see pagination)", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "user" }, "messages.toggleDialogPin": { "comment": "Pin/unpin a dialog", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Whether to pin or unpin the dialog", "peer": "The dialog to pin" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "PEER_HISTORY_EMPTY", "comment": "You can't pin an empty chat with a user." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "PINNED_DIALOGS_TOO_MUCH", "comment": "Too many pinned dialogs." }], "available": "user" }, "messages.reorderPinnedDialogs": { "comment": "Reorder pinned dialogs", "arguments": { "flags": "Flags, see TL conditional fields", "force": "If set, dialogs pinned server-side but not present in the order field will be unpinned.", "folder_id": "Peer folder ID, for more info click here", "order": "New dialog order" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.setBotShippingResults": { "comment": "If you sent an invoice requesting a shipping address and the parameter is_flexible was specified, the bot will receive an {@link RawUpdateBotShippingQuery} update. Use this method to reply to shipping queries.", "arguments": { "flags": "Flags, see TL conditional fields", "query_id": "Unique identifier for the query to be answered", "error": "Error message in human readable form that explains why it is impossible to complete the order (e.g. \"Sorry, delivery to your desired address is unavailable\"). Telegram will display this message to the user.", "shipping_options": "A vector of available shipping options." }, "throws": [{ "code": 400, "name": "QUERY_ID_INVALID", "comment": "The query ID is invalid." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "messages.getPinnedDialogs": { "comment": "Get pinned dialogs", "arguments": { "folder_id": "Peer folder ID, for more info click here" }, "throws": [{ "code": 400, "name": "FOLDER_ID_INVALID", "comment": "Invalid folder ID." }], "available": "user" }, "messages.setBotPrecheckoutResults": { "comment": "Once the user has confirmed their payment and shipping details, the bot receives an {@link RawUpdateBotPrecheckoutQuery} update.
\nUse this method to respond to such pre-checkout queries.
\nNote: Telegram must receive an answer within 10 seconds after the pre-checkout query was sent.", "arguments": { "flags": "Flags, see TL conditional fields", "success": "Set this flag if everything is alright (goods are available, etc.) and the bot is ready to proceed with the order, otherwise do not set it, and set the error field, instead", "query_id": "Unique identifier for the query to be answered", "error": "Required if the success isn't set. Error message in human readable form that explains the reason for failure to proceed with the checkout (e.g. \"Sorry, somebody just bought the last of our amazing black T-shirts while you were busy filling out your payment details. Please choose a different color or garment!\"). Telegram will display this message to the user." }, "throws": [{ "code": 400, "name": "ERROR_TEXT_EMPTY", "comment": "The provided error message is empty." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "messages.getFavedStickers": { "comment": "Get faved stickers", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.uploadMedia": { "comment": "Upload a file and associate it to a chat (without actually sending it to the chat)", "arguments": { "flags": "Flags, see TL conditional fields", "business_connection_id": "Whether the media will be used only in the specified business connection », and not directly by the bot.", "peer": "The chat, can be {@link RawInputPeerEmpty} for bots and {@link RawInputPeerSelf} for users.", "media": "File uploaded in chunks as described in files »" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_RESTRICTED", "comment": "You can't send messages in this chat, you were restricted." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "FILE_PARTS_INVALID", "comment": "The number of file parts is invalid." }, { "code": 400, "name": "FILE_PART_LENGTH_INVALID", "comment": "The length of a file part is invalid." }, { "code": 400, "name": "IMAGE_PROCESS_FAILED", "comment": "Failure while processing image." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MEDIA_INVALID", "comment": "Media invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "PHOTO_EXT_INVALID", "comment": "The extension of the photo is invalid." }, { "code": 400, "name": "PHOTO_INVALID_DIMENSIONS", "comment": "The photo dimensions are invalid." }, { "code": 400, "name": "PHOTO_SAVE_FILE_INVALID", "comment": "Internal issues, try again later." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }, { "code": 400, "name": "WEBPAGE_CURL_FAILED", "comment": "Failure while fetching the webpage with cURL." }], "available": "both" }, "messages.faveSticker": { "comment": "Mark or unmark a sticker as favorite", "arguments": { "id": "Sticker in question", "unfave": "Whether to add or remove a sticker from favorites" }, "throws": [{ "code": 400, "name": "STICKER_ID_INVALID", "comment": "The provided sticker ID is invalid." }], "available": "user" }, "messages.sendScreenshotNotification": { "comment": "Notify the other user in a private chat that a screenshot of the chat was taken", "arguments": { "peer": "Other user", "reply_to": "Indicates the message that was screenshotted (the specified message ID can also be 0 to avoid indicating any specific message).", "random_id": "Random ID to avoid message resending" }, "throws": [{ "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "REPLY_MESSAGE_ID_INVALID", "comment": "The specified reply-to message ID is invalid." }, { "code": 400, "name": "STORY_ID_INVALID", "comment": "The specified story ID is invalid." }, { "code": 400, "name": "YOU_BLOCKED_USER", "comment": "You blocked this user." }], "available": "user" }, "messages.readMentions": { "comment": "Mark mentions as read", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Dialog", "top_msg_id": "Mark as read only mentions within the specified forum topic" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getRecentLocations": { "comment": "Get live location history of a certain user", "arguments": { "peer": "User", "limit": "Maximum number of results to return, see pagination", "hash": "Hash used for caching, for more info click here" }, "available": "user" }, "messages.sendMultiMedia": { "comment": "Send an album or grouped media", "arguments": { "flags": "Flags, see TL conditional fields", "silent": "Whether to send the album silently (no notification triggered)", "background": "Send in background?", "clear_draft": "Whether to clear drafts", "noforwards": "Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled", "update_stickersets_order": "Whether to move used stickersets to top, see here for more info on this flag »", "invert_media": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.", "peer": "The destination chat", "reply_to": "If set, indicates that the message should be sent in reply to the specified message or story.", "multi_media": "The medias to send: note that they must be separately uploaded using {@link messages.RawUploadMediaRequest} first, using raw inputMediaUploaded* constructors is not supported.", "schedule_date": "Scheduled message date for scheduled messages", "send_as": "Send this message as the specified peer", "quick_reply_shortcut": "Add the message to the specified quick reply shortcut », instead.", "effect": "Specifies a message effect » to use for the message." }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_FORWARDS_RESTRICTED", "comment": "You can't forward messages from a protected chat." }, { "code": 403, "name": "CHAT_SEND_MEDIA_FORBIDDEN", "comment": "You can't send media in this chat." }, { "code": 403, "name": "CHAT_SEND_PHOTOS_FORBIDDEN", "comment": "You can't send photos in this chat." }, { "code": 403, "name": "CHAT_SEND_VIDEOS_FORBIDDEN", "comment": "You can't send videos in this chat." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "ENTITY_BOUNDS_INVALID", "comment": "A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length." }, { "code": 400, "name": "FILE_REFERENCE_%d_EXPIRED", "comment": "The file reference of the media file at index %d in the passed media array expired, it must be refreshed." }, { "code": 400, "name": "FILE_REFERENCE_%d_INVALID", "comment": "The file reference of the media file at index %d in the passed media array is invalid." }, { "code": 400, "name": "MEDIA_CAPTION_TOO_LONG", "comment": "The caption is too long." }, { "code": 400, "name": "MEDIA_EMPTY", "comment": "The provided media object is invalid." }, { "code": 400, "name": "MEDIA_INVALID", "comment": "Media invalid." }, { "code": 400, "name": "MULTI_MEDIA_TOO_LONG", "comment": "Too many media files for album." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "QUICK_REPLIES_TOO_MUCH", "comment": "A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached." }, { "code": 500, "name": "RANDOM_ID_DUPLICATE", "comment": "You provided a random ID that was already used." }, { "code": 400, "name": "RANDOM_ID_EMPTY", "comment": "Random ID empty." }, { "code": 400, "name": "REPLY_MESSAGES_TOO_MUCH", "comment": "Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached." }, { "code": 400, "name": "SCHEDULE_DATE_TOO_LATE", "comment": "You can't schedule a message this far in the future." }, { "code": 400, "name": "SCHEDULE_TOO_MUCH", "comment": "There are too many scheduled messages." }, { "code": 400, "name": "SEND_AS_PEER_INVALID", "comment": "You can't send messages as the specified peer." }, { "code": 420, "name": "SLOWMODE_WAIT_%d", "comment": "Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat." }, { "code": 400, "name": "TOPIC_CLOSED", "comment": "This topic was closed, you can't send messages to it anymore." }, { "code": 400, "name": "TOPIC_DELETED", "comment": "The specified topic was deleted." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }], "available": "both" }, "messages.getGameHighScores": { "comment": "Get highscores of a game", "arguments": { "peer": "Where was the game sent", "id": "ID of message with game media attachment", "user_id": "Get high scores made by a certain user" }, "throws": [{ "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "messages.uploadEncryptedFile": { "comment": "Upload encrypted file and associate it to a secret chat", "arguments": { "peer": "The secret chat to associate the file to", "file": "The file" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }], "available": "user" }, "messages.markDialogUnread": { "comment": "Manually mark dialog as unread", "arguments": { "flags": "Flags, see TL conditional fields", "unread": "Mark as unread/read", "peer": "Dialog" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getSplitRanges": { "comment": "Get message ranges for saving the user's chat history", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.setGameScore": { "comment": "Use this method to set the score of the specified user in a game sent as a normal message (bots only).", "arguments": { "flags": "Flags, see TL conditional fields", "edit_message": "Set this flag if the game message should be automatically edited to include the current scoreboard", "force": "Set this flag if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters", "peer": "Unique identifier of target chat", "id": "Identifier of the sent message", "user_id": "User identifier", "score": "New score" }, "throws": [{ "code": 400, "name": "BOT_SCORE_NOT_MODIFIED", "comment": "The score wasn't modified." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "SCORE_INVALID", "comment": "The specified game score is invalid." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "messages.getAttachedStickers": { "comment": "Get stickers attached to a photo or video", "arguments": { "media": "Stickered media" }, "throws": [{ "code": 400, "name": "MEDIA_EMPTY", "comment": "The provided media object is invalid." }], "available": "user" }, "messages.searchStickerSets": { "comment": "Search for stickersets", "arguments": { "flags": "Flags, see TL conditional fields", "exclude_featured": "Exclude featured stickersets from results", "q": "Query string", "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.clearAllDrafts": { "comment": "Clear all drafts.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.updatePinnedMessage": { "comment": "Pin a message", "arguments": { "flags": "Flags, see TL conditional fields", "silent": "Pin the message silently, without triggering a notification", "unpin": "Whether the message should unpinned or pinned", "pm_oneside": "Whether the message should only be pinned on the local side of a one-to-one chat", "peer": "The peer where to pin the message", "id": "The message to pin or unpin" }, "throws": [{ "code": 400, "name": "BOT_ONESIDE_NOT_AVAIL", "comment": "Bots can't pin messages in PM just for themselves." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "PIN_RESTRICTED", "comment": "You can't pin messages." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }], "available": "both" }, "messages.getPollResults": { "comment": "Get poll results", "arguments": { "peer": "Peer where the poll was found", "msg_id": "Message ID of poll message" }, "throws": [{ "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.sendVote": { "comment": "Vote in a {@link RawPoll}\n\nStarting from layer 159, the vote will be sent from the peer specified using {@link messages.RawSaveDefaultSendAsRequest}.", "arguments": { "peer": "The chat where the poll was sent", "msg_id": "The message ID of the poll", "options": "The options that were chosen" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "MESSAGE_POLL_CLOSED", "comment": "Poll closed." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "OPTIONS_TOO_MUCH", "comment": "Too many options provided." }, { "code": 400, "name": "OPTION_INVALID", "comment": "Invalid option selected." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "REVOTE_NOT_ALLOWED", "comment": "You cannot change your vote." }], "available": "user" }, "messages.editChatAbout": { "comment": "Edit the description of a group/supergroup/channel.", "arguments": { "peer": "The group/supergroup/channel.", "about": "The new description" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ABOUT_NOT_MODIFIED", "comment": "About text has not changed." }, { "code": 400, "name": "CHAT_ABOUT_TOO_LONG", "comment": "Chat about too long." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "both" }, "messages.getEmojiKeywords": { "comment": "Get localized emoji keywords ».", "arguments": { "lang_code": "Language code" }, "available": "user" }, "messages.getEmojiKeywordsDifference": { "comment": "Get changed emoji keywords ».", "arguments": { "lang_code": "Language code", "from_version": "Previous stored emoji keyword list version" }, "available": "user" }, "messages.getEmojiKeywordsLanguages": { "comment": "Obtain a list of related languages that must be used when fetching emoji keyword lists ».\n\nUsually the method will return the passed language codes (if localized) + en + some language codes for similar languages (if applicable).", "arguments": { "lang_codes": "The user's language codes" }, "available": "user" }, "messages.getUnreadMentions": { "comment": "Get unread messages where we were mentioned", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer where to look for mentions", "top_msg_id": "If set, considers only messages within the specified forum topic", "offset_id": "Offsets for pagination, for more info click here", "add_offset": "Offsets for pagination, for more info click here", "limit": "Maximum number of results to return, see pagination", "max_id": "Maximum message ID to return, see pagination", "min_id": "Minimum message ID to return, see pagination" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.requestUrlAuth": { "comment": "Get more info about a Seamless Telegram Login authorization request, for more info click here »", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer where the message is located", "msg_id": "The message", "button_id": "The ID of the button with the authorization request", "url": "URL used for link URL authorization, click here for more info »" }, "available": "user" }, "messages.hidePeerSettingsBar": { "comment": "Should be called after the user hides the report spam/add as contact bar of a new chat, effectively prevents the user from executing the actions specified in the action bar ».", "arguments": { "peer": "Peer" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.acceptUrlAuth": { "comment": "Use this to accept a Seamless Telegram Login authorization request, for more info click here »", "arguments": { "flags": "Flags, see TL conditional fields", "write_allowed": "Set this flag to allow the bot to send messages to you (if requested)", "peer": "The location of the message", "msg_id": "Message ID of the message with the login button", "button_id": "ID of the login button", "url": "URL used for link URL authorization, click here for more info »" }, "available": "user" }, "messages.sendScheduledMessages": { "comment": "Send scheduled messages right away", "arguments": { "peer": "Peer", "id": "Scheduled message IDs" }, "throws": [{ "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 500, "name": "RANDOM_ID_DUPLICATE", "comment": "You provided a random ID that was already used." }], "available": "user" }, "messages.deleteScheduledMessages": { "comment": "Delete scheduled messages", "arguments": { "peer": "Peer", "id": "Scheduled message IDs" }, "throws": [{ "code": 403, "name": "MESSAGE_DELETE_FORBIDDEN", "comment": "You can't delete one of the messages you tried to delete, most likely because it is a service message." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getScheduledHistory": { "comment": "Get scheduled messages", "arguments": { "peer": "Peer", "hash": "Hash used for caching, for more info click here.
To generate the hash, populate the ids array with the id, date and edit_date (in this order) of the previously returned messages (in order, i.e. ids = [id1, date1, edit_date1, id2, date2, edit_date2, ...])." }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getDialogUnreadMarks": { "comment": "Get dialogs manually marked as unread", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.getPollVotes": { "comment": "Get poll results for non-anonymous polls", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Chat where the poll was sent", "id": "Message ID", "option": "Get only results for the specified poll option", "offset": "Offset for results, taken from the next_offset field of {@link messages.RawVotesList}, initially an empty string.
Note: if no more results are available, the method call will return an empty next_offset; thus, avoid providing the next_offset returned in {@link messages.RawVotesList} if it is empty, to avoid an infinite loop.", "limit": "Number of results to return" }, "throws": [{ "code": 403, "name": "BROADCAST_FORBIDDEN", "comment": "Channel poll voters and reactions cannot be fetched to prevent deanonymization." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 403, "name": "POLL_VOTE_REQUIRED", "comment": "Cast a vote in the poll before calling this method." }], "available": "user" }, "messages.getSuggestedDialogFilters": { "comment": "Get suggested folders", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.toggleStickerSets": { "comment": "Apply changes to multiple stickersets", "arguments": { "flags": "Flags, see TL conditional fields", "uninstall": "Uninstall the specified stickersets", "archive": "Archive the specified stickersets", "unarchive": "Unarchive the specified stickersets", "stickersets": "Stickersets to act upon" }, "available": "user" }, "messages.updateDialogFilter": { "comment": "Update folder", "arguments": { "flags": "Flags, see TL conditional fields", "id": "Folder ID", "filter": "Folder info" }, "throws": [{ "code": 400, "name": "CHATLIST_EXCLUDE_INVALID", "comment": "The specified exclude_peers are invalid." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "FILTER_ID_INVALID", "comment": "The specified filter ID is invalid." }, { "code": 400, "name": "FILTER_INCLUDE_EMPTY", "comment": "The include_peers vector of the filter is empty." }, { "code": 400, "name": "FILTER_TITLE_EMPTY", "comment": "The title field of the filter is empty." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getDialogFilters": { "comment": "Get folders", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.updateDialogFiltersOrder": { "comment": "Reorder folders", "arguments": { "order": "New folder order" }, "available": "user" }, "messages.editChatDefaultBannedRights": { "comment": "Edit the default banned rights of a channel/supergroup/group.", "arguments": { "peer": "The peer", "banned_rights": "The new global rights" }, "throws": [{ "code": 400, "name": "BANNED_RIGHTS_INVALID", "comment": "You provided some invalid flags in the banned rights." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "UNTIL_DATE_INVALID", "comment": "Invalid until date provided." }], "available": "both" }, "messages.getReplies": { "comment": "Get messages in a reply thread", "arguments": { "peer": "Peer", "msg_id": "Message ID", "offset_id": "Offsets for pagination, for more info click here", "offset_date": "Offsets for pagination, for more info click here", "add_offset": "Offsets for pagination, for more info click here", "limit": "Maximum number of results to return, see pagination", "max_id": "If a positive value was transferred, the method will return only messages with ID smaller than max_id", "min_id": "If a positive value was transferred, the method will return only messages with ID bigger than min_id", "hash": "Hash used for caching, for more info click here" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "TOPIC_ID_INVALID", "comment": "The specified topic ID is invalid." }], "available": "user" }, "messages.getOnlines": { "comment": "Get count of online users in a chat", "arguments": { "peer": "The chat" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getDiscussionMessage": { "comment": "Get discussion message from the associated discussion group of a channel to show it on top of the comment section, without actually joining the group", "arguments": { "peer": "Channel ID", "msg_id": "Message ID" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "TOPIC_ID_INVALID", "comment": "The specified topic ID is invalid." }], "available": "user" }, "messages.getOldFeaturedStickers": { "comment": "Method for fetching previously featured stickers", "arguments": { "offset": "Offset", "limit": "Maximum number of results to return, see pagination", "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.readDiscussion": { "comment": "Mark a thread as read", "arguments": { "peer": "Group ID", "msg_id": "ID of message that started the thread", "read_max_id": "ID up to which thread messages were read" }, "throws": [{ "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.unpinAllMessages": { "comment": "Unpin all pinned messages", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Chat where to unpin", "top_msg_id": "Forum topic where to unpin" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "both" }, "messages.deleteChat": { "comment": "Delete a chat", "arguments": { "chat_id": "Chat ID" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.deletePhoneCallHistory": { "comment": "Delete the entire phone call history.", "arguments": { "flags": "Flags, see TL conditional fields", "revoke": "Whether to remove phone call history for participants as well" }, "available": "user" }, "messages.initHistoryImport": { "comment": "Import chat history from a foreign chat app into a specific Telegram chat, click here for more info about imported chats ».", "arguments": { "peer": "The Telegram chat where the history should be imported.", "file": "File with messages to import.", "media_count": "Number of media files associated with the chat that will be uploaded using {@link messages.RawUploadImportedMediaRequest}." }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "IMPORT_FILE_INVALID", "comment": "The specified chat export file is invalid." }, { "code": 400, "name": "IMPORT_FORMAT_DATE_INVALID", "comment": "The date specified in the import file is invalid." }, { "code": 400, "name": "IMPORT_FORMAT_UNRECOGNIZED", "comment": "The specified chat export file was exported from an unsupported chat app." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 406, "name": "PREVIOUS_CHAT_IMPORT_ACTIVE_WAIT_%dMIN", "comment": "Import for this chat is already in progress, wait %d minutes before starting a new one." }], "available": "user" }, "messages.getEmojiURL": { "comment": "Returns an HTTP URL which can be used to automatically log in into translation platform and suggest new emoji keywords ». The URL will be valid for 30 seconds after generation.", "arguments": { "lang_code": "Language code for which the emoji keywords will be suggested" }, "available": "user" }, "messages.getExportedChatInvite": { "comment": "Get info about a chat invite", "arguments": { "peer": "Chat", "link": "Invite link" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "INVITE_HASH_EXPIRED", "comment": "The invite link has expired." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getExportedChatInvites": { "comment": "Get info about the chat invites of a specific chat", "arguments": { "flags": "Flags, see TL conditional fields", "revoked": "Whether to fetch revoked chat invites", "peer": "Chat", "admin_id": "Whether to only fetch chat invites from this admin", "offset_date": "Offsets for pagination, for more info click here", "offset_link": "Offsets for pagination, for more info click here", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "ADMIN_ID_INVALID", "comment": "The specified admin ID is invalid." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.startHistoryImport": { "comment": "Complete the history import process, importing all messages into the chat.
\nTo be called only after initializing the import with {@link messages.RawInitHistoryImportRequest} and uploading all files using {@link messages.RawUploadImportedMediaRequest}.", "arguments": { "peer": "The Telegram chat where the messages should be imported, click here for more info »", "import_id": "Identifier of a history import session, returned by {@link messages.RawInitHistoryImportRequest}." }, "throws": [{ "code": 400, "name": "IMPORT_ID_INVALID", "comment": "The specified import ID is invalid." }], "available": "user" }, "messages.deleteRevokedExportedChatInvites": { "comment": "Delete all revoked chat invites", "arguments": { "peer": "Chat", "admin_id": "ID of the admin that originally generated the revoked chat invites" }, "throws": [{ "code": 400, "name": "ADMIN_ID_INVALID", "comment": "The specified admin ID is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getScheduledMessages": { "comment": "Get scheduled messages", "arguments": { "peer": "Peer", "id": "IDs of scheduled messages" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.editExportedChatInvite": { "comment": "Edit an exported chat invite", "arguments": { "flags": "Flags, see TL conditional fields", "revoked": "Whether to revoke the chat invite", "peer": "Chat", "link": "Invite link", "expire_date": "New expiration date", "usage_limit": "Maximum number of users that can join using this link", "request_needed": "Whether admin confirmation is required before admitting each separate user into the chat", "title": "Description of the invite link, visible only to administrators" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_INVITE_PERMANENT", "comment": "You can't set an expiration date on permanent invite links." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 403, "name": "EDIT_BOT_INVITE_FORBIDDEN", "comment": "Normal users can't edit invites that were created by bots." }, { "code": 400, "name": "INVITE_HASH_EXPIRED", "comment": "The invite link has expired." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USAGE_LIMIT_INVALID", "comment": "The specified usage limit is invalid." }], "available": "both" }, "messages.deleteExportedChatInvite": { "comment": "Delete a chat invite", "arguments": { "peer": "Peer", "link": "Invite link" }, "throws": [{ "code": 400, "name": "INVITE_HASH_EXPIRED", "comment": "The invite link has expired." }, { "code": 400, "name": "INVITE_REVOKED_MISSING", "comment": "The specified invite link was already revoked or is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getAdminsWithInvites": { "comment": "Get info about chat invites generated by admins.", "arguments": { "peer": "Chat" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getChatInviteImporters": { "comment": "Get info about the users that joined the chat using a specific chat invite", "arguments": { "flags": "Flags, see TL conditional fields", "requested": "If set, only returns info about users with pending join requests »", "peer": "Chat", "link": "Invite link", "q": "Search for a user in the pending join requests » list: only available when the requested flag is set, cannot be used together with a specific link.", "offset_date": "Offsets for pagination, for more info click here", "offset_user": "User ID for pagination: if set, offset_date must also be set.", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "INVITE_HASH_EXPIRED", "comment": "The invite link has expired." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "SEARCH_WITH_LINK_NOT_SUPPORTED", "comment": "You cannot provide a search query and an invite link at the same time." }], "available": "user" }, "messages.checkHistoryImportPeer": { "comment": "Check whether chat history exported from another chat app can be imported into a specific Telegram chat, click here for more info ».\n\nIf the check succeeds, and no RPC errors are returned, a messages.CheckedHistoryImportPeer constructor will be returned, with a confirmation text to be shown to the user, before actually initializing the import.", "arguments": { "peer": "The chat where we want to import history »." }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_NOT_MUTUAL_CONTACT", "comment": "The provided user is not a mutual contact." }], "available": "user" }, "messages.setHistoryTTL": { "comment": "Set maximum Time-To-Live of all messages in the specified chat", "arguments": { "peer": "The dialog", "period": "Automatically delete all messages sent in the chat after this many seconds" }, "throws": [{ "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "TTL_PERIOD_INVALID", "comment": "The specified TTL period is invalid." }], "available": "user" }, "messages.setChatTheme": { "comment": "Change the chat theme of a certain chat", "arguments": { "peer": "Private chat where to change theme", "emoticon": "Emoji, identifying a specific chat theme; a list of chat themes can be fetched using {@link account.RawGetChatThemesRequest}" }, "throws": [{ "code": 400, "name": "EMOJI_INVALID", "comment": "The specified theme emoji is valid." }, { "code": 400, "name": "EMOJI_NOT_MODIFIED", "comment": "The theme wasn't changed." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getMessageReadParticipants": { "comment": "Get which users read a specific message: only available for groups and supergroups with less than chat_read_mark_size_threshold members, read receipts will be stored for chat_read_mark_expire_period seconds after the message was sent, see client configuration for more info ».", "arguments": { "peer": "Dialog", "msg_id": "Message ID" }, "throws": [{ "code": 400, "name": "CHAT_TOO_BIG", "comment": "This method is not available for groups with more than chat_read_mark_size_threshold members, see client configuration »." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "MSG_TOO_OLD", "comment": "chat_read_mark_expire_period seconds have passed since the message was sent, read receipts were deleted." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getSearchResultsCalendar": { "comment": "Returns information about the next messages of the specified type in the chat split by days.\n\nReturns the results in reverse chronological order.
\nCan return partial results for the last returned day.", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer where to search", "saved_peer_id": "Search within the saved message dialog » with this ID.", "filter": "Message filter, {@link RawInputMessagesFilterEmpty}, {@link RawInputMessagesFilterMyMentions} filters are not supported by this method.", "offset_id": "Offsets for pagination, for more info click here", "offset_date": "Offsets for pagination, for more info click here" }, "throws": [{ "code": 400, "name": "FILTER_NOT_SUPPORTED", "comment": "The specified filter cannot be used in this context." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.saveDefaultSendAs": { "comment": "Change the default peer that should be used when sending messages, reactions, poll votes to a specific group", "arguments": { "peer": "Group", "send_as": "The default peer that should be used when sending messages to the group" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "SEND_AS_PEER_INVALID", "comment": "You can't send messages as the specified peer." }], "available": "user" }, "messages.hideChatJoinRequest": { "comment": "Dismiss or approve a chat join request related to a specific chat or channel.", "arguments": { "flags": "Flags, see TL conditional fields", "approved": "Whether to dismiss or approve the chat join request »", "peer": "The chat or channel", "user_id": "The user whose join request » should be dismissed or approved" }, "throws": [{ "code": 400, "name": "CHANNELS_TOO_MUCH", "comment": "You have joined too many channels/supergroups." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "HIDE_REQUESTER_MISSING", "comment": "The join request was missing or was already handled." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_ALREADY_PARTICIPANT", "comment": "The user is already in the group." }, { "code": 403, "name": "USER_CHANNELS_TOO_MUCH", "comment": "One of the users you tried to add is already in too many channels/supergroups." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "both" }, "messages.checkHistoryImport": { "comment": "Obtains information about a chat export file, generated by a foreign chat app, click here for more info about imported chats ».", "arguments": { "import_head": "Beginning of the message file; up to 100 lines." }, "throws": [{ "code": 400, "name": "IMPORT_FORMAT_UNRECOGNIZED", "comment": "The specified chat export file was exported from an unsupported chat app." }], "available": "user" }, "messages.sendReaction": { "comment": "React to message.\n\nStarting from layer 159, the reaction will be sent from the peer specified using {@link messages.RawSaveDefaultSendAsRequest}.", "arguments": { "flags": "Flags, see TL conditional fields", "big": "Whether a bigger and longer reaction should be shown", "add_to_recent": "Whether to add this reaction to the recent reactions list ».", "peer": "Peer", "msg_id": "Message ID to react to", "reaction": "A list of reactions" }, "throws": [{ "code": 403, "name": "ANONYMOUS_REACTIONS_DISABLED", "comment": "Sorry, anonymous administrators cannot leave reactions or participate in polls." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "CUSTOM_REACTIONS_TOO_MANY", "comment": "Too many custom reactions were specified." }, { "code": 400, "name": "DOCUMENT_INVALID", "comment": "The specified document is invalid." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "MESSAGE_NOT_MODIFIED", "comment": "The provided message data is identical to the previous message data, the message wasn't modified." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }, { "code": 400, "name": "REACTIONS_TOO_MANY", "comment": "The message already has exactly reactions_uniq_max reaction emojis, you can't react with a new emoji, see the docs for more info »." }, { "code": 400, "name": "REACTION_EMPTY", "comment": "Empty reaction provided." }, { "code": 400, "name": "REACTION_INVALID", "comment": "The specified reaction is invalid." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }], "available": "user" }, "messages.hideAllChatJoinRequests": { "comment": "Dismiss or approve all join requests related to a specific chat or channel.", "arguments": { "flags": "Flags, see TL conditional fields", "approved": "Whether to dismiss or approve all chat join requests »", "peer": "The chat or channel", "link": "Only dismiss or approve join requests » initiated using this invite link" }, "throws": [{ "code": 400, "name": "CHANNELS_TOO_MUCH", "comment": "You have joined too many channels/supergroups." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "HIDE_REQUESTER_MISSING", "comment": "The join request was missing or was already handled." }, { "code": 400, "name": "INVITE_HASH_EXPIRED", "comment": "The invite link has expired." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_CHANNELS_TOO_MUCH", "comment": "One of the users you tried to add is already in too many channels/supergroups." }], "available": "user" }, "messages.getMessagesReactions": { "comment": "Get message reactions »", "arguments": { "peer": "Peer", "id": "Message IDs" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }], "available": "user" }, "messages.setChatAvailableReactions": { "comment": "Change the set of message reactions » that can be used in a certain group, supergroup or channel", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Group where to apply changes", "available_reactions": "Allowed reaction emojis", "reactions_limit": "This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max); this field and the other info set by the method will then be available to users in {@link RawChannelFull} and {@link RawChatFull}." }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getAvailableReactions": { "comment": "Obtain available message reactions »", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.uploadImportedMedia": { "comment": "Upload a media file associated with an imported chat, click here for more info ».", "arguments": { "peer": "The Telegram chat where the media will be imported", "import_id": "Identifier of a history import session, returned by {@link messages.RawInitHistoryImportRequest}", "file_name": "File name", "media": "Media metadata" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "IMPORT_ID_INVALID", "comment": "The specified import ID is invalid." }], "available": "user" }, "messages.toggleNoForwards": { "comment": "Enable or disable content protection on a channel or chat", "arguments": { "peer": "The chat or channel", "enabled": "Enable or disable content protection" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getSearchResultsPositions": { "comment": "Returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation.\n\nReturns the results in reverse chronological order (i.e., in order of decreasing message_id).", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer where to search", "saved_peer_id": "Search within the saved message dialog » with this ID.", "filter": "Message filter, {@link RawInputMessagesFilterEmpty}, {@link RawInputMessagesFilterMyMentions} filters are not supported by this method.", "offset_id": "Offsets for pagination, for more info click here", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.setDefaultReaction": { "comment": "Change default emoji reaction to use in the quick reaction menu: the value is synced across devices and can be fetched using {@link help.RawGetConfigRequest}.", "arguments": { "reaction": "New emoji reaction" }, "throws": [{ "code": 400, "name": "REACTION_INVALID", "comment": "The specified reaction is invalid." }], "available": "user" }, "messages.translateText": { "comment": "Translate a given text.\n\nStyled text entities will only be preserved for Telegram Premium users.", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "If the text is a chat message, the peer ID", "id": "A list of message IDs to translate", "text": "A list of styled messages to translate", "to_lang": "Two-letter ISO 639-1 language code of the language to which the message is translated" }, "throws": [{ "code": 400, "name": "INPUT_TEXT_EMPTY", "comment": "The specified text is empty." }, { "code": 400, "name": "INPUT_TEXT_TOO_LONG", "comment": "The specified text is too long." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "TO_LANG_INVALID", "comment": "The specified destination language is invalid." }, { "code": 400, "name": "TRANSLATE_REQ_QUOTA_EXCEEDED", "comment": "Translation is currently unavailable due to a temporary server-side lack of resources." }], "available": "user" }, "messages.getSearchCounters": { "comment": "Get the number of results that would be found by a {@link messages.RawSearchRequest} call with the same parameters", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer where to search", "saved_peer_id": "Search within the saved message dialog » with this ID.", "top_msg_id": "If set, consider only messages within the specified forum topic", "filters": "Search filters" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getUnreadReactions": { "comment": "Get unread reactions to messages you sent", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer", "top_msg_id": "If set, considers only reactions to messages within the specified forum topic", "offset_id": "Offsets for pagination, for more info click here", "add_offset": "Offsets for pagination, for more info click here", "limit": "Maximum number of results to return, see pagination", "max_id": "Only return reactions for messages up until this message ID", "min_id": "Only return reactions for messages starting from this message ID" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getAttachMenuBots": { "comment": "Returns installed attachment menu bot mini apps »", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.readReactions": { "comment": "Mark message reactions » as read", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer", "top_msg_id": "Mark as read only reactions to messages within the specified forum topic" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getAttachMenuBot": { "comment": "Returns attachment menu entry for a bot mini app that can be launched from the attachment menu »", "arguments": { "bot": "Bot ID" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "messages.requestWebView": { "comment": "Open a bot mini app, sending over user information after user confirmation.\n\nAfter calling this method, until the user closes the webview, {@link messages.RawProlongWebViewRequest} must be called every 60 seconds.", "arguments": { "flags": "Flags, see TL conditional fields", "from_bot_menu": "Whether the webview was opened by clicking on the bot's menu button ».", "silent": "Whether the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent silently (no notifications for the receivers).", "compact": "If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the attachment menu deep link is equal to compact.", "peer": "Dialog where the web app is being opened, and where the resulting message will be sent (see the docs for more info »).", "bot": "Bot that owns the web app", "url": "Web app URL", "start_param": "If the web app was opened from the attachment menu using a attachment menu deep link, start_param should contain the data from the startattach parameter.", "theme_params": "Theme parameters »", "platform": "Short name of the application; 0-64 English letters, digits, and underscores", "reply_to": "If set, indicates that the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent in reply to the specified message or story.", "send_as": "Open the web app as the specified peer, sending the resulting the message as the specified peer." }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "BOT_WEBVIEW_DISABLED", "comment": "A webview cannot be opened in the specified conditions: emitted for example if from_bot_menu or url are set and peer is not the chat with the bot." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 403, "name": "PRIVACY_PREMIUM_REQUIRED", "comment": "You need a Telegram Premium subscription to send a message to this user." }, { "code": 400, "name": "SEND_AS_PEER_INVALID", "comment": "You can't send messages as the specified peer." }, { "code": 400, "name": "YOU_BLOCKED_USER", "comment": "You blocked this user." }], "available": "user" }, "messages.searchSentMedia": { "comment": "View and search recently sent media.
\nThis method does not support pagination.", "arguments": { "q": "Optional search query", "filter": "Message filter", "limit": "Maximum number of results to return (max 100)." }, "throws": [{ "code": 400, "name": "FILTER_NOT_SUPPORTED", "comment": "The specified filter cannot be used in this context." }], "available": "user" }, "messages.sendWebViewResultMessage": { "comment": "Terminate webview interaction started with {@link messages.RawRequestWebViewRequest}, sending the specified message to the chat on behalf of the user.", "arguments": { "bot_query_id": "Webview interaction ID obtained from {@link messages.RawRequestWebViewRequest}", "result": "Message to send" }, "throws": [{ "code": 400, "name": "QUERY_ID_INVALID", "comment": "The query ID is invalid." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "messages.prolongWebView": { "comment": "Indicate to the server (from the user side) that the user is still using a web app.\n\nIf the method returns a QUERY_ID_INVALID error, the webview must be closed.", "arguments": { "flags": "Flags, see TL conditional fields", "silent": "Whether the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent silently (no notifications for the receivers).", "peer": "Dialog where the web app was opened.", "bot": "Bot that owns the web app", "query_id": "Web app interaction ID obtained from {@link messages.RawRequestWebViewRequest}", "reply_to": "If set, indicates that the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent in reply to the specified message or story.", "send_as": "Open the web app as the specified peer" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "messages.requestSimpleWebView": { "comment": "Open a bot mini app.", "arguments": { "flags": "Flags, see TL conditional fields", "from_switch_webview": "Whether the webapp was opened by clicking on the switch_webview button shown on top of the inline results list returned by {@link messages.RawGetInlineBotResultsRequest}.", "from_side_menu": "Set this flag if opening the Mini App from the installed side menu entry ».", "compact": "Deprecated.", "bot": "Bot that owns the mini app", "url": "Web app URL, if opening from a keyboard button or inline result", "start_param": "Deprecated.", "theme_params": "Theme parameters »", "platform": "Short name of the application; 0-64 English letters, digits, and underscores" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "URL_INVALID", "comment": "Invalid URL provided." }], "available": "user" }, "messages.sendWebViewData": { "comment": "Used by the user to relay data from an opened reply keyboard bot mini app to the bot that owns it.", "arguments": { "bot": "Bot that owns the web app", "random_id": "Unique client message ID to prevent duplicate sending of the same event", "button_text": "Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app.", "data": "Data to relay to the bot, obtained from a web_app_data_send JS event." }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "messages.transcribeAudio": { "comment": "Transcribe voice message", "arguments": { "peer": "Peer ID where the voice message was sent", "msg_id": "Voice message ID" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }, { "code": 400, "name": "TRANSCRIPTION_FAILED", "comment": "Audio transcription failed." }], "available": "user" }, "messages.rateTranscribedAudio": { "comment": "Rate transcribed voice message", "arguments": { "peer": "Peer where the voice message was sent", "msg_id": "Message ID", "transcription_id": "Transcription ID", "good": "Whether the transcription was correct" }, "available": "user" }, "messages.getMessageReactionsList": { "comment": "Get message reaction list, along with the sender of each reaction.", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer", "id": "Message ID", "reaction": "Get only reactions of this type", "offset": "Offset for pagination (taken from the next_offset field of the returned messages.MessageReactionsList); empty in the first request.", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 403, "name": "BROADCAST_FORBIDDEN", "comment": "Channel poll voters and reactions cannot be fetched to prevent deanonymization." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "user" }, "messages.getCustomEmojiDocuments": { "comment": "Fetch custom emoji stickers ».\n\nReturns a list of {@link RawDocument} with the animated custom emoji in TGS format, and a {@link RawDocumentAttributeCustomEmoji} attribute with the original emoji and info about the emoji stickerset this custom emoji belongs to.", "arguments": { "document_id": "Custom emoji IDs from a {@link RawMessageEntityCustomEmoji}." }, "available": "both" }, "messages.reportReaction": { "comment": "Report a message reaction", "arguments": { "peer": "Peer where the message was sent", "id": "Message ID", "reaction_peer": "Peer that sent the reaction" }, "throws": [{ "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "user" }, "messages.getFeaturedEmojiStickers": { "comment": "Gets featured custom emoji stickersets.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.toggleBotInAttachMenu": { "comment": "Enable or disable web bot attachment menu »", "arguments": { "flags": "Flags, see TL conditional fields", "write_allowed": "Whether the user authorizes the bot to write messages to them, if requested by {@link RawAttachMenuBot}.request_write_access", "bot": "Bot ID", "enabled": "Toggle" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "messages.getEmojiStickers": { "comment": "Gets the list of currently installed custom emoji stickersets.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.getTopReactions": { "comment": "Got popular message reactions", "arguments": { "limit": "Maximum number of results to return, see pagination", "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.getRecentReactions": { "comment": "Get recently used message reactions", "arguments": { "limit": "Maximum number of results to return, see pagination", "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.clearRecentReactions": { "comment": "Clear recently used message reactions", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.getDefaultHistoryTTL": { "comment": "Gets the default value of the Time-To-Live setting, applied to all new chats.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.setDefaultHistoryTTL": { "comment": "Changes the default value of the Time-To-Live setting, applied to all new chats.", "arguments": { "period": "The new default Time-To-Live of all messages sent in new chats." }, "throws": [{ "code": 400, "name": "TTL_PERIOD_INVALID", "comment": "The specified TTL period is invalid." }], "available": "user" }, "messages.getEmojiGroups": { "comment": "Represents a list of emoji categories.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.getExtendedMedia": { "comment": "Fetch updated information about paid media, see here » for the full flow.\n\nThis method will return an array of {@link RawUpdateMessageExtendedMedia} updates, only for messages containing already bought paid media.
\nNo information will be returned for messages containing not yet bought paid media.", "arguments": { "peer": "Peer with visible paid media messages.", "id": "IDs of currently visible messages containing paid media." }, "available": "user" }, "messages.sendBotRequestedPeer": { "comment": "Send one or more chosen peers, as requested by a {@link RawKeyboardButtonRequestPeer} button.", "arguments": { "peer": "The bot that sent the {@link RawKeyboardButtonRequestPeer} button.", "msg_id": "ID of the message that contained the reply keyboard with the {@link RawKeyboardButtonRequestPeer} button.", "button_id": "The button_id field from the {@link RawKeyboardButtonRequestPeer} constructor.", "requested_peers": "The chosen peers." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getEmojiProfilePhotoGroups": { "comment": "Represents a list of emoji categories, to be used when selecting custom emojis to set as profile picture.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.searchCustomEmoji": { "comment": "Look for custom emojis associated to a UTF8 emoji", "arguments": { "emoticon": "The emoji", "hash": "Hash used for caching, for more info click here." }, "throws": [{ "code": 400, "name": "EMOTICON_EMPTY", "comment": "The emoji is empty." }], "available": "user" }, "messages.togglePeerTranslations": { "comment": "Show or hide the real-time chat translation popup for a certain chat", "arguments": { "flags": "Flags, see TL conditional fields", "disabled": "Whether to disable or enable the real-time chat translation popup", "peer": "The peer" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getEmojiStatusGroups": { "comment": "Represents a list of emoji categories, to be used when selecting custom emojis to set as custom emoji status.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.getBotApp": { "comment": "Obtain information about a direct link Mini App", "arguments": { "app": "Bot app information obtained from a Direct Mini App deep link ».", "hash": "Hash used for caching, for more info click here" }, "throws": [{ "code": 400, "name": "BOT_APP_BOT_INVALID", "comment": "The bot_id passed in the inputBotAppShortName constructor is invalid." }, { "code": 400, "name": "BOT_APP_INVALID", "comment": "The specified bot app is invalid." }, { "code": 400, "name": "BOT_APP_SHORTNAME_INVALID", "comment": "The specified bot app short name is invalid." }], "available": "user" }, "messages.requestAppWebView": { "comment": "Open a bot mini app from a direct Mini App deep link, sending over user information after user confirmation.\n\nAfter calling this method, until the user closes the webview, {@link messages.RawProlongWebViewRequest} must be called every 60 seconds.", "arguments": { "flags": "Flags, see TL conditional fields", "write_allowed": "Set this flag if the bot is asking permission to send messages to the user as specified in the direct Mini App deep link docs, and the user agreed.", "compact": "If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the direct Mini App deep link is equal to compact.", "peer": "If the client has clicked on the link in a Telegram chat, pass the chat's peer information; otherwise pass the bot's peer information, instead.", "app": "The app obtained by invoking {@link messages.RawGetBotAppRequest} as specified in the direct Mini App deep link docs.", "start_param": "If the startapp query string parameter is present in the direct Mini App deep link, pass it to start_param.", "theme_params": "Theme parameters »", "platform": "Short name of the application; 0-64 English letters, digits, and underscores" }, "throws": [{ "code": 400, "name": "BOT_APP_INVALID", "comment": "The specified bot app is invalid." }, { "code": 400, "name": "BOT_APP_SHORTNAME_INVALID", "comment": "The specified bot app short name is invalid." }], "available": "user" }, "messages.searchEmojiStickerSets": { "comment": "Search for custom emoji stickersets »", "arguments": { "flags": "Flags, see TL conditional fields", "exclude_featured": "Exclude featured stickersets from results", "q": "Query string", "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.deleteSavedHistory": { "comment": "Deletes messages forwarded from a specific peer to saved messages ».", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer, whose messages will be deleted from saved messages »", "max_id": "Maximum ID of message to delete", "min_date": "Delete all messages newer than this UNIX timestamp", "max_date": "Delete all messages older than this UNIX timestamp" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.setChatWallPaper": { "comment": "Set a custom wallpaper » in a specific private chat with another user.", "arguments": { "flags": "Flags, see TL conditional fields", "for_both": "Only for Premium users, sets the specified wallpaper for both users of the chat, without requiring confirmation from the other user.", "revert": "If we don't like the new wallpaper the other user of the chat has chosen for us using the for_both flag, we can re-set our previous wallpaper just on our side using this flag.", "peer": "The private chat where the wallpaper will be set", "wallpaper": "The wallpaper », obtained as described in the wallpaper documentation »; must not be provided when installing a wallpaper obtained from a {@link RawMessageActionSetChatWallPaper} service message (id must be provided, instead).", "settings": "Wallpaper settings, obtained as described in the wallpaper documentation » or from {@link RawMessageActionSetChatWallPaper}.wallpaper.settings.", "id": "If the wallpaper was obtained from a {@link RawMessageActionSetChatWallPaper} service message, must contain the ID of that message." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "WALLPAPER_INVALID", "comment": "The specified wallpaper is invalid." }, { "code": 400, "name": "WALLPAPER_NOT_FOUND", "comment": "The specified wallpaper could not be found." }], "available": "user" }, "messages.getPinnedSavedDialogs": { "comment": "Get pinned saved dialogs, see here » for more info.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "messages.getSavedHistory": { "comment": "Returns saved messages » forwarded from a specific peer", "arguments": { "peer": "Target peer", "offset_id": "Only return messages starting from the specified message ID", "offset_date": "Only return messages sent before the specified date", "add_offset": "Number of list elements to be skipped, negative values are also accepted.", "limit": "Number of results to return", "max_id": "If a positive value was transferred, the method will return only messages with IDs less than max_id", "min_id": "If a positive value was transferred, the method will return only messages with IDs more than min_id", "hash": "Result hash" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getSavedDialogs": { "comment": "Returns the current saved dialog list, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "exclude_pinned": "Exclude pinned dialogs", "offset_date": "Offsets for pagination, for more info click here", "offset_id": "Offsets for pagination, for more info click here (top_message ID used for pagination)", "offset_peer": "Offset peer for pagination", "limit": "Number of list elements to be returned", "hash": "Hash used for caching, for more info click here" }, "available": "user" }, "messages.getSavedReactionTags": { "comment": "Fetch the full list of saved message tags created by the user.", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "If set, returns tags only used in the specified saved message dialog.", "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.reorderPinnedSavedDialogs": { "comment": "Reorder pinned saved message dialogs ».", "arguments": { "flags": "Flags, see TL conditional fields", "force": "If set, dialogs pinned server-side but not present in the order field will be unpinned.", "order": "New dialog order" }, "available": "user" }, "messages.toggleSavedDialogPin": { "comment": "Pin or unpin a saved message dialog ».", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Whether to pin or unpin the dialog", "peer": "The dialog to pin" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.updateSavedReactionTag": { "comment": "Update the description of a saved message tag ».", "arguments": { "flags": "Flags, see TL conditional fields", "reaction": "Reaction associated to the tag", "title": "Tag description, max 12 UTF-8 characters; to remove the description call the method without setting this flag." }, "throws": [{ "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }, { "code": 400, "name": "REACTION_INVALID", "comment": "The specified reaction is invalid." }], "available": "user" }, "messages.getDefaultTagReactions": { "comment": "Fetch a default recommended list of saved message tag reactions.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.getQuickReplies": { "comment": "Fetch basic info about all existing quick reply shortcuts.", "arguments": { "hash": "Hash for pagination, generated as specified here » (not the usual algorithm used for hash generation.)" }, "available": "user" }, "messages.reorderQuickReplies": { "comment": "Reorder quick reply shortcuts.\n\nThis will emit an {@link RawUpdateQuickReplies} update to other logged-in sessions.", "arguments": { "order": "IDs of all created quick reply shortcuts, in the desired order." }, "throws": [{ "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }], "available": "user" }, "messages.getOutboxReadDate": { "comment": "Get the exact read date of one of our messages, sent to a private chat with another user.\n\nCan be only done for private outgoing messages not older than appConfig.pm_read_date_expire_period ».\n\nIf the peer's {@link RawUserFull}.read_dates_private flag is set, we will not be able to fetch the exact read date of messages we send to them, and a USER_PRIVACY_RESTRICTED RPC error will be emitted.
\nThe exact read date of messages might still be unavailable for other reasons, see {@link RawGlobalPrivacySettings} for more info.
\nTo set {@link RawUserFull}.read_dates_private for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.hide_read_marks flag.", "arguments": { "peer": "The user to whom we sent the message.", "msg_id": "The message ID." }, "throws": [{ "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "MESSAGE_NOT_READ_YET", "comment": "The specified message wasn't read yet." }, { "code": 400, "name": "MESSAGE_TOO_OLD", "comment": "The message is too old, the requested information is not available." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 403, "name": "USER_PRIVACY_RESTRICTED", "comment": "The user's privacy settings do not allow you to do this." }, { "code": 403, "name": "YOUR_PRIVACY_RESTRICTED", "comment": "You cannot fetch the read date of this message because you have disallowed other users to do so for your messages; to fix, allow other users to see your exact last online date OR purchase a Telegram Premium subscription." }], "available": "user" }, "messages.editQuickReplyShortcut": { "comment": "Rename a quick reply shortcut.
\nThis will emit an {@link RawUpdateQuickReplies} update to other logged-in sessions.", "arguments": { "shortcut_id": "Shortcut ID.", "shortcut": "New shortcut name." }, "throws": [{ "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }, { "code": 400, "name": "SHORTCUT_INVALID", "comment": "The specified shortcut is invalid." }], "available": "user" }, "messages.deleteQuickReplyShortcut": { "comment": "Completely delete a quick reply shortcut.
\nThis will also emit an {@link RawUpdateDeleteQuickReply} update to other logged-in sessions (and no {@link RawUpdateDeleteQuickReplyMessages} updates, even if all the messages in the shortcuts are also deleted by this method).", "arguments": { "shortcut_id": "Shortcut ID" }, "throws": [{ "code": 400, "name": "SHORTCUT_INVALID", "comment": "The specified shortcut is invalid." }], "available": "user" }, "messages.checkQuickReplyShortcut": { "comment": "Before offering the user the choice to add a message to a quick reply shortcut, to make sure that none of the limits specified here » were reached.", "arguments": { "shortcut": "Shorcut name (not ID!)." }, "throws": [{ "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }], "available": "user" }, "messages.sendQuickReplyMessages": { "comment": "Send a quick reply shortcut ».", "arguments": { "peer": "The peer where to send the shortcut (users only, for now).", "shortcut_id": "The ID of the quick reply shortcut to send.", "id": "Specify a subset of messages from the shortcut to send; if empty, defaults to all of them.", "random_id": "Unique client IDs required to prevent message resending, one for each message we're sending, may be empty (but not recommended)." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }], "available": "user" }, "messages.toggleDialogFilterTags": { "comment": "Enable or disable folder tags ».", "arguments": { "enabled": "Enable or disable folder tags." }, "throws": [{ "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }], "available": "user" }, "messages.getQuickReplyMessages": { "comment": "Fetch (a subset or all) messages in a quick reply shortcut ».", "arguments": { "flags": "Flags, see TL conditional fields", "shortcut_id": "Quick reply shortcut ID.", "id": "IDs of the messages to fetch, if empty fetches all of them.", "hash": "Hash used for caching, for more info click here" }, "throws": [{ "code": 400, "name": "SHORTCUT_INVALID", "comment": "The specified shortcut is invalid." }], "available": "user" }, "messages.getMyStickers": { "comment": "Fetch all stickersets » owned by the current user.", "arguments": { "offset_id": "Offsets for pagination, for more info click here", "limit": "Maximum number of results to return, see pagination" }, "available": "user" }, "messages.deleteQuickReplyMessages": { "comment": "Delete one or more messages from a quick reply shortcut. This will also emit an {@link RawUpdateDeleteQuickReplyMessages} update.", "arguments": { "shortcut_id": "Shortcut ID.", "id": "IDs of shortcut messages to delete." }, "throws": [{ "code": 400, "name": "SHORTCUT_INVALID", "comment": "The specified shortcut is invalid." }], "available": "user" }, "messages.getAvailableEffects": { "comment": "Fetch the full list of usable animated message effects ».", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.getEmojiStickerGroups": { "comment": "Represents a list of emoji categories, to be used when choosing a sticker.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "messages.deleteFactCheck": { "comment": "Delete a fact-check from a message.\n\nCan only be used by independent fact-checkers as specified by the appConfig.can_edit_factcheck configuration flag.", "arguments": { "peer": "Peer where the message was sent.", "msg_id": "Message ID" }, "throws": [{ "code": 403, "name": "CHAT_ACTION_FORBIDDEN", "comment": "You cannot execute this action." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.requestMainWebView": { "comment": "Open a Main Mini App.", "arguments": { "flags": "Flags, see TL conditional fields", "compact": "If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the Main Mini App link is equal to compact.", "peer": "Currently open chat, may be {@link RawInputPeerEmpty} if no chat is currently open.", "bot": "Bot that owns the main mini app.", "start_param": "Start parameter, if opening from a Main Mini App link ».", "theme_params": "Theme parameters »", "platform": "Short name of the application; 0-64 English letters, digits, and underscores" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "messages.editFactCheck": { "comment": "Edit/create a fact-check on a message.\n\nCan only be used by independent fact-checkers as specified by the appConfig.can_edit_factcheck configuration flag.", "arguments": { "peer": "Peer where the message was sent", "msg_id": "Message ID", "text": "Fact-check (maximum UTF-8 length specified in appConfig.factcheck_length_limit)." }, "throws": [{ "code": 403, "name": "CHAT_ACTION_FORBIDDEN", "comment": "You cannot execute this action." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "messages.getFactCheck": { "comment": "Fetch one or more factchecks, see here » for the full flow.", "arguments": { "peer": "Peer where the messages were sent.", "msg_id": "Messages that have associated {@link RawFactCheck} constructors with the need_check flag set." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "updates.getState": { "comment": "Returns a current state of updates.", "available": "both", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "updates.getDifference": { "comment": "Get new updates.", "arguments": { "flags": "Flags, see TL conditional fields", "pts": "PTS, see updates.", "pts_limit": "PTS limit", "pts_total_limit": "For fast updating: if provided and pts + pts_total_limit < remote pts, {@link updates.RawDifferenceTooLong} will be returned.
Simply tells the server to not return the difference if it is bigger than pts_total_limit
If the remote pts is too big (> ~4000000), this field will default to 1000000", "date": "date, see updates.", "qts": "QTS, see updates.", "qts_limit": "QTS limit" }, "throws": [{ "code": 400, "name": "CDN_METHOD_INVALID", "comment": "You can't call this method in a CDN DC." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "DATE_EMPTY", "comment": "Date empty." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PERSISTENT_TIMESTAMP_EMPTY", "comment": "Persistent timestamp empty." }, { "code": 400, "name": "PERSISTENT_TIMESTAMP_INVALID", "comment": "Persistent timestamp invalid." }, { "code": 500, "name": "RANDOM_ID_DUPLICATE", "comment": "You provided a random ID that was already used." }, { "code": 400, "name": "USERNAME_INVALID", "comment": "The provided username is not valid." }, { "code": 400, "name": "USER_NOT_PARTICIPANT", "comment": "You're not a member of this supergroup/channel." }], "available": "both" }, "photos.updateProfilePhoto": { "comment": "Installs a previously uploaded photo as a profile photo.", "arguments": { "flags": "Flags, see TL conditional fields", "fallback": "If set, the chosen profile photo will be shown to users that can't display your main profile photo due to your privacy settings.", "bot": "Can contain info of a bot we own, to change the profile photo of that bot, instead of the current user.", "id": "Input photo" }, "throws": [{ "code": 400, "name": "ALBUM_PHOTOS_TOO_MANY", "comment": "You have uploaded too many profile photos, delete some before retrying." }, { "code": 400, "name": "FILE_PARTS_INVALID", "comment": "The number of file parts is invalid." }, { "code": 400, "name": "IMAGE_PROCESS_FAILED", "comment": "Failure while processing image." }, { "code": 400, "name": "LOCATION_INVALID", "comment": "The provided location is invalid." }, { "code": 400, "name": "PHOTO_CROP_SIZE_SMALL", "comment": "Photo is too small." }, { "code": 400, "name": "PHOTO_EXT_INVALID", "comment": "The extension of the photo is invalid." }, { "code": 400, "name": "PHOTO_ID_INVALID", "comment": "Photo ID invalid." }], "available": "both" }, "updates.getChannelDifference": { "comment": "Returns the difference between the current state of updates of a certain channel and transmitted.", "arguments": { "flags": "Flags, see TL conditional fields", "force": "Set to true to skip some possibly unneeded updates and reduce server-side load", "channel": "The channel", "filter": "Messsage filter", "pts": "Persistent timestamp (see updates)", "limit": "How many updates to fetch, max 100000
Ordinary (non-bot) users are supposed to pass 10-100" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHANNEL_PUBLIC_GROUP_NA", "comment": "channel/supergroup not available." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "FROM_MESSAGE_BOT_DISABLED", "comment": "Bots can't use fromMessage min constructors." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PERSISTENT_TIMESTAMP_EMPTY", "comment": "Persistent timestamp empty." }, { "code": 400, "name": "PERSISTENT_TIMESTAMP_INVALID", "comment": "Persistent timestamp invalid." }, { "code": 500, "name": "PERSISTENT_TIMESTAMP_OUTDATED", "comment": "Channel internal replication issues, try again later (treat this like an RPC_CALL_FAIL)." }, { "code": 400, "name": "PINNED_DIALOGS_TOO_MUCH", "comment": "Too many pinned dialogs." }, { "code": 400, "name": "RANGES_INVALID", "comment": "Invalid range provided." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }], "available": "both" }, "photos.uploadProfilePhoto": { "comment": "Updates current user profile photo.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.", "arguments": { "flags": "Flags, see TL conditional fields", "fallback": "If set, the chosen profile photo will be shown to users that can't display your main profile photo due to your privacy settings.", "bot": "Can contain info of a bot we own, to change the profile photo of that bot, instead of the current user.", "file": "Profile photo", "video": "Animated profile picture video", "video_start_ts": "Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set.", "video_emoji_markup": "Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor." }, "throws": [{ "code": 400, "name": "ALBUM_PHOTOS_TOO_MANY", "comment": "You have uploaded too many profile photos, delete some before retrying." }, { "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "EMOJI_MARKUP_INVALID", "comment": "The specified video_emoji_markup was invalid." }, { "code": 400, "name": "FILE_PARTS_INVALID", "comment": "The number of file parts is invalid." }, { "code": 400, "name": "IMAGE_PROCESS_FAILED", "comment": "Failure while processing image." }, { "code": 400, "name": "PHOTO_CROP_FILE_MISSING", "comment": "Photo crop file missing." }, { "code": 400, "name": "PHOTO_CROP_SIZE_SMALL", "comment": "Photo is too small." }, { "code": 400, "name": "PHOTO_EXT_INVALID", "comment": "The extension of the photo is invalid." }, { "code": 400, "name": "PHOTO_FILE_MISSING", "comment": "Profile photo file missing." }, { "code": 400, "name": "PHOTO_INVALID", "comment": "Photo invalid." }, { "code": 400, "name": "STICKER_MIME_INVALID", "comment": "The specified sticker MIME type is invalid." }, { "code": 400, "name": "VIDEO_FILE_INVALID", "comment": "The specified video file is invalid." }], "available": "both" }, "photos.getUserPhotos": { "comment": "Returns the list of user photos.", "arguments": { "user_id": "User ID", "offset": "Number of list elements to be skipped", "max_id": "If a positive value was transferred, the method will return only photos with IDs less than the set one. This parameter is often useful when refetching file references », as in conjuction with limit=1 and offset=-1 the {@link RawPhoto} object with the id specified in max_id can be fetched.", "limit": "Number of list elements to be returned" }, "throws": [{ "code": 400, "name": "MAX_ID_INVALID", "comment": "The provided max ID is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "both" }, "photos.deletePhotos": { "comment": "Deletes profile photos. The method returns a list of successfully deleted photo IDs.", "arguments": { "id": "Input photos to delete" }, "available": "user" }, "photos.uploadContactProfilePhoto": { "comment": "Upload a custom profile picture for a contact, or suggest a new profile picture to a contact.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.", "arguments": { "flags": "Flags, see TL conditional fields", "suggest": "If set, will send a {@link RawMessageActionSuggestProfilePhoto} service message to user_id, suggesting them to use the specified profile picture; otherwise, will set a personal profile picture for the user (only visible to the current user).", "save": "If set, removes a previously set personal profile picture (does not affect suggested profile pictures, to remove them simply deleted the {@link RawMessageActionSuggestProfilePhoto} service message with {@link messages.RawDeleteMessagesRequest}).", "user_id": "The contact", "file": "Profile photo", "video": "Animated profile picture video", "video_start_ts": "Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set.", "video_emoji_markup": "Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor." }, "throws": [{ "code": 400, "name": "CONTACT_MISSING", "comment": "The specified user is not a contact." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "user" }, "upload.saveFilePart": { "comment": "Saves a part of file for further sending to one of the methods.", "arguments": { "file_id": "Random file identifier created by the client", "file_part": "Numerical order of a part", "bytes": "Binary data, content of a part" }, "throws": [{ "code": 400, "name": "FILE_PART_EMPTY", "comment": "The provided file part is empty." }, { "code": 400, "name": "FILE_PART_INVALID", "comment": "The file part number is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "both" }, "upload.getFile": { "comment": "Returns content of a whole file or its part.", "arguments": { "flags": "Flags, see TL conditional fields", "precise": "Disable some checks on limit and offset values, useful for example to stream videos by keyframes", "cdn_supported": "Whether the current client supports CDN downloads", "location": "File location", "offset": "Number of bytes to be skipped", "limit": "Number of bytes to be returned" }, "throws": [{ "code": 400, "name": "CDN_METHOD_INVALID", "comment": "You can't call this method in a CDN DC." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 406, "name": "FILEREF_UPGRADE_NEEDED", "comment": "The client has to be updated in order to support file references." }, { "code": 400, "name": "FILE_ID_INVALID", "comment": "The provided file id is invalid." }, { "code": 400, "name": "FILE_REFERENCE_EXPIRED", "comment": "File reference expired, it must be refetched as described in the documentation." }, { "code": 420, "name": "FLOOD_PREMIUM_WAIT_%d", "comment": "Please wait %d seconds before repeating the action, or purchase a Telegram Premium subscription to remove this rate limit." }, { "code": 400, "name": "LIMIT_INVALID", "comment": "The provided limit is invalid." }, { "code": 400, "name": "LOCATION_INVALID", "comment": "The provided location is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "OFFSET_INVALID", "comment": "The provided offset is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "both" }, "upload.saveBigFilePart": { "comment": "Saves a part of a large file (over 10 MB in size) to be later passed to one of the methods.", "arguments": { "file_id": "Random file id, created by the client", "file_part": "Part sequence number", "file_total_parts": "Total number of parts", "bytes": "Binary data, part contents" }, "throws": [{ "code": 400, "name": "FILE_PARTS_INVALID", "comment": "The number of file parts is invalid." }, { "code": 400, "name": "FILE_PART_EMPTY", "comment": "The provided file part is empty." }, { "code": 400, "name": "FILE_PART_INVALID", "comment": "The file part number is invalid." }, { "code": 400, "name": "FILE_PART_SIZE_CHANGED", "comment": "Provided file part size has changed." }, { "code": 400, "name": "FILE_PART_SIZE_INVALID", "comment": "The provided file part size is invalid." }, { "code": 400, "name": "FILE_PART_TOO_BIG", "comment": "The uploaded file part is too big." }], "available": "both" }, "upload.getWebFile": { "comment": "Returns content of a web file, by proxying the request through telegram, see the webfile docs for more info.\n\nNote: the query must be sent to the DC specified in the webfile_dc_id MTProto configuration field.", "arguments": { "location": "The file to download", "offset": "Number of bytes to be skipped", "limit": "Number of bytes to be returned" }, "throws": [{ "code": 400, "name": "DOCUMENT_INVALID", "comment": "The specified document is invalid." }, { "code": 400, "name": "LOCATION_INVALID", "comment": "The provided location is invalid." }], "available": "user" }, "upload.getCdnFile": { "comment": "Download a CDN file.", "arguments": { "file_token": "File token", "offset": "Offset of chunk to download", "limit": "Length of chunk to download" }, "throws": [{ "code": 400, "name": "FILE_TOKEN_INVALID", "comment": "The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile." }], "available": "user" }, "upload.reuploadCdnFile": { "comment": "Request a reupload of a certain file to a CDN DC.", "arguments": { "file_token": "File token", "request_token": "Request token" }, "throws": [{ "code": 400, "name": "CDN_METHOD_INVALID", "comment": "You can't call this method in a CDN DC." }, { "code": 500, "name": "CDN_UPLOAD_TIMEOUT", "comment": "A server-side timeout occurred while reuploading the file to the CDN DC." }, { "code": 400, "name": "FILE_TOKEN_INVALID", "comment": "The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile." }, { "code": 400, "name": "LOCATION_INVALID", "comment": "The provided location is invalid." }, { "code": 400, "name": "REQUEST_TOKEN_INVALID", "comment": "The master DC did not accept the request_token from the CDN DC. Continue downloading the file from the master DC using upload.getFile." }, { "code": 400, "name": "RSA_DECRYPT_FAILED", "comment": "Internal RSA decryption failed." }], "available": "both" }, "upload.getCdnFileHashes": { "comment": "Get SHA256 hashes for verifying downloaded CDN files", "arguments": { "file_token": "File", "offset": "Offset from which to start getting hashes" }, "throws": [{ "code": 400, "name": "CDN_METHOD_INVALID", "comment": "You can't call this method in a CDN DC." }, { "code": 400, "name": "FILE_TOKEN_INVALID", "comment": "The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile." }, { "code": 400, "name": "RSA_DECRYPT_FAILED", "comment": "Internal RSA decryption failed." }], "available": "both" }, "upload.getFileHashes": { "comment": "Get SHA256 hashes for verifying downloaded files", "arguments": { "location": "File", "offset": "Offset from which to get file hashes" }, "throws": [{ "code": 400, "name": "LOCATION_INVALID", "comment": "The provided location is invalid." }], "available": "both" }, "help.getNearestDc": { "comment": "Returns info on data center nearest to the user.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.getAppUpdate": { "comment": "Returns information on update availability for the current application.", "arguments": { "source": "Source" }, "available": "user" }, "help.getConfig": { "comment": "Returns current configuration, including data center configuration.", "throws": [{ "code": 400, "name": "CONNECTION_API_ID_INVALID", "comment": "The provided API id is invalid." }, { "code": 400, "name": "CONNECTION_APP_VERSION_EMPTY", "comment": "App version is empty." }, { "code": 400, "name": "CONNECTION_LAYER_INVALID", "comment": "Layer invalid." }, { "code": 400, "name": "DATA_INVALID", "comment": "Encrypted data invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "USERNAME_INVALID", "comment": "The provided username is not valid." }, { "code": 403, "name": "USER_PRIVACY_RESTRICTED", "comment": "The user's privacy settings do not allow you to do this." }], "available": "both", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.getSupport": { "comment": "Returns the support user for the \"ask a question\" feature.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.getInviteText": { "comment": "Returns localized text of a text message with an invitation.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.getCdnConfig": { "comment": "Get configuration for CDN file downloads.", "available": "both", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.getTermsOfServiceUpdate": { "comment": "Look for updates of telegram's terms of service", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.getRecentMeUrls": { "comment": "Get recently used t.me links.\n\nWhen installing official applications from \"Download Telegram\" buttons present in t.me pages, a referral parameter is passed to applications after installation.
\nIf, after downloading the application, the user creates a new account (instead of logging into an existing one), the referral parameter should be imported using this method, which returns the t.me pages the user recently opened, before installing Telegram.", "arguments": { "referer": "Referrer" }, "available": "user" }, "help.acceptTermsOfService": { "comment": "Accept the new terms of service", "arguments": { "id": "ID of terms of service" }, "throws": [{ "code": 400, "name": "DATA_JSON_INVALID", "comment": "The provided JSON data is invalid." }], "available": "user" }, "help.setBotUpdatesStatus": { "comment": "Informs the server about the number of pending bot updates if they haven't been processed for a long time; for bots only", "arguments": { "pending_updates_count": "Number of pending updates", "message": "Error message, if present" }, "throws": [{ "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "help.getDeepLinkInfo": { "comment": "Get info about an unsupported deep link, see here for more info ».", "arguments": { "path": "Path component of a tg: link" }, "available": "user" }, "help.saveAppLog": { "comment": "Saves logs of application on the server.", "arguments": { "events": "List of input events" }, "available": "user" }, "help.getAppConfig": { "comment": "Get app-specific configuration, see client configuration for more info on the result.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "help.getPassportConfig": { "comment": "Get passport configuration", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "help.getPromoData": { "comment": "Get MTProxy/Public Service Announcement information", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.hidePromoData": { "comment": "Hide MTProxy/Public Service Announcement information", "arguments": { "peer": "Peer to hide" }, "available": "user" }, "help.getSupportName": { "comment": "Get localized name of the telegram support user", "throws": [{ "code": 403, "name": "USER_INVALID", "comment": "Invalid user provided." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "help.getCountriesList": { "comment": "Get name, ISO code, localized name and phone codes/patterns of all available countries", "arguments": { "lang_code": "Language code of the current user", "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "help.editUserInfo": { "comment": "Internal use", "arguments": { "user_id": "User", "message": "Message", "entities": "Message entities for styled text" }, "throws": [{ "code": 400, "name": "ENTITY_BOUNDS_INVALID", "comment": "A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length." }, { "code": 403, "name": "USER_INVALID", "comment": "Invalid user provided." }], "available": "user" }, "help.getPeerColors": { "comment": "Get the set of accent color palettes » that can be used for message accents.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "help.getUserInfo": { "comment": "Can only be used by TSF members to obtain internal information.", "arguments": { "user_id": "User ID" }, "throws": [{ "code": 403, "name": "USER_INVALID", "comment": "Invalid user provided." }], "available": "user" }, "help.dismissSuggestion": { "comment": "Dismiss a suggestion, see here for more info ».", "arguments": { "peer": "In the case of pending suggestions in {@link RawChannelFull}, the channel ID.", "suggestion": "Suggestion, see here for more info »." }, "available": "user" }, "help.getTimezonesList": { "comment": "Returns timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "help.getPeerProfileColors": { "comment": "Get the set of accent color palettes » that can be used in profile page backgrounds.", "arguments": { "hash": "Hash used for caching, for more info click here." }, "available": "user" }, "help.getPremiumPromo": { "comment": "Get Telegram Premium promotion information", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "channels.deleteMessages": { "comment": "Delete messages in a channel/supergroup", "arguments": { "channel": "Channel/supergroup", "id": "IDs of messages to delete" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "MESSAGE_DELETE_FORBIDDEN", "comment": "You can't delete one of the messages you tried to delete, most likely because it is a service message." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "both" }, "channels.readHistory": { "comment": "Mark channel/supergroup history as read", "arguments": { "channel": "Channel/supergroup", "max_id": "ID of message up to which messages should be marked as read" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "user" }, "channels.reportSpam": { "comment": "Reports some messages from a user in a supergroup as spam; requires administrator rights in the supergroup", "arguments": { "channel": "Supergroup", "participant": "Participant whose messages should be reported", "id": "IDs of spam messages" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "user" }, "channels.getMessages": { "comment": "Get channel/supergroup messages", "arguments": { "channel": "Channel/supergroup", "id": "IDs of messages to get" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MESSAGE_IDS_EMPTY", "comment": "No message ids were provided." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }], "available": "both" }, "channels.getParticipants": { "comment": "Get the participants of a supergroup/channel", "arguments": { "channel": "Channel", "filter": "Which participant types to fetch", "offset": "Offset", "limit": "Limit", "hash": "Hash" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "both" }, "channels.getParticipant": { "comment": "Get info about a channel/supergroup participant", "arguments": { "channel": "Channel/supergroup", "participant": "Participant to get info about" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PARTICIPANT_ID_INVALID", "comment": "The specified participant ID is invalid." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }, { "code": 400, "name": "USER_NOT_PARTICIPANT", "comment": "You're not a member of this supergroup/channel." }], "available": "both" }, "channels.getChannels": { "comment": "Get info about channels/supergroups", "arguments": { "id": "IDs of channels/supergroups to get info about" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }], "available": "both" }, "channels.getFullChannel": { "comment": "Get full info about a supergroup, gigagroup or channel", "arguments": { "channel": "The channel, supergroup or gigagroup to get info about" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHANNEL_PUBLIC_GROUP_NA", "comment": "channel/supergroup not available." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "both" }, "channels.editTitle": { "comment": "Edit the name of a channel/supergroup", "arguments": { "channel": "Channel/supergroup", "title": "New name" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "CHAT_TITLE_EMPTY", "comment": "No chat title provided." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }], "available": "both" }, "channels.editAdmin": { "comment": "Modify the admin rights of a user in a supergroup/channel.", "arguments": { "channel": "The supergroup/channel.", "user_id": "The ID of the user whose admin rights should be modified", "admin_rights": "The admin rights", "rank": "Indicates the role (rank) of the admin in the group: just an arbitrary string" }, "throws": [{ "code": 400, "name": "ADMINS_TOO_MUCH", "comment": "There are too many admins." }, { "code": 400, "name": "ADMIN_RANK_EMOJI_NOT_ALLOWED", "comment": "An admin rank cannot contain emojis." }, { "code": 400, "name": "ADMIN_RANK_INVALID", "comment": "The specified admin rank is invalid." }, { "code": 400, "name": "BOTS_TOO_MUCH", "comment": "There are too many bots in this chat/channel." }, { "code": 400, "name": "BOT_CHANNELS_NA", "comment": "Bots can't edit admin privileges." }, { "code": 400, "name": "BOT_GROUPS_BLOCKED", "comment": "This bot can't be added to groups." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_INVITE_REQUIRED", "comment": "You do not have the rights to do this." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 406, "name": "FRESH_CHANGE_ADMINS_FORBIDDEN", "comment": "You were just elected admin, you can't add or modify other admins yet." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 403, "name": "RIGHT_FORBIDDEN", "comment": "Your admin rights do not allow you to do this." }, { "code": 400, "name": "USERS_TOO_MUCH", "comment": "The maximum number of users has been exceeded (to create a chat, for example)." }, { "code": 400, "name": "USER_BLOCKED", "comment": "User blocked." }, { "code": 403, "name": "USER_CHANNELS_TOO_MUCH", "comment": "One of the users you tried to add is already in too many channels/supergroups." }, { "code": 400, "name": "USER_CREATOR", "comment": "For channels.editAdmin: you've tried to edit the admin rights of the owner, but you're not the owner; for channels.leaveChannel: you can't leave this channel, because you're its creator." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }, { "code": 403, "name": "USER_NOT_MUTUAL_CONTACT", "comment": "The provided user is not a mutual contact." }, { "code": 403, "name": "USER_PRIVACY_RESTRICTED", "comment": "The user's privacy settings do not allow you to do this." }, { "code": 403, "name": "USER_RESTRICTED", "comment": "You're spamreported, you can't create channels or chats." }], "available": "both" }, "channels.checkUsername": { "comment": "Check if a username is free and can be assigned to a channel/supergroup", "arguments": { "channel": "The channel/supergroup that will assigned the specified username", "username": "The username to check" }, "throws": [{ "code": 400, "name": "CHANNELS_ADMIN_PUBLIC_TOO_MUCH", "comment": "You're admin of too many public channels, make some channels private to change the username of this channel." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USERNAME_INVALID", "comment": "The provided username is not valid." }, { "code": 400, "name": "USERNAME_OCCUPIED", "comment": "The provided username is already occupied." }, { "code": 400, "name": "USERNAME_PURCHASE_AVAILABLE", "comment": "The specified username can be purchased on https://fragment.com." }], "available": "user" }, "channels.inviteToChannel": { "comment": "Invite users to a channel/supergroup", "arguments": { "channel": "Channel/supergroup", "users": "Users to invite" }, "throws": [{ "code": 400, "name": "BOTS_TOO_MUCH", "comment": "There are too many bots in this chat/channel." }, { "code": 400, "name": "BOT_GROUPS_BLOCKED", "comment": "This bot can't be added to groups." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_INVALID", "comment": "Invalid chat." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "USERS_TOO_MUCH", "comment": "The maximum number of users has been exceeded (to create a chat, for example)." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }, { "code": 400, "name": "USER_BLOCKED", "comment": "User blocked." }, { "code": 400, "name": "USER_BOT", "comment": "Bots can only be admins in channels." }, { "code": 403, "name": "USER_CHANNELS_TOO_MUCH", "comment": "One of the users you tried to add is already in too many channels/supergroups." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }, { "code": 400, "name": "USER_KICKED", "comment": "This user was kicked from this supergroup/channel." }, { "code": 403, "name": "USER_NOT_MUTUAL_CONTACT", "comment": "The provided user is not a mutual contact." }, { "code": 403, "name": "USER_PRIVACY_RESTRICTED", "comment": "The user's privacy settings do not allow you to do this." }], "available": "user" }, "channels.editPhoto": { "comment": "Change the photo of a channel/supergroup", "arguments": { "channel": "Channel/supergroup whose photo should be edited", "photo": "New photo" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "FILE_PARTS_INVALID", "comment": "The number of file parts is invalid." }, { "code": 400, "name": "FILE_REFERENCE_INVALID", "comment": "The specified file reference is invalid." }, { "code": 400, "name": "IMAGE_PROCESS_FAILED", "comment": "Failure while processing image." }, { "code": 400, "name": "PHOTO_CROP_SIZE_SMALL", "comment": "Photo is too small." }, { "code": 400, "name": "PHOTO_EXT_INVALID", "comment": "The extension of the photo is invalid." }, { "code": 400, "name": "PHOTO_INVALID", "comment": "Photo invalid." }, { "code": 400, "name": "STICKER_MIME_INVALID", "comment": "The specified sticker MIME type is invalid." }], "available": "both" }, "channels.updateUsername": { "comment": "Change or remove the username of a supergroup/channel", "arguments": { "channel": "Channel", "username": "New username, pass an empty string to remove the username" }, "throws": [{ "code": 400, "name": "CHANNELS_ADMIN_PUBLIC_TOO_MUCH", "comment": "You're admin of too many public channels, make some channels private to change the username of this channel." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "USERNAME_INVALID", "comment": "The provided username is not valid." }, { "code": 400, "name": "USERNAME_NOT_MODIFIED", "comment": "The username was not modified." }, { "code": 400, "name": "USERNAME_OCCUPIED", "comment": "The provided username is already occupied." }, { "code": 400, "name": "USERNAME_PURCHASE_AVAILABLE", "comment": "The specified username can be purchased on https://fragment.com." }], "available": "user" }, "channels.joinChannel": { "comment": "Join a channel/supergroup", "arguments": { "channel": "Channel/supergroup to join" }, "throws": [{ "code": 400, "name": "CHANNELS_TOO_MUCH", "comment": "You have joined too many channels/supergroups." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_INVALID", "comment": "Invalid chat." }, { "code": 400, "name": "INVITE_HASH_EMPTY", "comment": "The invite hash is empty." }, { "code": 406, "name": "INVITE_HASH_EXPIRED", "comment": "The invite link has expired." }, { "code": 400, "name": "INVITE_HASH_INVALID", "comment": "The invite hash is invalid." }, { "code": 400, "name": "INVITE_REQUEST_SENT", "comment": "You have successfully requested to join this chat or channel." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USERS_TOO_MUCH", "comment": "The maximum number of users has been exceeded (to create a chat, for example)." }, { "code": 400, "name": "USER_ALREADY_PARTICIPANT", "comment": "The user is already in the group." }, { "code": 400, "name": "USER_CHANNELS_TOO_MUCH", "comment": "One of the users you tried to add is already in too many channels/supergroups." }], "available": "user" }, "channels.leaveChannel": { "comment": "Leave a channel/supergroup", "arguments": { "channel": "Channel/supergroup to leave" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHANNEL_PUBLIC_GROUP_NA", "comment": "channel/supergroup not available." }, { "code": 400, "name": "CHAT_INVALID", "comment": "Invalid chat." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "USER_BANNED_IN_CHANNEL", "comment": "You're banned from sending messages in supergroups/channels." }, { "code": 400, "name": "USER_CREATOR", "comment": "For channels.editAdmin: you've tried to edit the admin rights of the owner, but you're not the owner; for channels.leaveChannel: you can't leave this channel, because you're its creator." }, { "code": 400, "name": "USER_NOT_PARTICIPANT", "comment": "You're not a member of this supergroup/channel." }], "available": "both" }, "channels.createChannel": { "comment": "Create a supergroup/channel.", "arguments": { "flags": "Flags, see TL conditional fields", "broadcast": "Whether to create a channel", "megagroup": "Whether to create a supergroup", "for_import": "Whether the supergroup is being created to import messages from a foreign chat service using {@link messages.RawInitHistoryImportRequest}", "forum": "Whether to create a forum", "title": "Channel title", "about": "Channel description", "geo_point": "Geogroup location, see here » for more info on geogroups.", "address": "Geogroup address, see here » for more info on geogroups.", "ttl_period": "Time-to-live of all messages that will be sent in the supergroup: once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well. You can use {@link messages.RawSetDefaultHistoryTTLRequest} to edit this value later." }, "throws": [{ "code": 400, "name": "ADDRESS_INVALID", "comment": "The specified geopoint address is invalid." }, { "code": 400, "name": "CHANNELS_ADMIN_LOCATED_TOO_MUCH", "comment": "The user has reached the limit of public geogroups." }, { "code": 400, "name": "CHANNELS_TOO_MUCH", "comment": "You have joined too many channels/supergroups." }, { "code": 400, "name": "CHAT_ABOUT_TOO_LONG", "comment": "Chat about too long." }, { "code": 500, "name": "CHAT_INVALID", "comment": "Invalid chat." }, { "code": 400, "name": "CHAT_TITLE_EMPTY", "comment": "No chat title provided." }, { "code": 400, "name": "TTL_PERIOD_INVALID", "comment": "The specified TTL period is invalid." }, { "code": 406, "name": "USER_RESTRICTED", "comment": "You're spamreported, you can't create channels or chats." }], "available": "user" }, "channels.exportMessageLink": { "comment": "Get link and embed info of a message in a channel/supergroup", "arguments": { "flags": "Flags, see TL conditional fields", "grouped": "Whether to include other grouped media (for albums)", "thread": "Whether to also include a thread ID, if available, inside of the link", "channel": "Channel", "id": "Message ID" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "user" }, "channels.deleteChannel": { "comment": "Delete a channel/supergroup", "arguments": { "channel": "Channel/supergroup to delete" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 406, "name": "CHANNEL_TOO_LARGE", "comment": "Channel is too large to be deleted; this error is issued when trying to delete channels with more than 1000 members (subject to change)." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }], "available": "user" }, "channels.toggleSignatures": { "comment": "Enable/disable message signatures in channels", "arguments": { "channel": "Channel", "enabled": "Value" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }], "available": "user" }, "channels.getAdminedPublicChannels": { "comment": "Get channels/supergroups/geogroups we're admin in. Usually called when the user exceeds the {@link RawConfig} for owned public channels/supergroups/geogroups, and the user is given the choice to remove one of their channels/supergroups/geogroups.", "arguments": { "flags": "Flags, see TL conditional fields", "by_location": "Get geogroups", "check_limit": "If set and the user has reached the limit of owned public channels/supergroups/geogroups, instead of returning the channel list one of the specified errors will be returned.
Useful to check if a new public channel can indeed be created, even before asking the user to enter a channel username to use in {@link channels.RawCheckUsernameRequest}/{@link channels.RawUpdateUsernameRequest}.", "for_personal": "Set this flag to only fetch the full list of channels that may be passed to {@link account.RawUpdatePersonalChannelRequest} to display them on our profile page." }, "throws": [{ "code": 400, "name": "CHANNELS_ADMIN_LOCATED_TOO_MUCH", "comment": "The user has reached the limit of public geogroups." }, { "code": 400, "name": "CHANNELS_ADMIN_PUBLIC_TOO_MUCH", "comment": "You're admin of too many public channels, make some channels private to change the username of this channel." }], "available": "user" }, "channels.getAdminLog": { "comment": "Get the admin log of a channel/supergroup", "arguments": { "flags": "Flags, see TL conditional fields", "channel": "Channel", "q": "Search query, can be empty", "events_filter": "Event filter", "admins": "Only show events from these admins", "max_id": "Maximum ID of message to return (see pagination)", "min_id": "Minimum ID of message to return (see pagination)", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "user" }, "channels.editBanned": { "comment": "Ban/unban/kick a user in a supergroup/channel.", "arguments": { "channel": "The supergroup/channel.", "participant": "Participant to ban", "banned_rights": "The banned rights" }, "throws": [{ "code": 406, "name": "BANNED_RIGHTS_INVALID", "comment": "You provided some invalid flags in the banned rights." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PARTICIPANT_ID_INVALID", "comment": "The specified participant ID is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_ADMIN_INVALID", "comment": "You're not an admin." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "both" }, "channels.readMessageContents": { "comment": "Mark channel/supergroup message contents as read", "arguments": { "channel": "Channel/supergroup", "id": "IDs of messages whose contents should be marked as read" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 406, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "user" }, "channels.deleteHistory": { "comment": "Delete the history of a supergroup", "arguments": { "flags": "Flags, see TL conditional fields", "for_everyone": "Whether the history should be deleted for everyone", "channel": "Supergroup whose history must be deleted", "max_id": "ID of message up to which the history must be deleted" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PARICIPANT_MISSING", "comment": "The current user is not in the channel." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHANNEL_TOO_BIG", "comment": "This channel has too many participants (>1000) to be deleted." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }], "available": "user" }, "channels.setStickers": { "comment": "Associate a stickerset to the supergroup", "arguments": { "channel": "Supergroup", "stickerset": "The stickerset to associate" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "PARTICIPANTS_TOO_FEW", "comment": "Not enough participants." }, { "code": 406, "name": "STICKERSET_OWNER_ANONYMOUS", "comment": "Provided stickerset can't be installed as group stickerset to prevent admin deanonymization." }], "available": "both" }, "channels.togglePreHistoryHidden": { "comment": "Hide/unhide message history for new channel/supergroup users", "arguments": { "channel": "Channel/supergroup", "enabled": "Hide/unhide" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_LINK_EXISTS", "comment": "The chat is public, you can't hide the history to new users." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "FORUM_ENABLED", "comment": "You can't execute the specified action because the group is a forum, disable forum functionality to continue." }], "available": "user" }, "channels.getGroupsForDiscussion": { "comment": "Get all groups that can be used as discussion groups.\n\nReturned basic group chats must be first upgraded to supergroups before they can be set as a discussion group.
\nTo set a returned supergroup as a discussion group, access to its old messages must be enabled using {@link channels.RawTogglePreHistoryHiddenRequest}, first.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "channels.getLeftChannels": { "comment": "Get a list of channels/supergroups we left, requires a takeout session, see here » for more info.", "arguments": { "offset": "Offset for pagination" }, "throws": [{ "code": 403, "name": "TAKEOUT_REQUIRED", "comment": "A takeout session needs to be initialized first, see here » for more info." }], "available": "user" }, "channels.editLocation": { "comment": "Edit location of geo group, see here » for more info on geogroups.", "arguments": { "channel": "Geogroup", "geo_point": "New geolocation", "address": "Address string" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "MEGAGROUP_GEO_REQUIRED", "comment": "This method can only be invoked on a geogroup." }, { "code": 400, "name": "MEGAGROUP_REQUIRED", "comment": "You can only use this method on a supergroup." }], "available": "user" }, "channels.setDiscussionGroup": { "comment": "Associate a group to a channel as discussion group for that channel", "arguments": { "broadcast": "Channel", "group": "Discussion group to associate to the channel" }, "throws": [{ "code": 400, "name": "BROADCAST_ID_INVALID", "comment": "Broadcast ID invalid." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "LINK_NOT_MODIFIED", "comment": "Discussion link not modified." }, { "code": 400, "name": "MEGAGROUP_ID_INVALID", "comment": "Invalid supergroup ID." }, { "code": 400, "name": "MEGAGROUP_PREHISTORY_HIDDEN", "comment": "Group with hidden history for new members can't be set as discussion groups." }], "available": "user" }, "channels.getInactiveChannels": { "comment": "Get inactive channels and supergroups", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "channels.editCreator": { "comment": "Transfer channel ownership", "arguments": { "channel": "Channel", "user_id": "New channel owner", "password": "2FA password of account" }, "throws": [{ "code": 400, "name": "CHANNELS_ADMIN_PUBLIC_TOO_MUCH", "comment": "You're admin of too many public channels, make some channels private to change the username of this channel." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "PASSWORD_HASH_INVALID", "comment": "The provided password hash is invalid." }, { "code": 400, "name": "PASSWORD_MISSING", "comment": "You must enable 2FA before executing this operation." }, { "code": 400, "name": "PASSWORD_TOO_FRESH_%d", "comment": "The password was modified less than 24 hours ago, try again in %d seconds." }, { "code": 400, "name": "SESSION_TOO_FRESH_%d", "comment": "This session was created less than 24 hours ago, try again in %d seconds." }, { "code": 400, "name": "SRP_ID_INVALID", "comment": "Invalid SRP ID provided." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "user" }, "channels.convertToGigagroup": { "comment": "Convert a supergroup to a gigagroup, when requested by channel suggestions.", "arguments": { "channel": "The supergroup to convert" }, "throws": [{ "code": 400, "name": "CHANNEL_ID_INVALID", "comment": "The specified supergroup ID is invalid." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "FORUM_ENABLED", "comment": "You can't execute the specified action because the group is a forum, disable forum functionality to continue." }, { "code": 400, "name": "PARTICIPANTS_TOO_FEW", "comment": "Not enough participants." }], "available": "user" }, "channels.toggleSlowMode": { "comment": "Toggle supergroup slow mode: if enabled, users will only be able to send one message every seconds seconds", "arguments": { "channel": "The supergroup", "seconds": "Users will only be able to send one message every seconds seconds, 0 to disable the limitation" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "SECONDS_INVALID", "comment": "Invalid duration provided." }], "available": "user" }, "channels.viewSponsoredMessage": { "comment": "Mark a specific sponsored message as read", "arguments": { "channel": "Peer", "random_id": "Message ID" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }], "available": "user" }, "channels.getSponsoredMessages": { "comment": "Get a list of sponsored messages", "arguments": { "channel": "Peer" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }], "available": "user" }, "channels.deleteParticipantHistory": { "comment": "Delete all messages sent by a specific participant of a given supergroup", "arguments": { "channel": "Supergroup", "participant": "The participant whose messages should be deleted" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PARTICIPANT_ID_INVALID", "comment": "The specified participant ID is invalid." }], "available": "user" }, "channels.getSendAs": { "comment": "Obtains a list of peers that can be used to send messages in a specific group", "arguments": { "peer": "The group where we intend to send messages" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "channels.deactivateAllUsernames": { "comment": "Disable all purchased usernames of a supergroup or channel", "arguments": { "channel": "Supergroup or channel" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }], "available": "user" }, "channels.toggleForum": { "comment": "Enable or disable forum functionality in a supergroup.", "arguments": { "channel": "Supergroup ID", "enabled": "Enable or disable forum functionality" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_DISCUSSION_UNALLOWED", "comment": "You can't enable forum topics in a discussion group linked to a channel." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }], "available": "user" }, "channels.toggleJoinToSend": { "comment": "Set whether all users should join a discussion group in order to comment on a post »", "arguments": { "channel": "Discussion group", "enabled": "Toggle" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }], "available": "user" }, "channels.createForumTopic": { "comment": "Create a forum topic; requires manage_topics rights.", "arguments": { "flags": "Flags, see TL conditional fields", "channel": "The forum", "title": "Topic title (maximum UTF-8 length: 128)", "icon_color": "If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F.", "icon_emoji_id": "ID of the custom emoji used as topic icon. Telegram Premium users can use any custom emoji, other users can only use the custom emojis contained in the {@link RawInputStickerSetEmojiDefaultTopicIcons} emoji pack.", "random_id": "Unique client message ID to prevent duplicate sending of the same event", "send_as": "Create the topic as the specified peer" }, "throws": [{ "code": 400, "name": "CHANNEL_FORUM_MISSING", "comment": "This supergroup is not a forum." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 403, "name": "CHAT_WRITE_FORBIDDEN", "comment": "You can't write in this chat." }, { "code": 403, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }, { "code": 400, "name": "TOPIC_TITLE_EMPTY", "comment": "The specified topic title is empty." }], "available": "both" }, "channels.toggleJoinRequest": { "comment": "Set whether all users should request admin approval to join the group ».", "arguments": { "channel": "Group", "enabled": "Toggle" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "CHAT_PUBLIC_REQUIRED", "comment": "You can only enable join requests in public groups." }], "available": "user" }, "channels.reorderUsernames": { "comment": "Reorder active usernames", "arguments": { "channel": "The supergroup or channel", "order": "The new order for active usernames. All active usernames must be specified." }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }], "available": "user" }, "channels.getForumTopicsByID": { "comment": "Get forum topics by their ID", "arguments": { "channel": "Forum", "topics": "Topic IDs" }, "throws": [{ "code": 400, "name": "CHANNEL_FORUM_MISSING", "comment": "This supergroup is not a forum." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "TOPICS_EMPTY", "comment": "You specified no topic IDs." }], "available": "user" }, "channels.editForumTopic": { "comment": "Edit forum topic; requires manage_topics rights.", "arguments": { "flags": "Flags, see TL conditional fields", "channel": "Supergroup", "topic_id": "Topic ID", "title": "If present, will update the topic title (maximum UTF-8 length: 128).", "icon_emoji_id": "If present, updates the custom emoji used as topic icon. Telegram Premium users can use any custom emoji, other users can only use the custom emojis contained in the {@link RawInputStickerSetEmojiDefaultTopicIcons} emoji pack. Pass 0 to switch to the fallback topic icon.", "closed": "If present, will update the open/closed status of the topic.", "hidden": "If present, will hide/unhide the topic (only valid for the \"General\" topic, id=1)." }, "throws": [{ "code": 400, "name": "CHANNEL_FORUM_MISSING", "comment": "This supergroup is not a forum." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "DOCUMENT_INVALID", "comment": "The specified document is invalid." }, { "code": 400, "name": "GENERAL_MODIFY_ICON_FORBIDDEN", "comment": "You can't modify the icon of the \"General\" topic." }, { "code": 400, "name": "TOPIC_CLOSE_SEPARATELY", "comment": "The close flag cannot be provided together with any of the other flags." }, { "code": 400, "name": "TOPIC_HIDE_SEPARATELY", "comment": "The hide flag cannot be provided together with any of the other flags." }, { "code": 400, "name": "TOPIC_ID_INVALID", "comment": "The specified topic ID is invalid." }, { "code": 400, "name": "TOPIC_NOT_MODIFIED", "comment": "The updated topic info is equal to the current topic info, nothing was changed." }], "available": "both" }, "channels.getForumTopics": { "comment": "Get topics of a forum", "arguments": { "flags": "Flags, see TL conditional fields", "channel": "Supergroup", "q": "Search query", "offset_date": "Offsets for pagination, for more info click here, date of the last message of the last found topic. Use 0 or any date in the future to get results from the last topic.", "offset_id": "Offsets for pagination, for more info click here, ID of the last message of the last found topic (or initially 0).", "offset_topic": "Offsets for pagination, for more info click here, ID of the last found topic (or initially 0).", "limit": "Maximum number of results to return, see pagination. For optimal performance, the number of returned topics is chosen by the server and can be smaller than the specified limit." }, "throws": [{ "code": 400, "name": "CHANNEL_FORUM_MISSING", "comment": "This supergroup is not a forum." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }], "available": "user" }, "channels.toggleUsername": { "comment": "Activate or deactivate a purchased fragment.com username associated to a supergroup or channel we own.", "arguments": { "channel": "Supergroup or channel", "username": "Username", "active": "Whether to activate or deactivate the username" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "USERNAMES_ACTIVE_TOO_MUCH", "comment": "The maximum number of active usernames was reached." }, { "code": 400, "name": "USERNAME_INVALID", "comment": "The provided username is not valid." }, { "code": 400, "name": "USERNAME_NOT_MODIFIED", "comment": "The username was not modified." }], "available": "user" }, "channels.updatePinnedForumTopic": { "comment": "Pin or unpin forum topics", "arguments": { "channel": "Supergroup ID", "topic_id": "Forum topic ID", "pinned": "Whether to pin or unpin the topic" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "TOPIC_ID_INVALID", "comment": "The specified topic ID is invalid." }], "available": "user" }, "channels.deleteTopicHistory": { "comment": "Delete message history of a forum topic", "arguments": { "channel": "Forum", "top_msg_id": "Topic ID" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "TOPIC_ID_INVALID", "comment": "The specified topic ID is invalid." }], "available": "both" }, "channels.reorderPinnedForumTopics": { "comment": "Reorder pinned forum topics", "arguments": { "flags": "Flags, see TL conditional fields", "force": "If not set, the order of only the topics present both server-side and in order will be changed (i.e. mentioning topics not pinned server-side in order will not pin them, and not mentioning topics pinned server-side will not unpin them).
If set, the entire server-side pinned topic list will be replaced with order (i.e. mentioning topics not pinned server-side in order will pin them, and not mentioning topics pinned server-side will unpin them)", "channel": "Supergroup ID", "order": "Topic IDs »" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }], "available": "user" }, "channels.reportAntiSpamFalsePositive": { "comment": "Report a native antispam false positive", "arguments": { "channel": "Supergroup ID", "msg_id": "Message ID that was mistakenly deleted by the native antispam system, taken from the admin log" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }], "available": "user" }, "channels.toggleAntiSpam": { "comment": "Enable or disable the native antispam system.", "arguments": { "channel": "Supergroup ID. The specified supergroup must have at least telegram_antispam_group_size_min members to enable antispam functionality, as specified by the client configuration parameters.", "enabled": "Enable or disable the native antispam system." }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }], "available": "user" }, "channels.toggleParticipantsHidden": { "comment": "Hide or display the participants list in a supergroup.\n\nThe supergroup must have at least hidden_members_group_size_min participants in order to use this method, as specified by the client configuration parameters ».", "arguments": { "channel": "Supergroup ID", "enabled": "If true, will hide the participants list; otherwise will unhide it." }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "CHAT_NOT_MODIFIED", "comment": "No changes were made to chat information because the new information you passed is identical to the current information." }, { "code": 400, "name": "PARTICIPANTS_TOO_FEW", "comment": "Not enough participants." }], "available": "user" }, "channels.toggleViewForumAsMessages": { "comment": "Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client: this setting only affects the current account, and is synced to other logged in sessions using this method.\n\nInvoking this method will update the value of the view_forum_as_messages flag of {@link RawChannelFull} or {@link RawDialog} and emit an {@link RawUpdateChannelViewForumAsMessages}.", "arguments": { "channel": "The forum", "enabled": "The new value of the view_forum_as_messages flag." }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }], "available": "user" }, "channels.updateColor": { "comment": "Update the accent color and background custom emoji » of a channel.", "arguments": { "flags": "Flags, see TL conditional fields", "for_profile": "Whether to change the accent color emoji pattern of the profile page; otherwise, the accent color and emoji pattern of messages will be changed.
Channels can change both message and profile palettes; supergroups can only change the profile palette, of course after reaching the appropriate boost level.", "channel": "Channel whose accent color should be changed.", "color": "ID of the accent color palette » to use (not RGB24, see here » for more info); if not set, the default palette is used.", "background_emoji_id": "Custom emoji ID used in the accent color pattern." }, "throws": [{ "code": 400, "name": "BOOSTS_REQUIRED", "comment": "The specified channel must first be boosted by its users in order to perform this action." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }], "available": "user" }, "channels.getChannelRecommendations": { "comment": "Obtain a list of similarly themed public channels, selected based on similarities in their subscriber bases.", "arguments": { "flags": "Flags, see TL conditional fields", "channel": "The method will return channels related to the passed channel. If not set, the method will returns channels related to channels the user has joined." }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }], "available": "user" }, "channels.setBoostsToUnblockRestrictions": { "comment": "Admins with {@link RawChatAdminRights} may allow users that apply a certain number of booosts » to the group to bypass {@link channels.RawToggleSlowModeRequest} and other » supergroup restrictions, see here » for more info.", "arguments": { "channel": "The supergroup.", "boosts": "The number of required boosts (1-8, 0 to disable)." }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }], "available": "user" }, "channels.setEmojiStickers": { "comment": "Set a custom emoji stickerset for supergroups. Only usable after reaching at least the boost level » specified in the group_emoji_stickers_level_min » config parameter.", "arguments": { "channel": "The supergroup", "stickerset": "The custom emoji stickerset to associate to the supergroup" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }], "available": "user" }, "channels.reportSponsoredMessage": { "comment": "Report a sponsored message », see here » for more info on the full flow.", "arguments": { "channel": "The channel where the sponsored message can be seen.", "random_id": "ID of the sponsored message.", "option": "Chosen report option, initially an empty string, see here » for more info on the full flow." }, "throws": [{ "code": 400, "name": "AD_EXPIRED", "comment": "The ad has expired (too old or not found)." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }], "available": "user" }, "bots.answerWebhookJSONQuery": { "comment": "Answers a custom query; for bots only", "arguments": { "query_id": "Identifier of a custom query", "data": "JSON-serialized answer to the query" }, "throws": [{ "code": 400, "name": "DATA_JSON_INVALID", "comment": "The provided JSON data is invalid." }, { "code": 400, "name": "QUERY_ID_INVALID", "comment": "The query ID is invalid." }, { "code": 403, "name": "USER_BOT_INVALID", "comment": "User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "channels.searchPosts": { "comment": "Globally search for posts from public channels » (including those we aren't a member of) containing a specific hashtag.", "arguments": { "hashtag": "The hashtag to search, without the # character.", "offset_rate": "Initially 0, then set to the {@link messages.RawMessagesSlice}", "offset_peer": "Offsets for pagination, for more info click here", "offset_id": "Offsets for pagination, for more info click here", "limit": "Maximum number of results to return, see pagination" }, "available": "user" }, "bots.resetBotCommands": { "comment": "Clear bot commands for the specified bot scope and language code", "arguments": { "scope": "Command scope", "lang_code": "Language code" }, "throws": [{ "code": 400, "name": "LANG_CODE_INVALID", "comment": "The specified language code is invalid." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "bots.sendCustomRequest": { "comment": "Sends a custom request; for bots only", "arguments": { "custom_method": "The method name", "params": "JSON-serialized method parameters" }, "throws": [{ "code": 400, "name": "DATA_JSON_INVALID", "comment": "The provided JSON data is invalid." }, { "code": 400, "name": "METHOD_INVALID", "comment": "The specified method is invalid." }, { "code": 403, "name": "USER_BOT_INVALID", "comment": "User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "bots.getBotCommands": { "comment": "Obtain a list of bot commands for the specified bot scope and language code", "arguments": { "scope": "Command scope", "lang_code": "Language code" }, "throws": [{ "code": 400, "name": "USER_BOT_INVALID", "comment": "User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "bots.setBotCommands": { "comment": "Set bot command list", "arguments": { "scope": "Command scope", "lang_code": "Language code", "commands": "Bot commands" }, "throws": [{ "code": 400, "name": "BOT_COMMAND_DESCRIPTION_INVALID", "comment": "The specified command description is invalid." }, { "code": 400, "name": "BOT_COMMAND_INVALID", "comment": "The specified command is invalid." }, { "code": 400, "name": "LANG_CODE_INVALID", "comment": "The specified language code is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "bot" }, "channels.restrictSponsoredMessages": { "comment": "Disable ads on the specified channel, for all users.\n\nAvailable only after reaching at least the boost level » specified in the channel_restrict_sponsored_level_min » config parameter.", "arguments": { "channel": "The channel.", "restricted": "Whether to disable or re-enable ads." }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }], "available": "user" }, "bots.setBotMenuButton": { "comment": "Sets the menu button action » for a given user or for all users", "arguments": { "user_id": "User ID", "button": "Bot menu button action" }, "throws": [{ "code": 400, "name": "BUTTON_TEXT_INVALID", "comment": "The specified button text is invalid." }, { "code": 400, "name": "BUTTON_URL_INVALID", "comment": "Button URL invalid." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "channels.clickSponsoredMessage": { "comment": "Informs the server that the user has either:", "arguments": { "channel": "Channel where the sponsored message was posted", "random_id": "Message ID" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }], "available": "user" }, "bots.setBotGroupDefaultAdminRights": { "comment": "Set the default suggested admin rights for bots being added as admins to groups, see here for more info on how to handle them ».", "arguments": { "admin_rights": "Admin rights" }, "throws": [{ "code": 400, "name": "RIGHTS_NOT_MODIFIED", "comment": "The new admin rights are equal to the old rights, no change was made." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "bots.getBotMenuButton": { "comment": "Gets the menu button action for a given user or for all users, previously set using {@link bots.RawSetBotMenuButtonRequest}; users can see this information in the {@link RawBotInfo} constructor.", "arguments": { "user_id": "User ID or empty for the default menu button." }, "throws": [{ "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "channels.updateEmojiStatus": { "comment": "Set an emoji status for a channel or supergroup.", "arguments": { "channel": "The channel/supergroup, must have at least channel_emoji_status_level_min/group_emoji_status_level_min boosts.", "emoji_status": "Emoji status to set" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }], "available": "user" }, "bots.setBotInfo": { "comment": "Set localized name, about text and description of a bot (or of the current account, if called by a bot).", "arguments": { "flags": "Flags, see TL conditional fields", "bot": "If called by a user, must contain the peer of a bot we own.", "lang_code": "Language code, if left empty update the fallback about text and description", "name": "New bot name", "about": "New about text", "description": "New description" }, "throws": [{ "code": 400, "name": "USER_BOT_INVALID", "comment": "User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts." }], "available": "both" }, "bots.setBotBroadcastDefaultAdminRights": { "comment": "Set the default suggested admin rights for bots being added as admins to channels, see here for more info on how to handle them ».", "arguments": { "admin_rights": "Admin rights" }, "throws": [{ "code": 400, "name": "RIGHTS_NOT_MODIFIED", "comment": "The new admin rights are equal to the old rights, no change was made." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }], "available": "bot" }, "bots.getBotInfo": { "comment": "Get localized name, about text and description of a bot (or of the current account, if called by a bot).", "arguments": { "flags": "Flags, see TL conditional fields", "bot": "If called by a user, must contain the peer of a bot we own.", "lang_code": "Language code, if left empty this method will return the fallback about text and description." }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "LANG_CODE_INVALID", "comment": "The specified language code is invalid." }, { "code": 400, "name": "USER_BOT_INVALID", "comment": "User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts." }], "available": "both" }, "bots.toggleUsername": { "comment": "Activate or deactivate a purchased fragment.com username associated to a bot we own.", "arguments": { "bot": "The bot", "username": "Username", "active": "Whether to activate or deactivate it" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "USERNAME_NOT_MODIFIED", "comment": "The username was not modified." }], "available": "user" }, "bots.reorderUsernames": { "comment": "Reorder usernames associated to a bot we own.", "arguments": { "bot": "The bot", "order": "The new order for active usernames. All active usernames must be specified." }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "USERNAME_NOT_MODIFIED", "comment": "The username was not modified." }], "available": "user" }, "bots.canSendMessage": { "comment": "Check whether the specified bot can send us messages", "arguments": { "bot": "The bot" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "bots.getPopularAppBots": { "comment": "Fetch popular Main Mini Apps, to be used in the apps tab of global search ».", "arguments": { "offset": "Offset for pagination, initially an empty string, then re-use the next_offset returned by the previous query.", "limit": "Maximum number of results to return, see pagination" }, "available": "user" }, "bots.allowSendMessage": { "comment": "Allow the specified bot to send us messages", "arguments": { "bot": "The bot" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "bots.addPreviewMedia": { "comment": "Add a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.", "arguments": { "bot": "The bot that owns the Main Mini App.", "lang_code": "ISO 639-1 language code, indicating the localization of the preview to add.", "media": "The photo/video preview, uploaded using {@link messages.RawUploadMediaRequest}." }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "bots.editPreviewMedia": { "comment": "Edit a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.", "arguments": { "bot": "The bot that owns the Main Mini App.", "lang_code": "ISO 639-1 language code, indicating the localization of the preview to edit.", "media": "The photo/video preview to replace, previously fetched as specified here ».", "new_media": "The new photo/video preview, uploaded using {@link messages.RawUploadMediaRequest}." }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "bots.invokeWebViewCustomMethod": { "comment": "Send a custom request from a mini bot app, triggered by a web_app_invoke_custom_method event ».\n\nThe response should be sent using a custom_method_invoked event, see here » for more info on the flow.", "arguments": { "bot": "Identifier of the bot associated to the mini bot app", "custom_method": "Identifier of the custom method to invoke", "params": "Method parameters" }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }, { "code": 400, "name": "DATA_JSON_INVALID", "comment": "The provided JSON data is invalid." }], "available": "user" }, "bots.reorderPreviewMedias": { "comment": "Reorder a main mini app previews, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.", "arguments": { "bot": "The bot that owns the Main Mini App.", "lang_code": "ISO 639-1 language code, indicating the localization of the previews to reorder.", "order": "New order of the previews." }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "bots.getPreviewMedias": { "comment": "Fetch main mini app previews, see here » for more info.", "arguments": { "bot": "The bot that owns the Main Mini App." }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "bots.deletePreviewMedia": { "comment": "Delete a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.", "arguments": { "bot": "The bot that owns the Main Mini App.", "lang_code": "ISO 639-1 language code, indicating the localization of the preview to delete.", "media": "The photo/video preview to delete, previously fetched as specified here »." }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "payments.getPaymentForm": { "comment": "Get a payment form", "arguments": { "flags": "Flags, see TL conditional fields", "invoice": "Invoice", "theme_params": "A JSON object with the following keys, containing color theme information (integers, RGB24) to pass to the payment provider, to apply in eventual verification pages:
bg_color - Background color
text_color - Text color
hint_color - Hint text color
link_color - Link color
button_color - Button color
button_text_color - Button text color" }, "throws": [{ "code": 400, "name": "BOOST_PEER_INVALID", "comment": "The specified boost_peer is invalid." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "SLUG_INVALID", "comment": "The specified invoice slug is invalid." }, { "code": 400, "name": "UNTIL_DATE_INVALID", "comment": "Invalid until date provided." }], "available": "user" }, "payments.validateRequestedInfo": { "comment": "Submit requested order information for validation", "arguments": { "flags": "Flags, see TL conditional fields", "save": "Save order information to re-use it for future orders", "invoice": "Invoice", "info": "Requested order information" }, "throws": [{ "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "payments.sendPaymentForm": { "comment": "Send compiled payment form", "arguments": { "flags": "Flags, see TL conditional fields", "form_id": "Form ID", "invoice": "Invoice", "requested_info_id": "ID of saved and validated {@link payments.RawValidatedRequestedInfo}", "shipping_option_id": "Chosen shipping option ID", "credentials": "Payment credentials", "tip_amount": "Tip, in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)." }, "throws": [{ "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "payments.clearSavedInfo": { "comment": "Clear saved payment information", "arguments": { "flags": "Flags, see TL conditional fields", "credentials": "Remove saved payment credentials", "info": "Clear the last order settings saved by the user" }, "available": "user" }, "payments.getBankCardData": { "comment": "Get info about a credit card", "arguments": { "number": "Credit card number" }, "throws": [{ "code": 400, "name": "BANK_CARD_NUMBER_INVALID", "comment": "The specified card number is invalid." }], "available": "user" }, "payments.getPaymentReceipt": { "comment": "Get payment receipt", "arguments": { "peer": "The peer where the payment receipt was sent", "msg_id": "Message ID of receipt" }, "throws": [{ "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }], "available": "user" }, "payments.exportInvoice": { "comment": "Generate an invoice deep link", "arguments": { "invoice_media": "Invoice" }, "throws": [{ "code": 400, "name": "CURRENCY_TOTAL_AMOUNT_INVALID", "comment": "The total amount of all prices is invalid." }, { "code": 400, "name": "INVOICE_PAYLOAD_INVALID", "comment": "The specified invoice payload is invalid." }, { "code": 400, "name": "MEDIA_INVALID", "comment": "Media invalid." }, { "code": 400, "name": "PAYMENT_PROVIDER_INVALID", "comment": "The specified payment provider is invalid." }], "available": "both" }, "payments.getSavedInfo": { "comment": "Get saved payment information", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "payments.assignAppStoreTransaction": { "comment": "Informs server about a purchase made through the App Store: for official applications only.", "arguments": { "receipt": "Receipt", "purpose": "Payment purpose" }, "throws": [{ "code": 400, "name": "RECEIPT_EMPTY", "comment": "The specified receipt is empty." }], "available": "user" }, "payments.assignPlayMarketTransaction": { "comment": "Informs server about a purchase made through the Play Store: for official applications only.", "arguments": { "receipt": "Receipt", "purpose": "Payment purpose" }, "throws": [{ "code": 400, "name": "DATA_JSON_INVALID", "comment": "The provided JSON data is invalid." }], "available": "user" }, "payments.canPurchasePremium": { "comment": "Checks whether Telegram Premium purchase is possible. Must be called before in-store Premium purchase, official apps only.", "arguments": { "purpose": "Payment purpose" }, "throws": [{ "code": 406, "name": "PREMIUM_CURRENTLY_UNAVAILABLE", "comment": "You cannot currently purchase a Premium subscription." }], "available": "user" }, "bots.getPreviewInfo": { "comment": "Bot owners only, fetch main mini app preview information, see here » for more info.\n\nNote: technically non-owners may also invoke this method, but it will always behave exactly as {@link bots.RawGetPreviewMediasRequest}, returning only previews for the current language and an empty lang_codes array, regardless of the passed lang_code, so please only use {@link bots.RawGetPreviewMediasRequest} if you're not the owner of the bot.", "arguments": { "bot": "The bot that owns the Main Mini App.", "lang_code": "Fetch previews for the specified ISO 639-1 language code." }, "throws": [{ "code": 400, "name": "BOT_INVALID", "comment": "This is not a valid bot." }], "available": "user" }, "payments.getPremiumGiftCodeOptions": { "comment": "Obtain a list of Telegram Premium giveaway/gift code » options.", "arguments": { "flags": "Flags, see TL conditional fields", "boost_peer": "The channel that will start the giveaway" }, "available": "user" }, "payments.applyGiftCode": { "comment": "Apply a Telegram Premium giftcode »", "arguments": { "slug": "The code to apply" }, "throws": [{ "code": 400, "name": "GIFT_SLUG_EXPIRED", "comment": "The specified gift slug has expired." }, { "code": 400, "name": "GIFT_SLUG_INVALID", "comment": "The specified slug is invalid." }, { "code": 420, "name": "PREMIUM_SUB_ACTIVE_UNTIL_%d", "comment": "You already have a premium subscription active until unixtime %d ." }], "available": "user" }, "payments.getGiveawayInfo": { "comment": "Obtain information about a Telegram Premium giveaway ».", "arguments": { "peer": "The peer where the giveaway was posted.", "msg_id": "Message ID of the {@link RawMessageActionGiveawayLaunch} service message" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "payments.getStarsStatus": { "comment": "Get the current Telegram Stars balance of the current account (with peer={@link RawInputPeerSelf}), or the stars balance of the bot specified in peer.", "arguments": { "peer": "Peer of which to get the balance." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "payments.sendStarsForm": { "comment": "Make a payment using Telegram Stars, see here » for more info.", "arguments": { "flags": "Flags, see TL conditional fields", "form_id": "Payment form ID", "invoice": "Invoice" }, "throws": [{ "code": 400, "name": "BALANCE_TOO_LOW", "comment": "The transaction cannot be completed because the current Telegram Stars balance is too low." }, { "code": 400, "name": "FORM_EXPIRED", "comment": "The form was generated more than 10 minutes ago and has expired, please re-generate it using {@link payments.RawGetPaymentFormRequest} and pass the new form_id." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "payments.getStarsTopupOptions": { "comment": "Obtain a list of Telegram Stars topup options » as {@link RawStarsTopupOption} constructors.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "payments.getStarsRevenueWithdrawalUrl": { "comment": "Withdraw funds from a channel or bot's star balance ».", "arguments": { "peer": "Channel or bot from which to withdraw funds.", "stars": "Amount of stars to withdraw.", "password": "2FA password, see here » for more info." }, "throws": [{ "code": 400, "name": "PASSWORD_HASH_INVALID", "comment": "The provided password hash is invalid." }, { "code": 400, "name": "PASSWORD_MISSING", "comment": "You must enable 2FA before executing this operation." }, { "code": 400, "name": "PASSWORD_TOO_FRESH_%d", "comment": "The password was modified less than 24 hours ago, try again in %d seconds." }], "available": "user" }, "payments.getStarsRevenueStats": { "comment": "Get Telegram Star revenue statistics ».", "arguments": { "flags": "Flags, see TL conditional fields", "dark": "Whether to enable dark theme for graph colors", "peer": "Get statistics for the specified bot, channel or ourselves ({@link RawInputPeerSelf})." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "payments.launchPrepaidGiveaway": { "comment": "Launch a prepaid giveaway ».", "arguments": { "peer": "The peer where to launch the giveaway.", "giveaway_id": "The prepaid giveaway ID.", "purpose": "Giveway parameters" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "payments.getStarsTransactions": { "comment": "Fetch Telegram Stars transactions.\n\nThe inbound and outbound flags are mutually exclusive: if none of the two are set, both incoming and outgoing transactions are fetched.", "arguments": { "flags": "Flags, see TL conditional fields", "inbound": "If set, fetches only incoming transactions.", "outbound": "If set, fetches only outgoing transactions.", "ascending": "Return transactions in ascending order by date (instead of descending order by date).", "peer": "Fetch the transaction history of the peer ({@link RawInputPeerSelf} or a bot we own).", "offset": "Offset for pagination, obtained from the returned next_offset, initially an empty string ».", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "both" }, "payments.getStarsTransactionsByID": { "comment": "Obtain info about Telegram Star transactions » using specific transaction IDs.", "arguments": { "peer": "Channel or bot.", "id": "Transaction IDs." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "payments.getStarsRevenueAdsAccountUrl": { "comment": "Returns a URL for a Telegram Ad platform account that can be used to set up advertisements for channel/bot in peer, paid using the Telegram Stars owned by the specified peer, see here » for more info.", "arguments": { "peer": "Channel or bot that owns the stars." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "payments.getStarsGiftOptions": { "comment": "Obtain a list of Telegram Stars gift options » as {@link RawStarsGiftOption} constructors.", "arguments": { "flags": "Flags, see TL conditional fields", "user_id": "Receiver of the gift (optional)." }, "available": "user" }, "stickers.removeStickerFromSet": { "comment": "Remove a sticker from the set where it belongs. The sticker set must have been created by the current user/bot.", "arguments": { "sticker": "The sticker to remove" }, "throws": [{ "code": 400, "name": "STICKER_INVALID", "comment": "The provided sticker is invalid." }], "available": "both" }, "stickers.createStickerSet": { "comment": "Create a stickerset.", "arguments": { "flags": "Flags, see TL conditional fields", "masks": "Whether this is a mask stickerset", "emojis": "Whether this is a custom emoji stickerset.", "text_color": "Whether the color of TGS custom emojis contained in this set should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context. For custom emoji stickersets only.", "user_id": "Stickerset owner", "title": "Stickerset name, 1-64 chars", "short_name": "Short name of sticker set, to be used in sticker deep links ». Can contain only english letters, digits and underscores. Must begin with a letter, can't contain consecutive underscores and, if called by a bot, must end in \"_by_\". is case insensitive. 1-64 characters.", "thumb": "Thumbnail", "stickers": "Stickers", "software": "Used when importing stickers using the sticker import SDKs, specifies the name of the software that created the stickers" }, "throws": [{ "code": 400, "name": "PACK_SHORT_NAME_INVALID", "comment": "Short pack name invalid." }, { "code": 400, "name": "PACK_SHORT_NAME_OCCUPIED", "comment": "A stickerpack with this name already exists." }, { "code": 400, "name": "PACK_TITLE_INVALID", "comment": "The stickerpack title is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "STICKERS_EMPTY", "comment": "No sticker provided." }, { "code": 400, "name": "STICKER_EMOJI_INVALID", "comment": "Sticker emoji invalid." }, { "code": 400, "name": "STICKER_FILE_INVALID", "comment": "Sticker file invalid." }, { "code": 400, "name": "STICKER_GIF_DIMENSIONS", "comment": "The specified video sticker has invalid dimensions." }, { "code": 400, "name": "STICKER_PNG_DIMENSIONS", "comment": "Sticker png dimensions invalid." }, { "code": 400, "name": "STICKER_PNG_NOPNG", "comment": "One of the specified stickers is not a valid PNG file." }, { "code": 400, "name": "STICKER_TGS_NODOC", "comment": "You must send the animated sticker as a document." }, { "code": 400, "name": "STICKER_TGS_NOTGS", "comment": "Invalid TGS sticker provided." }, { "code": 400, "name": "STICKER_THUMB_PNG_NOPNG", "comment": "Incorrect stickerset thumb file provided, PNG / WEBP expected." }, { "code": 400, "name": "STICKER_THUMB_TGS_NOTGS", "comment": "Incorrect stickerset TGS thumb file provided." }, { "code": 400, "name": "STICKER_VIDEO_BIG", "comment": "The specified video sticker is too big." }, { "code": 400, "name": "STICKER_VIDEO_NODOC", "comment": "You must send the video sticker as a document." }, { "code": 400, "name": "STICKER_VIDEO_NOWEBM", "comment": "The specified video sticker is not in webm format." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "both" }, "payments.refundStarsCharge": { "comment": "Refund a Telegram Stars transaction, see here » for more info.", "arguments": { "user_id": "User to refund.", "charge_id": "Transaction ID." }, "throws": [{ "code": 400, "name": "CHARGE_ALREADY_REFUNDED", "comment": "The transaction was already refunded." }, { "code": 400, "name": "USER_BOT_REQUIRED", "comment": "This method can only be called by a bot." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "bot" }, "payments.checkGiftCode": { "comment": "Obtain information about a Telegram Premium giftcode »", "arguments": { "slug": "The giftcode to check" }, "throws": [{ "code": 400, "name": "GIFT_SLUG_EXPIRED", "comment": "The specified gift slug has expired." }, { "code": 400, "name": "GIFT_SLUG_INVALID", "comment": "The specified slug is invalid." }], "available": "user" }, "stickers.addStickerToSet": { "comment": "Add a sticker to a stickerset. The sticker set must have been created by the current user/bot.", "arguments": { "stickerset": "The stickerset", "sticker": "The sticker" }, "throws": [{ "code": 400, "name": "STICKERPACK_STICKERS_TOO_MUCH", "comment": "There are too many stickers in this stickerpack, you can't add any more." }, { "code": 406, "name": "STICKERSET_INVALID", "comment": "The provided sticker set is invalid." }, { "code": 400, "name": "STICKERS_TOO_MUCH", "comment": "There are too many stickers in this stickerpack, you can't add any more." }, { "code": 400, "name": "STICKER_PNG_NOPNG", "comment": "One of the specified stickers is not a valid PNG file." }, { "code": 400, "name": "STICKER_TGS_NOTGS", "comment": "Invalid TGS sticker provided." }], "available": "both" }, "stickers.changeStickerPosition": { "comment": "Changes the absolute position of a sticker in the set to which it belongs. The sticker set must have been created by the current user/bot.", "arguments": { "sticker": "The sticker", "position": "The new position of the sticker, zero-based" }, "throws": [{ "code": 400, "name": "STICKER_INVALID", "comment": "The provided sticker is invalid." }], "available": "both" }, "stickers.setStickerSetThumb": { "comment": "Set stickerset thumbnail", "arguments": { "flags": "Flags, see TL conditional fields", "stickerset": "Stickerset", "thumb": "Thumbnail (only for normal stickersets, not custom emoji stickersets).", "thumb_document_id": "Only for custom emoji stickersets, ID of a custom emoji present in the set to use as thumbnail; pass 0 to fallback to the first custom emoji of the set." }, "throws": [{ "code": 400, "name": "STICKERSET_INVALID", "comment": "The provided sticker set is invalid." }, { "code": 400, "name": "STICKER_THUMB_PNG_NOPNG", "comment": "Incorrect stickerset thumb file provided, PNG / WEBP expected." }, { "code": 400, "name": "STICKER_THUMB_TGS_NOTGS", "comment": "Incorrect stickerset TGS thumb file provided." }], "available": "both" }, "stickers.checkShortName": { "comment": "Check whether the given short name is available", "arguments": { "short_name": "Short name" }, "throws": [{ "code": 400, "name": "SHORT_NAME_INVALID", "comment": "The specified short name is invalid." }, { "code": 400, "name": "SHORT_NAME_OCCUPIED", "comment": "The specified short name is already in use." }], "available": "user" }, "stickers.deleteStickerSet": { "comment": "Deletes a stickerset we created.", "arguments": { "stickerset": "Stickerset to delete" }, "throws": [{ "code": 400, "name": "STICKERSET_INVALID", "comment": "The provided sticker set is invalid." }], "available": "both" }, "stickers.suggestShortName": { "comment": "Suggests a short name for a given stickerpack name", "arguments": { "title": "Sticker pack name" }, "throws": [{ "code": 400, "name": "TITLE_INVALID", "comment": "The specified stickerpack title is invalid." }], "available": "user" }, "stickers.changeSticker": { "comment": "Update the keywords, emojis or mask coordinates of a sticker.", "arguments": { "flags": "Flags, see TL conditional fields", "sticker": "The sticker", "emoji": "If set, updates the emoji list associated to the sticker", "mask_coords": "If set, updates the mask coordinates", "keywords": "If set, updates the sticker keywords (separated by commas). Can't be provided for mask stickers." }, "throws": [{ "code": 400, "name": "STICKER_INVALID", "comment": "The provided sticker is invalid." }], "available": "both" }, "stickers.renameStickerSet": { "comment": "Renames a stickerset.", "arguments": { "stickerset": "Stickerset to rename", "title": "New stickerset title" }, "throws": [{ "code": 400, "name": "STICKERSET_INVALID", "comment": "The provided sticker set is invalid." }], "available": "both" }, "phone.receivedCall": { "comment": "Optional: notify the server that the user is currently busy in a call: this will automatically refuse all incoming phone calls until the current phone call is ended.", "arguments": { "peer": "The phone call we're currently in" }, "throws": [{ "code": 400, "name": "CALL_ALREADY_DECLINED", "comment": "The call was already declined." }, { "code": 400, "name": "CALL_PEER_INVALID", "comment": "The provided call peer object is invalid." }], "available": "user" }, "phone.requestCall": { "comment": "Start a telegram phone call", "arguments": { "flags": "Flags, see TL conditional fields", "video": "Whether to start a video call", "user_id": "Destination of the phone call", "random_id": "Random ID to avoid resending the same object", "g_a_hash": "Parameter for E2E encryption key exchange »", "protocol": "Phone call settings" }, "throws": [{ "code": 400, "name": "CALL_PROTOCOL_FLAGS_INVALID", "comment": "Call protocol flags invalid." }, { "code": 400, "name": "INPUT_USER_DEACTIVATED", "comment": "The specified user was deleted." }, { "code": 400, "name": "PARTICIPANT_VERSION_OUTDATED", "comment": "The other participant does not use an up to date telegram client with support for calls." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }, { "code": 403, "name": "USER_IS_BLOCKED", "comment": "You were blocked by this user." }, { "code": 403, "name": "USER_PRIVACY_RESTRICTED", "comment": "The user's privacy settings do not allow you to do this." }], "available": "user" }, "stickers.replaceSticker": { "comment": "Replace a sticker in a stickerset ».", "arguments": { "sticker": "Old sticker document.", "new_sticker": "New sticker." }, "throws": [{ "code": 400, "name": "STICKER_INVALID", "comment": "The provided sticker is invalid." }], "available": "both" }, "phone.acceptCall": { "comment": "Accept incoming call", "arguments": { "peer": "The call to accept", "g_b": "Parameter for E2E encryption key exchange »", "protocol": "Phone call settings" }, "throws": [{ "code": 400, "name": "CALL_ALREADY_ACCEPTED", "comment": "The call was already accepted." }, { "code": 400, "name": "CALL_ALREADY_DECLINED", "comment": "The call was already declined." }, { "code": 500, "name": "CALL_OCCUPY_FAILED", "comment": "The call failed because the user is already making another call." }, { "code": 400, "name": "CALL_PEER_INVALID", "comment": "The provided call peer object is invalid." }, { "code": 406, "name": "CALL_PROTOCOL_COMPAT_LAYER_INVALID", "comment": "The other side of the call does not support any of the VoIP protocols supported by the local client, as specified by the protocol.layer and protocol.library_versions fields." }, { "code": 400, "name": "CALL_PROTOCOL_FLAGS_INVALID", "comment": "Call protocol flags invalid." }], "available": "user" }, "phone.confirmCall": { "comment": "Complete phone call E2E encryption key exchange »", "arguments": { "peer": "The phone call", "g_a": "Parameter for E2E encryption key exchange »", "key_fingerprint": "Key fingerprint", "protocol": "Phone call settings" }, "throws": [{ "code": 400, "name": "CALL_ALREADY_DECLINED", "comment": "The call was already declined." }, { "code": 400, "name": "CALL_PEER_INVALID", "comment": "The provided call peer object is invalid." }], "available": "user" }, "phone.setCallRating": { "comment": "Rate a call, returns info about the rating message sent to the official VoIP bot.", "arguments": { "flags": "Flags, see TL conditional fields", "user_initiative": "Whether the user decided on their own initiative to rate the call", "peer": "The call to rate", "rating": "Rating in 1-5 stars", "comment": "An additional comment" }, "throws": [{ "code": 400, "name": "CALL_PEER_INVALID", "comment": "The provided call peer object is invalid." }], "available": "user" }, "phone.getCallConfig": { "comment": "Get phone call configuration to be passed to libtgvoip's shared config", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "phone.saveCallDebug": { "comment": "Send phone call debug data to server", "arguments": { "peer": "Phone call", "debug": "Debug statistics obtained from libtgvoip" }, "throws": [{ "code": 400, "name": "CALL_PEER_INVALID", "comment": "The provided call peer object is invalid." }, { "code": 400, "name": "DATA_JSON_INVALID", "comment": "The provided JSON data is invalid." }], "available": "user" }, "phone.sendSignalingData": { "comment": "Send VoIP signaling data", "arguments": { "peer": "Phone call", "data": "Signaling payload" }, "throws": [{ "code": 400, "name": "CALL_PEER_INVALID", "comment": "The provided call peer object is invalid." }], "available": "user" }, "phone.leaveGroupCall": { "comment": "Leave a group call", "arguments": { "call": "The group call", "source": "Your source ID" }, "throws": [{ "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }], "available": "user" }, "phone.joinGroupCall": { "comment": "Join a group call", "arguments": { "flags": "Flags, see TL conditional fields", "muted": "If set, the user will be muted by default upon joining.", "video_stopped": "If set, the user's video will be disabled by default upon joining.", "call": "The group call", "join_as": "Join the group call, presenting yourself as the specified user/channel", "invite_hash": "The invitation hash from the invite link », if provided allows speaking in a livestream or muted group chat.", "params": "WebRTC parameters" }, "throws": [{ "code": 400, "name": "DATA_JSON_INVALID", "comment": "The provided JSON data is invalid." }, { "code": 403, "name": "GROUPCALL_FORBIDDEN", "comment": "The group call has already ended." }, { "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }, { "code": 400, "name": "GROUPCALL_SSRC_DUPLICATE_MUCH", "comment": "The app needs to retry joining the group call with a new SSRC value." }, { "code": 400, "name": "JOIN_AS_PEER_INVALID", "comment": "The specified peer cannot be used to join a group call." }], "available": "user" }, "phone.createGroupCall": { "comment": "Create a group call or livestream", "arguments": { "flags": "Flags, see TL conditional fields", "rtmp_stream": "Whether RTMP stream support should be enabled: only the group/supergroup/channel owner can use this flag.", "peer": "Associate the group call or livestream to the provided group/supergroup/channel", "random_id": "Unique client message ID required to prevent creation of duplicate group calls", "title": "Call title", "schedule_date": "For scheduled group call or livestreams, the absolute date when the group call will start" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "CREATE_CALL_FAILED", "comment": "An error occurred while creating the call." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "SCHEDULE_DATE_INVALID", "comment": "Invalid schedule date provided." }], "available": "user" }, "phone.discardGroupCall": { "comment": "Terminate a group call", "arguments": { "call": "The group call to terminate" }, "throws": [{ "code": 400, "name": "GROUPCALL_ALREADY_DISCARDED", "comment": "The group call was already discarded." }, { "code": 403, "name": "GROUPCALL_FORBIDDEN", "comment": "The group call has already ended." }, { "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }], "available": "user" }, "phone.toggleGroupCallSettings": { "comment": "Change group call settings", "arguments": { "flags": "Flags, see TL conditional fields", "reset_invite_hash": "Invalidate existing invite links", "call": "Group call", "join_muted": "Whether all users will that join this group call are muted by default upon joining the group call" }, "throws": [{ "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }, { "code": 400, "name": "GROUPCALL_NOT_MODIFIED", "comment": "Group call settings weren't modified." }], "available": "user" }, "phone.inviteToGroupCall": { "comment": "Invite a set of users to a group call.", "arguments": { "call": "The group call", "users": "The users to invite." }, "throws": [{ "code": 403, "name": "GROUPCALL_FORBIDDEN", "comment": "The group call has already ended." }, { "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }, { "code": 400, "name": "INVITE_FORBIDDEN_WITH_JOINAS", "comment": "If the user has anonymously joined a group call as a channel, they can't invite other users to the group call because that would cause deanonymization, because the invite would be sent using the original user ID, not the anonymized channel ID." }, { "code": 400, "name": "USER_ALREADY_INVITED", "comment": "You have already invited this user." }, { "code": 403, "name": "USER_NOT_PARTICIPANT", "comment": "You're not a member of this supergroup/channel." }], "available": "user" }, "phone.getGroupCall": { "comment": "Get info about a group call", "arguments": { "call": "The group call", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 403, "name": "GROUPCALL_FORBIDDEN", "comment": "The group call has already ended." }, { "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }], "available": "user" }, "phone.getGroupParticipants": { "comment": "Get group call participants", "arguments": { "call": "Group call", "ids": "If specified, will fetch group participant info about the specified peers", "sources": "If specified, will fetch group participant info about the specified WebRTC source IDs", "offset": "Offset for results, taken from the next_offset field of {@link phone.RawGroupParticipants}, initially an empty string.
Note: if no more results are available, the method call will return an empty next_offset; thus, avoid providing the next_offset returned in {@link phone.RawGroupParticipants} if it is empty, to avoid an infinite loop.", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }], "available": "user" }, "phone.checkGroupCall": { "comment": "Check whether the group call Server Forwarding Unit is currently receiving the streams with the specified WebRTC source IDs.
\nReturns an intersection of the source IDs specified in sources, and the source IDs currently being forwarded by the SFU.", "arguments": { "call": "Group call", "sources": "Source IDs" }, "throws": [{ "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }, { "code": 400, "name": "GROUPCALL_JOIN_MISSING", "comment": "You haven't joined this group call." }], "available": "user" }, "phone.discardCall": { "comment": "Refuse or end running call", "arguments": { "flags": "Flags, see TL conditional fields", "video": "Whether this is a video call", "peer": "The phone call", "duration": "Call duration", "reason": "Why was the call discarded", "connection_id": "Preferred libtgvoip relay ID" }, "throws": [{ "code": 400, "name": "CALL_ALREADY_ACCEPTED", "comment": "The call was already accepted." }, { "code": 500, "name": "CALL_OCCUPY_FAILED", "comment": "The call failed because the user is already making another call." }, { "code": 400, "name": "CALL_PEER_INVALID", "comment": "The provided call peer object is invalid." }], "available": "user" }, "phone.toggleGroupCallRecord": { "comment": "Start or stop recording a group call: the recorded audio and video streams will be automatically sent to Saved messages (the chat with ourselves).", "arguments": { "flags": "Flags, see TL conditional fields", "start": "Whether to start or stop recording", "video": "Whether to also record video streams", "call": "The group call or livestream", "title": "Recording title", "video_portrait": "If video stream recording is enabled, whether to record in portrait or landscape mode" }, "throws": [{ "code": 403, "name": "GROUPCALL_FORBIDDEN", "comment": "The group call has already ended." }, { "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }, { "code": 400, "name": "GROUPCALL_NOT_MODIFIED", "comment": "Group call settings weren't modified." }], "available": "user" }, "phone.editGroupCallTitle": { "comment": "Edit the title of a group call or livestream", "arguments": { "call": "Group call", "title": "New title" }, "throws": [{ "code": 403, "name": "GROUPCALL_FORBIDDEN", "comment": "The group call has already ended." }, { "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }], "available": "user" }, "phone.editGroupCallParticipant": { "comment": "Edit information about a given group call participant\n\nNote: flags.N?Bool parameters can have three possible values:", "arguments": { "flags": "Flags, see TL conditional fields", "call": "The group call", "participant": "The group call participant (can also be the user itself)", "muted": "Whether to mute or unmute the specified participant", "volume": "New volume", "raise_hand": "Raise or lower hand", "video_stopped": "Start or stop the video stream", "video_paused": "Pause or resume the video stream", "presentation_paused": "Pause or resume the screen sharing stream" }, "throws": [{ "code": 403, "name": "GROUPCALL_FORBIDDEN", "comment": "The group call has already ended." }, { "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }, { "code": 400, "name": "PARTICIPANT_JOIN_MISSING", "comment": "Trying to enable a presentation, when the user hasn't joined the Video Chat with {@link phone.RawJoinGroupCallRequest}." }, { "code": 400, "name": "RAISE_HAND_FORBIDDEN", "comment": "You cannot raise your hand." }, { "code": 400, "name": "USER_VOLUME_INVALID", "comment": "The specified user volume is invalid." }, { "code": 400, "name": "VIDEO_PAUSE_FORBIDDEN", "comment": "You cannot pause the video stream." }, { "code": 400, "name": "VIDEO_STOP_FORBIDDEN", "comment": "You cannot stop the video stream." }], "available": "user" }, "phone.getGroupCallJoinAs": { "comment": "Get a list of peers that can be used to join a group call, presenting yourself as a specific user/channel.", "arguments": { "peer": "The dialog whose group call or livestream we're trying to join" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "phone.exportGroupCallInvite": { "comment": "Get an invite link for a group call or livestream", "arguments": { "flags": "Flags, see TL conditional fields", "can_self_unmute": "For livestreams or muted group chats, if set, users that join using this link will be able to speak without explicitly requesting permission by (for example by raising their hand).", "call": "The group call" }, "throws": [{ "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }, { "code": 403, "name": "PUBLIC_CHANNEL_MISSING", "comment": "You can only export group call invite links for public chats or channels." }], "available": "user" }, "phone.toggleGroupCallStartSubscription": { "comment": "Subscribe or unsubscribe to a scheduled group call", "arguments": { "call": "Scheduled group call", "subscribed": "Enable or disable subscription" }, "throws": [{ "code": 403, "name": "GROUPCALL_ALREADY_STARTED", "comment": "The groupcall has already started, you can join directly using {@link phone.RawJoinGroupCallRequest}." }, { "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }], "available": "user" }, "phone.startScheduledGroupCall": { "comment": "Start a scheduled group call.", "arguments": { "call": "The scheduled group call" }, "throws": [{ "code": 403, "name": "GROUPCALL_ALREADY_STARTED", "comment": "The groupcall has already started, you can join directly using {@link phone.RawJoinGroupCallRequest}." }, { "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }], "available": "user" }, "phone.joinGroupCallPresentation": { "comment": "Start screen sharing in a call", "arguments": { "call": "The group call", "params": "WebRTC parameters" }, "throws": [{ "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }, { "code": 403, "name": "PARTICIPANT_JOIN_MISSING", "comment": "Trying to enable a presentation, when the user hasn't joined the Video Chat with {@link phone.RawJoinGroupCallRequest}." }], "available": "user" }, "phone.saveDefaultGroupCallJoinAs": { "comment": "Set the default peer that will be used to join a group call in a specific dialog.", "arguments": { "peer": "The dialog", "join_as": "The default peer that will be used to join group calls in this dialog, presenting yourself as a specific user/channel." }, "throws": [{ "code": 400, "name": "JOIN_AS_PEER_INVALID", "comment": "The specified peer cannot be used to join a group call." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "phone.leaveGroupCallPresentation": { "comment": "Stop screen sharing in a group call", "arguments": { "call": "The group call" }, "throws": [{ "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }], "available": "user" }, "phone.saveCallLog": { "comment": "Save phone call debug information", "arguments": { "peer": "Phone call", "file": "Logs" }, "throws": [{ "code": 400, "name": "CALL_PEER_INVALID", "comment": "The provided call peer object is invalid." }], "available": "user" }, "langpack.getLangPack": { "comment": "Get localization pack strings", "arguments": { "lang_pack": "Platform identifier (i.e. android, tdesktop, etc).", "lang_code": "Either an ISO 639-1 language code or a language pack name obtained from a language pack link." }, "throws": [{ "code": 400, "name": "LANGUAGE_INVALID", "comment": "The specified lang_code is invalid." }, { "code": 400, "name": "LANG_CODE_NOT_SUPPORTED", "comment": "The specified language code is not supported." }, { "code": 400, "name": "LANG_PACK_INVALID", "comment": "The provided language pack is invalid." }], "available": "user" }, "phone.getGroupCallStreamRtmpUrl": { "comment": "Get RTMP URL and stream key for RTMP livestreams. Can be used even before creating the actual RTMP livestream with {@link phone.RawCreateGroupCallRequest} (the rtmp_stream flag must be set).", "arguments": { "peer": "Peer to livestream into", "revoke": "Whether to revoke the previous stream key or simply return the existing one" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "phone.getGroupCallStreamChannels": { "comment": "Get info about RTMP streams in a group call or livestream.
\nThis method should be invoked to the same group/channel-related DC used for downloading livestream chunks.
\nAs usual, the media DC is preferred, if available.", "arguments": { "call": "Group call or livestream" }, "throws": [{ "code": 400, "name": "GROUPCALL_INVALID", "comment": "The specified group call is invalid." }, { "code": 400, "name": "GROUPCALL_JOIN_MISSING", "comment": "You haven't joined this group call." }], "available": "user" }, "langpack.getLanguages": { "comment": "Get information about all languages in a localization pack", "arguments": { "lang_pack": "Platform identifier (i.e. android, tdesktop, etc)." }, "throws": [{ "code": 400, "name": "LANG_PACK_INVALID", "comment": "The provided language pack is invalid." }], "available": "user" }, "langpack.getDifference": { "comment": "Get new strings in language pack", "arguments": { "lang_pack": "Platform identifier (i.e. android, tdesktop, etc).", "lang_code": "Either an ISO 639-1 language code or a language pack name obtained from a language pack link.", "from_version": "Previous localization pack version" }, "throws": [{ "code": 400, "name": "LANG_PACK_INVALID", "comment": "The provided language pack is invalid." }], "available": "user" }, "langpack.getStrings": { "comment": "Get strings from a language pack", "arguments": { "lang_pack": "Platform identifier (i.e. android, tdesktop, etc).", "lang_code": "Either an ISO 639-1 language code or a language pack name obtained from a language pack link.", "keys": "Strings to get" }, "throws": [{ "code": 400, "name": "LANG_CODE_NOT_SUPPORTED", "comment": "The specified language code is not supported." }, { "code": 400, "name": "LANG_PACK_INVALID", "comment": "The provided language pack is invalid." }], "available": "user" }, "folders.editPeerFolders": { "comment": "Edit peers in peer folder", "arguments": { "folder_peers": "New peer list" }, "throws": [{ "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "CHAT_ID_INVALID", "comment": "The provided chat id is invalid." }, { "code": 400, "name": "FOLDER_ID_INVALID", "comment": "Invalid folder ID." }], "available": "user" }, "stats.getMegagroupStats": { "comment": "Get supergroup statistics", "arguments": { "flags": "Flags, see TL conditional fields", "dark": "Whether to enable dark theme for graph colors", "channel": "Supergroup ID" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "MEGAGROUP_REQUIRED", "comment": "You can only use this method on a supergroup." }], "available": "user" }, "stats.loadAsyncGraph": { "comment": "Load channel statistics graph asynchronously", "arguments": { "flags": "Flags, see TL conditional fields", "token": "Graph token from {@link RawStatsGraphAsync} constructor", "x": "Zoom value, if required" }, "throws": [{ "code": 400, "name": "GRAPH_EXPIRED_RELOAD", "comment": "This graph has expired, please obtain a new graph token." }, { "code": 400, "name": "GRAPH_INVALID_RELOAD", "comment": "Invalid graph token provided, please reload the stats and provide the updated token." }, { "code": 400, "name": "GRAPH_OUTDATED_RELOAD", "comment": "The graph is outdated, please get a new async token using stats.getBroadcastStats." }], "available": "user" }, "langpack.getLanguage": { "comment": "Get information about a language in a localization pack", "arguments": { "lang_pack": "Platform identifier (i.e. android, tdesktop, etc).", "lang_code": "Either an ISO 639-1 language code or a language pack name obtained from a language pack link." }, "throws": [{ "code": 400, "name": "LANG_CODE_NOT_SUPPORTED", "comment": "The specified language code is not supported." }, { "code": 400, "name": "LANG_PACK_INVALID", "comment": "The provided language pack is invalid." }], "available": "user" }, "stats.getMessagePublicForwards": { "comment": "Obtains a list of messages, indicating to which other public channels was a channel message forwarded.
\nWill return a list of {@link RawMessage} with peer_id equal to the public channel to which this message was forwarded.", "arguments": { "channel": "Source channel", "msg_id": "Source message ID", "offset": "Offset for pagination, empty string on first call, then use the next_offset field of the returned constructor (if present, otherwise no more results are available).", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "stats.getBroadcastStats": { "comment": "Get channel statistics", "arguments": { "flags": "Flags, see TL conditional fields", "dark": "Whether to enable dark theme for graph colors", "channel": "The channel" }, "throws": [{ "code": 400, "name": "BROADCAST_REQUIRED", "comment": "This method can only be called on a channel, please use stats.getMegagroupStats for supergroups." }, { "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 403, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }], "available": "user" }, "stats.getMessageStats": { "comment": "Get message statistics", "arguments": { "flags": "Flags, see TL conditional fields", "dark": "Whether to enable dark theme for graph colors", "channel": "Channel ID", "msg_id": "Message ID" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "MESSAGE_ID_INVALID", "comment": "The provided message id is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "stats.getStoryPublicForwards": { "comment": "Obtain forwards of a story as a message to public chats and reposts by public channels.", "arguments": { "peer": "Peer where the story was originally posted", "id": "Story ID", "offset": "Offset for pagination, from {@link stats.RawPublicForwards}.next_offset.", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "stats.getBroadcastRevenueWithdrawalUrl": { "comment": "Withdraw funds from a channel's ad revenue balance ».", "arguments": { "channel": "The channel", "password": "2FA password, see here » for more info." }, "throws": [{ "code": 400, "name": "PASSWORD_HASH_INVALID", "comment": "The provided password hash is invalid." }, { "code": 400, "name": "PASSWORD_MISSING", "comment": "You must enable 2FA before executing this operation." }, { "code": 400, "name": "PASSWORD_TOO_FRESH_%d", "comment": "The password was modified less than 24 hours ago, try again in %d seconds." }], "available": "user" }, "stats.getStoryStats": { "comment": "Get statistics for a certain story.", "arguments": { "flags": "Flags, see TL conditional fields", "dark": "Whether to enable the dark theme for graph colors", "peer": "The peer that posted the story", "id": "Story ID" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "chatlists.exportChatlistInvite": { "comment": "Export a folder », creating a chat folder deep link ».", "arguments": { "chatlist": "The folder to export", "title": "An optional name for the link", "peers": "The list of channels, group and supergroups to share with the link. Basic groups will automatically be converted to supergroups when invoking the method." }, "throws": [{ "code": 400, "name": "FILTER_ID_INVALID", "comment": "The specified filter ID is invalid." }, { "code": 400, "name": "FILTER_NOT_SUPPORTED", "comment": "The specified filter cannot be used in this context." }, { "code": 400, "name": "INVITES_TOO_MUCH", "comment": "The maximum number of per-folder invites specified by the chatlist_invites_limit_default/chatlist_invites_limit_premium client configuration parameters » was reached." }, { "code": 400, "name": "PEERS_LIST_EMPTY", "comment": "The specified list of peers is empty." }], "available": "user" }, "stats.getBroadcastRevenueStats": { "comment": "Get channel ad revenue statistics ».", "arguments": { "flags": "Flags, see TL conditional fields", "dark": "Whether to enable dark theme for graph colors", "channel": "The channel" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }], "available": "user" }, "stats.getBroadcastRevenueTransactions": { "comment": "Fetch channel ad revenue transaction history ».", "arguments": { "channel": "The channel", "offset": "Offset for pagination", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }], "available": "user" }, "chatlists.deleteExportedInvite": { "comment": "Delete a previously created chat folder deep link ».", "arguments": { "chatlist": "The related folder", "slug": "slug obtained from the chat folder deep link »." }, "throws": [{ "code": 400, "name": "FILTER_ID_INVALID", "comment": "The specified filter ID is invalid." }, { "code": 400, "name": "FILTER_NOT_SUPPORTED", "comment": "The specified filter cannot be used in this context." }], "available": "user" }, "chatlists.getExportedInvites": { "comment": "List all chat folder deep links » associated to a folder", "arguments": { "chatlist": "The folder" }, "throws": [{ "code": 400, "name": "FILTER_ID_INVALID", "comment": "The specified filter ID is invalid." }], "available": "user" }, "chatlists.editExportedInvite": { "comment": "Edit a chat folder deep link ».", "arguments": { "flags": "Flags, see TL conditional fields", "chatlist": "Folder ID", "slug": "slug obtained from the chat folder deep link ».", "title": "If set, sets a new name for the link", "peers": "If set, changes the list of peers shared with the link" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "FILTER_ID_INVALID", "comment": "The specified filter ID is invalid." }, { "code": 400, "name": "FILTER_NOT_SUPPORTED", "comment": "The specified filter cannot be used in this context." }, { "code": 400, "name": "INVITE_SLUG_EMPTY", "comment": "The specified invite slug is empty." }, { "code": 400, "name": "INVITE_SLUG_EXPIRED", "comment": "The specified chat folder link has expired." }, { "code": 400, "name": "PEERS_LIST_EMPTY", "comment": "The specified list of peers is empty." }], "available": "user" }, "chatlists.getLeaveChatlistSuggestions": { "comment": "Returns identifiers of pinned or always included chats from a chat folder imported using a chat folder deep link », which are suggested to be left when the chat folder is deleted.", "arguments": { "chatlist": "Folder ID" }, "throws": [{ "code": 400, "name": "FILTER_ID_INVALID", "comment": "The specified filter ID is invalid." }, { "code": 400, "name": "FILTER_NOT_SUPPORTED", "comment": "The specified filter cannot be used in this context." }], "available": "user" }, "chatlists.getChatlistUpdates": { "comment": "Fetch new chats associated with an imported chat folder deep link ». Must be invoked at most every chatlist_update_period seconds (as per the related client configuration parameter »).", "arguments": { "chatlist": "The folder" }, "throws": [{ "code": 400, "name": "FILTER_ID_INVALID", "comment": "The specified filter ID is invalid." }, { "code": 400, "name": "FILTER_NOT_SUPPORTED", "comment": "The specified filter cannot be used in this context." }, { "code": 400, "name": "INPUT_CHATLIST_INVALID", "comment": "The specified folder is invalid." }], "available": "user" }, "chatlists.hideChatlistUpdates": { "comment": "Dismiss new pending peers recently added to a chat folder deep link ».", "arguments": { "chatlist": "The folder" }, "throws": [{ "code": 400, "name": "FILTER_ID_INVALID", "comment": "The specified filter ID is invalid." }, { "code": 400, "name": "FILTER_NOT_SUPPORTED", "comment": "The specified filter cannot be used in this context." }], "available": "user" }, "chatlists.joinChatlistUpdates": { "comment": "Join channels and supergroups recently added to a chat folder deep link ».", "arguments": { "chatlist": "The folder", "peers": "List of new chats to join, fetched using {@link chatlists.RawGetChatlistUpdatesRequest} and filtered as specified in the documentation »." }, "throws": [{ "code": 400, "name": "FILTER_ID_INVALID", "comment": "The specified filter ID is invalid." }, { "code": 400, "name": "FILTER_INCLUDE_EMPTY", "comment": "The include_peers vector of the filter is empty." }], "available": "user" }, "chatlists.joinChatlistInvite": { "comment": "Import a chat folder deep link », joining some or all the chats in the folder.", "arguments": { "slug": "slug obtained from a chat folder deep link ».", "peers": "List of new chats to join, fetched using {@link chatlists.RawCheckChatlistInviteRequest} and filtered as specified in the documentation »." }, "throws": [{ "code": 400, "name": "FILTER_INCLUDE_EMPTY", "comment": "The include_peers vector of the filter is empty." }, { "code": 400, "name": "INVITE_SLUG_EMPTY", "comment": "The specified invite slug is empty." }, { "code": 400, "name": "INVITE_SLUG_EXPIRED", "comment": "The specified chat folder link has expired." }], "available": "user" }, "stories.canSendStory": { "comment": "Check whether we can post stories as the specified peer.", "arguments": { "peer": "The peer from which we wish to post stories." }, "throws": [{ "code": 400, "name": "BOOSTS_REQUIRED", "comment": "The specified channel must first be boosted by its users in order to perform this action." }, { "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }, { "code": 400, "name": "STORIES_TOO_MUCH", "comment": "You have hit the maximum active stories limit as specified by the story_expiring_limit_* client configuration parameters: you should buy a Premium subscription, delete an active story, or wait for the oldest story to expire." }, { "code": 400, "name": "STORY_SEND_FLOOD_MONTHLY_%d", "comment": "You've hit the monthly story limit as specified by the stories_sent_monthly_limit_* client configuration parameters: wait for the specified number of seconds before posting a new story." }, { "code": 400, "name": "STORY_SEND_FLOOD_WEEKLY_%d", "comment": "You've hit the weekly story limit as specified by the stories_sent_weekly_limit_* client configuration parameters: wait for the specified number of seconds before posting a new story." }], "available": "user" }, "stories.sendStory": { "comment": "Uploads a Telegram Story.", "arguments": { "flags": "Flags, see TL conditional fields", "pinned": "Whether to add the story to the profile automatically upon expiration. If not set, the story will only be added to the archive, see here » for more info.", "noforwards": "If set, disables forwards, screenshots, and downloads.", "fwd_modified": "Set this flag when reposting stories with fwd_from_id+fwd_from_id, if the media was modified before reposting.", "peer": "The peer to send the story as.", "media": "The story media.", "media_areas": "Media areas associated to the story, see here » for more info.", "caption": "Story caption.", "entities": "Message entities for styled text, if allowed by the stories_entities client configuration parameter ».", "privacy_rules": "Privacy rules for the story, indicating who can or can't view the story.", "random_id": "Unique client message ID required to prevent message resending.", "period": "Period after which the story is moved to archive (and to the profile if pinned is set), in seconds; must be one of 6 * 3600, 12 * 3600, 86400, or 2 * 86400 for Telegram Premium users, and 86400 otherwise.", "fwd_from_id": "If set, indicates that this story is a repost of story with ID fwd_from_story posted by the peer in fwd_from_id.", "fwd_from_story": "If set, indicates that this story is a repost of story with ID fwd_from_story posted by the peer in fwd_from_id." }, "throws": [{ "code": 400, "name": "BOOSTS_REQUIRED", "comment": "The specified channel must first be boosted by its users in order to perform this action." }, { "code": 400, "name": "IMAGE_PROCESS_FAILED", "comment": "Failure while processing image." }, { "code": 400, "name": "MEDIA_EMPTY", "comment": "The provided media object is invalid." }, { "code": 400, "name": "MEDIA_FILE_INVALID", "comment": "The specified media file is invalid." }, { "code": 400, "name": "MEDIA_TYPE_INVALID", "comment": "The specified media type cannot be used in stories." }, { "code": 400, "name": "MEDIA_VIDEO_STORY_MISSING", "comment": "A non-story video cannot be repubblished as a story (emitted when trying to resend a non-story video as a story using inputDocument)." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }, { "code": 400, "name": "STORIES_TOO_MUCH", "comment": "You have hit the maximum active stories limit as specified by the story_expiring_limit_* client configuration parameters: you should buy a Premium subscription, delete an active story, or wait for the oldest story to expire." }, { "code": 400, "name": "STORY_PERIOD_INVALID", "comment": "The specified story period is invalid for this account." }, { "code": 400, "name": "VENUE_ID_INVALID", "comment": "The specified venue ID is invalid." }], "available": "user" }, "stories.editStory": { "comment": "Edit an uploaded story", "arguments": { "flags": "Flags, see TL conditional fields", "peer": "Peer where the story was posted.", "id": "ID of story to edit.", "media": "If specified, replaces the story media.", "media_areas": "Media areas associated to the story, see here » for more info.", "caption": "If specified, replaces the story caption.", "entities": "Message entities for styled text in the caption, if allowed by the stories_entities client configuration parameter ».", "privacy_rules": "If specified, alters the privacy settings » of the story, changing who can or can't view the story." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "STORY_NOT_MODIFIED", "comment": "The new story information you passed is equal to the previous story information, thus it wasn't modified." }], "available": "user" }, "stories.deleteStories": { "comment": "Deletes some posted stories.", "arguments": { "peer": "Channel/user from where to delete stories.", "id": "IDs of stories to delete." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "STORY_ID_EMPTY", "comment": "You specified no story IDs." }], "available": "user" }, "chatlists.leaveChatlist": { "comment": "Delete a folder imported using a chat folder deep link »", "arguments": { "chatlist": "Folder ID", "peers": "Also leave the specified channels and groups" }, "throws": [{ "code": 400, "name": "FILTER_ID_INVALID", "comment": "The specified filter ID is invalid." }], "available": "user" }, "stories.getAllStories": { "comment": "Fetch the List of active (or active and hidden) stories, see here » for more info on watching stories.", "arguments": { "flags": "Flags, see TL conditional fields", "next": "If next and state are both set, uses the passed state to paginate to the next results; if neither state nor next are set, fetches the initial page; if state is set and next is not set, check for changes in the active/hidden peerset, see here » for more info on the full flow.", "hidden": "If set, fetches the hidden active story list, otherwise fetches the active story list, see here » for more info on the full flow.", "state": "If next and state are both set, uses the passed state to paginate to the next results; if neither state nor next are set, fetches the initial page; if state is set and next is not set, check for changes in the active/hidden peerset, see here » for more info on the full flow." }, "available": "user" }, "stories.togglePinned": { "comment": "Pin or unpin one or more stories", "arguments": { "peer": "Peer where to pin or unpin stories", "id": "IDs of stories to pin or unpin", "pinned": "Whether to pin or unpin the stories" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "stories.getPinnedStories": { "comment": "Fetch the stories pinned on a peer's profile.", "arguments": { "peer": "Peer whose pinned stories should be fetched", "offset_id": "Offsets for pagination, for more info click here", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "USER_ID_INVALID", "comment": "The provided user ID is invalid." }], "available": "user" }, "stories.getStoriesArchive": { "comment": "Fetch the story archive » of a peer we control.", "arguments": { "peer": "Peer whose archived stories should be fetched", "offset_id": "Offsets for pagination, for more info click here", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "stories.toggleAllStoriesHidden": { "comment": "Hide the active stories of a specific peer, preventing them from being displayed on the action bar on the homescreen.", "arguments": { "hidden": "Whether to hide or unhide all active stories of the peer" }, "available": "user" }, "stories.readStories": { "comment": "Mark all stories up to a certain ID as read, for a given peer; will emit an {@link RawUpdateReadStories} update to all logged-in sessions.", "arguments": { "peer": "The peer whose stories should be marked as read.", "max_id": "Mark all stories up to and including this ID as read" }, "throws": [{ "code": 400, "name": "MAX_ID_INVALID", "comment": "The provided max ID is invalid." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "STORIES_NEVER_CREATED", "comment": "This peer hasn't ever posted any stories." }], "available": "user" }, "stories.getStoriesByID": { "comment": "Obtain full info about a set of stories by their IDs.", "arguments": { "peer": "Peer where the stories were posted", "id": "Story IDs" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "STORIES_NEVER_CREATED", "comment": "This peer hasn't ever posted any stories." }, { "code": 400, "name": "STORY_ID_EMPTY", "comment": "You specified no story IDs." }], "available": "user" }, "stories.incrementStoryViews": { "comment": "Increment the view counter of one or more stories.", "arguments": { "peer": "Peer where the stories were posted.", "id": "IDs of the stories (maximum 200 at a time)." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "STORY_ID_EMPTY", "comment": "You specified no story IDs." }], "available": "user" }, "stories.getStoryViewsList": { "comment": "Obtain the list of users that have viewed a specific story we posted", "arguments": { "flags": "Flags, see TL conditional fields", "just_contacts": "Whether to only fetch view reaction/views made by our contacts", "reactions_first": "Whether to return {@link RawStoryView} info about users that reacted to the story (i.e. if set, the server will first sort results by view date as usual, and then also additionally sort the list by putting {@link RawStoryView}s with an associated reaction first in the list). Ignored if forwards_first is set.", "forwards_first": "If set, returns forwards and reposts first, then reactions, then other views; otherwise returns interactions sorted just by interaction date.", "peer": "Peer where the story was posted", "q": "Search for specific peers", "id": "Story ID", "offset": "Offset for pagination, obtained from {@link stories.RawStoryViewsList}.next_offset", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "STORY_ID_INVALID", "comment": "The specified story ID is invalid." }], "available": "user" }, "stories.exportStoryLink": { "comment": "Generate a story deep link for a specific story", "arguments": { "peer": "Peer where the story was posted", "id": "Story ID" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "STORY_ID_EMPTY", "comment": "You specified no story IDs." }, { "code": 400, "name": "USER_PUBLIC_MISSING", "comment": "Cannot generate a link to stories posted by a peer without a username." }], "available": "user" }, "stories.report": { "comment": "Report a story.", "arguments": { "peer": "The peer that uploaded the story.", "id": "IDs of the stories to report.", "reason": "Why are these storeis being reported.", "message": "Comment for report moderation" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "stories.activateStealthMode": { "comment": "Activates stories stealth mode, see here » for more info.\n\nWill return an {@link RawUpdateStoriesStealthMode}.", "arguments": { "flags": "Flags, see TL conditional fields", "past": "Whether to erase views from any stories opened in the past stories_stealth_past_period seconds », as specified by the client configuration.", "future": "Whether to hide future story views for the next stories_stealth_future_period seconds », as specified by the client configuration." }, "throws": [{ "code": 400, "name": "PREMIUM_ACCOUNT_REQUIRED", "comment": "A premium account is required to execute this action." }], "available": "user" }, "chatlists.checkChatlistInvite": { "comment": "Obtain information about a chat folder deep link ».", "arguments": { "slug": "slug obtained from the chat folder deep link »" }, "throws": [{ "code": 400, "name": "INVITE_SLUG_EMPTY", "comment": "The specified invite slug is empty." }, { "code": 400, "name": "INVITE_SLUG_EXPIRED", "comment": "The specified chat folder link has expired." }], "available": "user" }, "stories.getStoriesViews": { "comment": "Obtain info about the view count, forward count, reactions and recent viewers of one or more stories.", "arguments": { "peer": "Peer whose stories should be fetched", "id": "Story IDs" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "STORY_ID_EMPTY", "comment": "You specified no story IDs." }], "available": "user" }, "stories.sendReaction": { "comment": "React to a story.", "arguments": { "flags": "Flags, see TL conditional fields", "add_to_recent": "Whether to add this reaction to the recent reactions list ».", "peer": "The peer that sent the story", "story_id": "ID of the story to react to", "reaction": "Reaction" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "REACTION_INVALID", "comment": "The specified reaction is invalid." }, { "code": 400, "name": "STORY_ID_EMPTY", "comment": "You specified no story IDs." }, { "code": 400, "name": "STORY_ID_INVALID", "comment": "The specified story ID is invalid." }], "available": "user" }, "stories.getPeerStories": { "comment": "Fetch the full active story list of a specific peer.", "arguments": { "peer": "Peer whose stories should be fetched" }, "throws": [{ "code": 400, "name": "CHANNEL_INVALID", "comment": "The provided channel is invalid." }, { "code": 400, "name": "CHANNEL_PRIVATE", "comment": "You haven't joined this channel/supergroup." }, { "code": 400, "name": "MSG_ID_INVALID", "comment": "Invalid message ID provided." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "stories.getPeerMaxIDs": { "comment": "Get the IDs of the maximum read stories for a set of peers.", "arguments": { "id": "Peers" }, "available": "user" }, "stories.getAllReadPeerStories": { "comment": "Obtain the latest read story ID for all peers when first logging in, returned as a list of {@link RawUpdateReadStories} updates, see here » for more info.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "stories.getStoryReactionsList": { "comment": "Get the reaction and interaction list of a story posted to a channel, along with the sender of each reaction.\n\nCan only be used by channel admins.", "arguments": { "flags": "Flags, see TL conditional fields", "forwards_first": "If set, returns forwards and reposts first, then reactions, then other views; otherwise returns interactions sorted just by interaction date.", "peer": "Channel", "id": "Story ID", "reaction": "Get only reactions of this type", "offset": "Offset for pagination (taken from the next_offset field of the returned stories.StoryReactionsList); empty in the first request.", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "stories.searchPosts": { "comment": "Globally search for stories using a hashtag or a location media area, see here » for more info on the full flow.\n\nEither hashtag or area must be set when invoking the method.", "arguments": { "flags": "Flags, see TL conditional fields", "hashtag": "Hashtag (without the #)", "area": "A {@link RawMediaAreaGeoPoint} or a {@link RawMediaAreaVenue}.
Note {@link RawMediaAreaGeoPoint} areas may be searched only if they have an associated address.", "offset": "Offset for pagination: initially an empty string, then the next_offset from the previously returned {@link stories.RawFoundStories}.", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "HASHTAG_INVALID", "comment": "The specified hashtag is invalid." }], "available": "user" }, "stories.togglePeerStoriesHidden": { "comment": "Hide the active stories of a user, preventing them from being displayed on the action bar on the homescreen, see here » for more info.", "arguments": { "peer": "Peer whose stories should be (un)hidden.", "hidden": "Whether to hide or unhide stories." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "stories.togglePinnedToTop": { "comment": "Pin some stories to the top of the profile, see here » for more info.", "arguments": { "peer": "Peer where to pin stories.", "id": "IDs of the stories to pin (max stories_pinned_to_top_count_max)." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "STORY_ID_INVALID", "comment": "The specified story ID is invalid." }], "available": "user" }, "stories.getChatsToSend": { "comment": "Obtain a list of channels where the user can post stories", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "premium.applyBoost": { "comment": "Apply one or more boosts » to a peer.", "arguments": { "flags": "Flags, see TL conditional fields", "slots": "Which boost slots to assign to this peer.", "peer": "The peer to boost." }, "throws": [{ "code": 400, "name": "BOOSTS_EMPTY", "comment": "No boost slots were specified." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }, { "code": 400, "name": "SLOTS_EMPTY", "comment": "The specified slot list is empty." }], "available": "user" }, "premium.getMyBoosts": { "comment": "Obtain which peers are we currently boosting, and how many boost slots we have left.", "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "premium.getBoostsList": { "comment": "Obtains info about the boosts that were applied to a certain channel or supergroup (admins only)", "arguments": { "flags": "Flags, see TL conditional fields", "gifts": "Whether to return only info about boosts received from gift codes and giveaways created by the channel/supergroup »", "peer": "The channel/supergroup", "offset": "Offset for pagination, obtained from {@link premium.RawBoostsList}.next_offset", "limit": "Maximum number of results to return, see pagination" }, "throws": [{ "code": 400, "name": "CHAT_ADMIN_REQUIRED", "comment": "You must be an admin in this chat to do this." }, { "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "premium.getBoostsStatus": { "comment": "Gets the current number of boosts of a channel/supergroup.", "arguments": { "peer": "The peer." }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "user" }, "premium.getUserBoosts": { "comment": "Returns the lists of boost that were applied to a channel/supergroup by a specific user (admins only)", "arguments": { "peer": "The channel/supergroup", "user_id": "The user" }, "throws": [{ "code": 400, "name": "PEER_ID_INVALID", "comment": "The provided peer id is invalid." }], "available": "both" }, "smsjobs.isEligibleToJoin": { "comment": "Check if we can process SMS jobs (official clients only).", "throws": [{ "code": 403, "name": "NOT_ELIGIBLE", "comment": "The current user is not eligible to join the Peer-to-Peer Login Program." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "smsjobs.leave": { "comment": "Disable SMS jobs (official clients only).", "throws": [{ "code": 400, "name": "NOT_JOINED", "comment": "The current user hasn't joined the Peer-to-Peer Login Program." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "smsjobs.updateSettings": { "comment": "Update SMS job settings (official clients only).", "arguments": { "flags": "Flags, see TL conditional fields", "allow_international": "Allow international numbers?" }, "throws": [{ "code": 400, "name": "NOT_JOINED", "comment": "The current user hasn't joined the Peer-to-Peer Login Program." }], "available": "user" }, "smsjobs.getStatus": { "comment": "Get SMS jobs status (official clients only).", "throws": [{ "code": 400, "name": "NOT_JOINED", "comment": "The current user hasn't joined the Peer-to-Peer Login Program." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "smsjobs.join": { "comment": "Enable SMS jobs (official clients only).", "throws": [{ "code": 400, "name": "NOT_ELIGIBLE", "comment": "The current user is not eligible to join the Peer-to-Peer Login Program." }], "available": "user", "arguments": { "gigagroup": "Is this a broadcast group?" } }, "smsjobs.finishJob": { "comment": "Finish an SMS job (official clients only).", "arguments": { "flags": "Flags, see TL conditional fields", "job_id": "Job ID.", "error": "If failed, the error." }, "throws": [{ "code": 400, "name": "SMSJOB_ID_INVALID", "comment": "The specified job ID is invalid." }], "available": "user" }, "fragment.getCollectibleInfo": { "comment": "Fetch information about a fragment collectible, see here » for more info on the full flow.", "arguments": { "collectible": "Collectible to fetch info about." }, "throws": [{ "code": 400, "name": "COLLECTIBLE_INVALID", "comment": "The specified collectible is invalid." }, { "code": 400, "name": "COLLECTIBLE_NOT_FOUND", "comment": "The specified collectible could not be found." }], "available": "user" }, "smsjobs.getSmsJob": { "comment": "Get info about an SMS job (official clients only).", "arguments": { "job_id": "Job ID" }, "throws": [{ "code": 400, "name": "SMSJOB_ID_INVALID", "comment": "The specified job ID is invalid." }], "available": "user" } }, "unions": { "Error": "An object containing a query error.", "InputChatPhoto": "Defines a new group profile photo.", "Peer": "Identifier of a private chat, basic group, group or channel (see here » for more info).", "InputPhoto": "Defines a photo for further interaction.", "InputFileLocation": "Defines the location of a file for download.", "InputGeoPoint": "Defines a GeoPoint.", "InputPeer": "Peer", "InputContact": "Object defines a contact from the user's phone book.", "storage.FileType": "Object describes the file type.", "InputUser": "Defines a user for subsequent interaction.", "InputFile": "Defines a file uploaded by the client.", "InputMedia": "Defines media content of a message.", "UserProfilePhoto": "Object contains info on the user's profile photo.", "Chat": "Object defines a group.", "User": "Object defines a user.", "UserStatus": "User online status", "ChatParticipant": "Details of a group member.", "Message": "Object describing a message.", "ChatPhoto": "Object defines a group profile photo.", "MessageMedia": "Media", "ChatParticipants": "Object contains info on group members.", "PhotoSize": "Location of a certain size of a picture", "ChatFull": "Full info about a channel, supergroup, gigagroup or basic group.", "Dialog": "Chat info.", "Photo": "Object describes a photo.", "MessageAction": "Object describing actions connected to a service message.", "GeoPoint": "Object defines a GeoPoint.", "auth.SentCode": "Contains info on a confirmation code message sent via SMS, phone call or Telegram.", "auth.ExportedAuthorization": "Exported authorization", "auth.Authorization": "Object contains info on user authorization.", "InputPeerNotifySettings": "Notifications settings.", "InputNotifyPeer": "Object defines the set of users and/or groups that generate notifications.", "PeerNotifySettings": "Notification settings.", "PeerSettings": "List of actions that are possible when interacting with this user, to be shown as suggested actions in the chat bar", "ReportReason": "Report reason", "ImportedContact": "Object contains info on a successfully imported contact.", "UserFull": "Object contains extended user info.", "Contact": "A contact of the current user.", "ContactStatus": "Contact status: online / offline.", "contacts.Contacts": "Info on the current user's contact list.", "WallPaper": "Object contains info on a wallpaper.", "contacts.Blocked": "Info on users from the current user's black list.", "contacts.ImportedContacts": "Object contains info on successfully imported contacts.", "messages.Dialogs": "Object contains a list of chats with messages and auxiliary data.", "messages.Messages": "Object contains information on list of messages with auxiliary data.", "messages.Chats": "Object contains list of chats with auxiliary data.", "messages.ChatFull": "Full info about a channel, supergroup, gigagroup or basic group.", "MessagesFilter": "Object describes message filter.", "messages.AffectedHistory": "Object contains info on affected part of communication history with the user or in a chat.", "Update": "Object contains info on events occurred.", "updates.State": "Object contains info on state for further updates.", "updates.Difference": "Occurred changes.", "photos.Photos": "Object contains list of photos with auxiliary data.", "Updates": "Object which is perceived by the client without a call on its part when an event occurs.", "photos.Photo": "Photo with auxiliary data.", "upload.File": "Contains info on file.", "NearestDc": "Object contains info on nearest data center.", "help.InviteText": "Object contains info on the text of a message with an invitation.", "Config": "Object contains info on API configuring parameters.", "help.AppUpdate": "Contains info on app update availability.", "EncryptedChat": "Object contains info on an encrypted chat.", "InputEncryptedChat": "Object sets an encrypted chat ID.", "DcOption": "Information for connection to data center.", "EncryptedFile": "Seta an encrypted file.", "InputEncryptedFile": "Object sets encrypted file for attachment", "EncryptedMessage": "Object contains encrypted message.", "messages.SentEncryptedMessage": "Contains info on message sent to an encrypted chat.", "InputDocument": "Defines a document for subsequent interaction.", "Document": "A document.", "messages.DhConfig": "Contains Diffie-Hellman key generation protocol parameters.", "help.Support": "Info about the support user, relevant to the current user.", "contacts.Found": "Object contains info on users found by name substring and auxiliary data.", "NotifyPeer": "Object defines the set of users and/or groups that generate notifications.", "SendMessageAction": "User actions. Use this to provide users with detailed info about their chat partner's actions: typing or sending attachments of all kinds.", "InputPrivacyKey": "Privacy keys together with privacy rules » indicate what can or can't someone do and are specified by a PrivacyKey constructor, and its input counterpart InputPrivacyKey.\n\nSee the privacy documentation » for more info.", "PrivacyKey": "Privacy keys together with privacy rules » indicate what can or can't someone do and are specified by a PrivacyKey constructor, and its input counterpart InputPrivacyKey.\n\nSee the privacy documentation » for more info.", "account.PrivacyRules": "Privacy rules", "AccountDaysTTL": "Time-to-live of current account", "InputPrivacyRule": "Privacy rules indicate who can or can't do something and are specified by a PrivacyRule, and its input counterpart InputPrivacyRule.\n\nSee the privacy documentation » for more info.", "DocumentAttribute": "Various possible attributes of a document (used to define if it's a sticker, a GIF, a video, a mask sticker, an image, an audio, and so on)", "messages.Stickers": "Stickers", "messages.AllStickers": "All stickers", "StickerPack": "Stickerpack", "messages.AffectedMessages": "Messages affected by changes", "WebPage": "Instant View webpage preview", "PrivacyRule": "Privacy rules together with privacy keys indicate what can or can't someone do and are specified by a PrivacyRule constructor, and its input counterpart InputPrivacyRule.\n\nSee the privacy documentation » for more info.", "Authorization": "Represents a logged-in session", "account.Authorizations": "Logged-in sessions", "auth.PasswordRecovery": "Recovery info of a 2FA password, only for accounts with a recovery email configured.", "account.Password": "Configuration for two-factor authorization", "ChatInvite": "Chat invite", "ExportedChatInvite": "Exported chat invite", "ReceivedNotifyMessage": "Confirmation of message receipt", "account.PasswordInputSettings": "Constructor for setting up a new 2FA SRP password", "StickerSet": "Represents a stickerset (stickerpack)", "messages.StickerSet": "Stickerset", "account.PasswordSettings": "Private info associated to the password info (recovery email, telegram passport info & so on)", "InputStickerSet": "Represents a stickerset", "KeyboardButton": "Bot or inline keyboard buttons", "KeyboardButtonRow": "Bot or inline keyboard rows", "BotInfo": "Info about bots (available bot commands, etc)", "ReplyMarkup": "Reply markup for bot and inline keyboards", "InputChannel": "Represents a channel", "contacts.ResolvedPeer": "Peer returned after resolving a @username", "updates.ChannelDifference": "Contains the difference (new messages) between our local channel state and the remote state", "MessageRange": "Indicates a range of chat messages", "channels.ChannelParticipants": "Channel/supergroup participants", "ChannelMessagesFilter": "Filter for fetching only certain types of channel messages", "MessageEntity": "Message entities, representing styled text in a message", "ChannelParticipantsFilter": "Filter for fetching channel participants", "BotCommand": "Describes a bot command that can be used in a chat", "ChannelParticipant": "Channel participant", "channels.ChannelParticipant": "Channel participant", "help.TermsOfService": "Contains info about the latest telegram Terms Of Service.", "messages.SavedGifs": "Saved GIFs", "InputBotInlineResult": "Inline bot result", "InputBotInlineMessage": "Represents a sent inline message from the perspective of a bot", "BotInlineResult": "Results of an inline query", "BotInlineMessage": "Inline message", "ExportedMessageLink": "HTTP link and embed info of channel message", "messages.BotResults": "Result of a query to an inline bot", "MessageFwdHeader": "Info about a forwarded message", "auth.SentCodeType": "Type of the verification code that was sent", "auth.CodeType": "Type of verification code that will be sent next if you call the resendCode method", "messages.MessageEditData": "Message edit data for media", "InlineBotSwitchPM": "The bot requested the user to message them in private", "messages.BotCallbackAnswer": "Callback answer of bot", "messages.PeerDialogs": "List of dialogs", "TopPeerCategory": "Top peer category", "TopPeerCategoryPeers": "Top peers by top peer category", "TopPeer": "Top peer", "contacts.TopPeers": "Top peers", "InputBotInlineMessageID": "Represents a sent inline message from the perspective of a bot", "messages.FeaturedStickers": "Featured stickers", "DraftMessage": "Represents a message draft.", "StickerSetCovered": "Stickerset preview", "messages.ArchivedStickers": "Archived stickers", "MaskCoords": "Mask coordinates (if this is a mask sticker, attached to a photo)", "messages.StickerSetInstallResult": "Result of stickerset installation process", "InputStickeredMedia": "Represents a media with attached stickers", "messages.RecentStickers": "Recent stickers", "Game": "Indicates an already sent game", "InputGame": "A game to send", "messages.HighScores": "High scores (in games)", "HighScore": "Game high score", "DataJSON": "Represent a JSON-encoded object", "PhoneCallDiscardReason": "Why was the phone call discarded?", "RichText": "Rich text", "LabeledPrice": "Labeled pricetag", "Invoice": "Invoice", "PaymentRequestedInfo": "Requested payment info", "PageBlock": "Represents an instant view page element", "InputWebDocument": "Specifies a document that will have to be downloaded from the URL by the telegram servers", "PaymentSavedCredentials": "Saved payment credentials", "PostAddress": "Shipping address", "WebDocument": "Remote document", "upload.WebFile": "Remote file", "payments.PaymentForm": "Payment form", "InputWebFileLocation": "Location of remote file", "PaymentCharge": "Charged payment", "account.TmpPassword": "Temporary password", "payments.PaymentResult": "Payment result", "payments.ValidatedRequestedInfo": "Validated requested info", "payments.PaymentReceipt": "Payment receipt", "payments.SavedInfo": "Saved payment info", "InputPaymentCredentials": "Payment credentials", "InputStickerSetItem": "Sticker", "PhoneConnection": "Phone call connection", "PhoneCall": "Phone call", "InputPhoneCall": "Phone call", "PhoneCallProtocol": "Phone call protocol", "ShippingOption": "Shipping options", "upload.CdnFile": "Represents the download status of a CDN file", "phone.PhoneCall": "Phone call", "CdnConfig": "Configuration for CDN file downloads.", "LangPackLanguage": "Language pack language", "LangPackDifference": "Language pack changes", "LangPackString": "Language pack string", "ChannelAdminLogEvent": "An event in a channel admin log", "ChannelAdminLogEventAction": "Channel admin log event", "CdnPublicKey": "Public key to use only during handshakes to CDN DCs.", "channels.AdminLogResults": "Admin log events", "RecentMeUrl": "Recent t.me urls", "PopularContact": "Popular contact", "help.RecentMeUrls": "Recent t.me URLs", "ChannelAdminLogEventsFilter": "Filter for fetching events in the channel admin log", "account.WebAuthorizations": "Web authorizations", "InputMessage": "A message", "WebAuthorization": "Web authorization", "InputSingleMedia": "A single media in an album or grouped media sent with {@link messages.RawSendMultiMediaRequest}.", "InputDialogPeer": "Peer, or all peers in a certain folder", "DialogPeer": "Peer, or all peers in a folder", "messages.FoundStickerSets": "Found stickersets", "SecureFile": "Secure passport file, for more info see the passport docs »", "FileHash": "Hash of an uploaded file, to be checked for validity after download", "InputSecureFile": "Secure passport file, for more info see the passport docs »", "help.TermsOfServiceUpdate": "Update of Telegram's terms of service", "SecureData": "Secure passport data, for more info see the passport docs »", "SecurePlainData": "Plaintext verified passport data.", "SecureValue": "Secure Telegram Passport value", "SecureValueType": "Secure value type", "messages.FavedStickers": "Favorited stickers", "SecureValueHash": "Secure value hash", "InputSecureValue": "Secure value, for more info see the passport docs »", "SecureValueError": "Secure value error", "SecureCredentialsEncrypted": "Encrypted secure credentials", "InputClientProxy": "Info about an MTProxy used to connect.", "help.DeepLinkInfo": "Contains information about an unsupported deep link »", "account.SentEmailCode": "The email code that was sent", "account.AuthorizationForm": "Authorization form", "account.Takeout": "Takeout info", "SavedContact": "Saved contact", "SecureSecretSettings": "Telegram passport settings", "SecurePasswordKdfAlgo": "KDF algorithm to use for computing telegram passport hash", "PasswordKdfAlgo": "Key derivation function to use when generating the password hash for SRP two-factor authorization", "InputCheckPasswordSRP": "Constructors for checking the validity of a 2FA SRP password.\n\nSee here » for more info on the 2FA authentication flow for methods that require it, before and after login.", "SecureRequiredType": "Required secure file type", "help.PassportConfig": "Telegram passport configuration", "InputAppEvent": "Object contains info about an event that occurred in the application.", "PageTableCell": "Represents a table in an instant view table", "JSONValue": "JSON value", "PageTableRow": "Table row", "PageCaption": "Page caption", "PageListItem": "Item in block list", "JSONObjectValue": "JSON key: value pair", "PageRelatedArticle": "Related articles", "PageListOrderedItem": "Represents an instant view ordered list", "help.SupportName": "Get localized name for support user", "PollAnswer": "Indicates a possible answer to a poll.", "help.UserInfo": "User info", "Page": "Instant view page", "Poll": "Indicates a poll message", "PollResults": "Results of poll", "StatsURL": "URL with chat statistics", "PollAnswerVoters": "How users voted on a certain poll answer", "ChatOnlines": "Number of online users in a chat", "ChatAdminRights": "Represents the rights of an admin in a channel/supergroup.", "account.WallPapers": "Wallpapers", "WallPaperSettings": "Wallpaper rendering information.", "ChatBannedRights": "Represents the rights of a normal user in a supergroup/channel/chat.", "InputWallPaper": "Wallpaper", "AutoDownloadSettings": "Media autodownload settings", "CodeSettings": "Settings for the code type to send", "account.AutoDownloadSettings": "Media autodownload settings", "EmojiKeyword": "Emoji keyword", "EmojiKeywordsDifference": "New emoji keywords", "Folder": "A folder", "EmojiLanguage": "Emoji language", "EmojiURL": "Emoji URL", "InputFolderPeer": "Peer in a folder", "FolderPeer": "Peer associated to folder", "messages.SearchCounter": "Number of results that would be returned by a search", "ChannelLocation": "Geographical location of supergroup (geogroups)", "UrlAuthResult": "URL authorization result", "PeerLocated": "Geolocated peer", "RestrictionReason": "Restriction reason", "Theme": "Cloud theme", "InputTheme": "Cloud theme", "account.ContentSettings": "Sensitive content settings", "auth.LoginToken": "Login token (for QR code login)", "account.Themes": "Installed themes", "messages.InactiveChats": "Inactive chat list", "BaseTheme": "Basic theme settings", "InputThemeSettings": "Theme settings", "ThemeSettings": "Theme settings", "WebPageAttribute": "Webpage attributes", "BankCardOpenUrl": "Credit card info URL provided by the bank", "messages.VotesList": "How users voted in a poll", "payments.BankCardData": "Credit card info, provided by the card's bank(s)", "StatsDateRangeDays": "Channel statistics date range", "DialogFilterSuggested": "Suggested dialog filters (folder »)", "DialogFilter": "Dialog filter (folder »)", "StatsAbsValueAndPrev": "Channel statistics value pair", "StatsPercentValue": "Channel statistics percentage", "StatsGraph": "Channel statistics graph", "stats.BroadcastStats": "Channel statistics", "VideoSize": "Represents an animated video thumbnail", "help.PromoData": "Info about pinned MTProxy or Public Service Announcement peers.", "StatsGroupTopPoster": "Most active user in a supergroup", "stats.MegagroupStats": "Supergroup statistics", "StatsGroupTopInviter": "Most active inviter in a supergroup", "StatsGroupTopAdmin": "Most active admin in a supergroup", "GlobalPrivacySettings": "Global privacy settings", "help.Country": "Name, ISO code, localized name and phone codes/patterns of a specific country", "help.CountryCode": "Country code and phone number pattern of a specific country", "help.CountriesList": "Name, ISO code, localized name and phone codes/patterns of all available countries", "MessageViews": "View, forward counter + info about replies of a specific message", "messages.DiscussionMessage": "Info about a message thread", "MessageReplyHeader": "Reply information", "messages.MessageViews": "View, forward counter + info about replies", "MessageReplies": "Info about post comments (for channels) or message replies (for groups)", "stats.MessageStats": "Message statistics", "GroupCallParticipant": "Info about a group call participant", "PeerBlocked": "Info about a blocked user", "GroupCall": "A group call", "phone.GroupCall": "Contains info about a group call, and partial info about its participants.", "InlineQueryPeerType": "Inline query peer type.", "InputGroupCall": "Indicates a group call", "messages.HistoryImport": "Identifier of a history import session, click here for more info ».", "messages.HistoryImportParsed": "Contains information about a chat export file, generated by a foreign chat app.", "messages.AffectedFoundMessages": "Messages found and affected by changes", "ChatInviteImporter": "When and which user joined the chat using a chat invite", "messages.ExportedChatInvite": "Contains info about a chat invite, and eventually a pointer to the newest chat invite.", "messages.ChatInviteImporters": "List of users that imported a chat invitation link.", "messages.ChatAdminsWithInvites": "Info about chat invites generated by admins.", "ChatAdminWithInvites": "Info about chat invites generated by admins.", "messages.ExportedChatInvites": "Info about chat invites exported by a certain admin.", "phone.GroupParticipants": "Info about the participants of a group call or livestream", "phone.JoinAsPeers": "A list of peers that can be used to join a group call, presenting yourself as a specific user/channel.", "phone.ExportedGroupCallInvite": "An exported group call invitation.", "account.ResetPasswordResult": "Result of an {@link account.RawResetPasswordRequest} request.", "BotCommandScope": "Represents a scope where the bot commands, specified using {@link bots.RawSetBotCommandsRequest} will be valid.", "GroupCallParticipantVideoSourceGroup": "Describes a group of video synchronization source identifiers", "messages.CheckedHistoryImportPeer": "Contains a confirmation text to be shown to the user, upon importing chat history, click here for more info ».", "stickers.SuggestedShortName": "A suggested short name for the specified stickerpack", "SponsoredMessage": "A sponsored message", "GroupCallParticipantVideo": "Info about a video stream", "messages.SponsoredMessages": "A set of sponsored messages associated with a channel", "SearchResultsCalendarPeriod": "Information about found messages sent on a specific day, used to split the messages in {@link messages.RawSearchResultsCalendar} constructors by days.", "messages.SearchResultsCalendar": "Information about found messages sent on a specific day", "SearchResultsPosition": "Information about a message in a specific position", "channels.SendAsPeers": "A list of peers that can be used to send messages in a specific group", "messages.PeerSettings": "Peer settings", "users.UserFull": "Full user information, with attached context peers for reactions", "messages.SearchResultsPositions": "Information about sparse positions of messages", "auth.LoggedOut": "Future auth token » to be used on subsequent authorizations", "MessageReactions": "Message reactions »", "messages.AvailableReactions": "Animations and metadata associated with message reactions »", "AvailableReaction": "Animations associated with a message reaction", "messages.MessageReactionsList": "List of peers that reacted to a specific message", "ReactionCount": "Number of users that reacted with a certain emoji", "MessagePeerReaction": "How a certain peer reacted to the message", "phone.GroupCallStreamChannels": "Info about RTMP streams in a group call or livestream", "GroupCallStreamChannel": "Info about an RTMP stream in a group call or livestream", "AttachMenuBotIconColor": "Represents an attachment menu icon color for bot mini apps »", "phone.GroupCallStreamRtmpUrl": "RTMP URL and stream key to be used in streaming software", "AttachMenuBotIcon": "Represents an attachment menu icon for bot mini apps »", "AttachMenuBots": "Represents a list of bot mini apps that can be launched from the attachment menu »", "AttachMenuBot": "Represents a bot mini app that can be launched from the attachment menu »", "WebViewResult": "Contains the webview URL with appropriate theme and user info parameters added", "WebViewMessageSent": "Contains information about an inline message sent by a Web App on behalf of a user.", "BotMenuButton": "Indicates the action to execute when pressing the in-UI menu button for bots", "account.SavedRingtones": "Contains a list of saved notification sounds", "NotificationSound": "Represents a notification sound", "AttachMenuPeerType": "Indicates a supported peer type for a bot mini app attachment menu", "account.SavedRingtone": "Contains information about a saved notification sound", "AttachMenuBotsBot": "Represents a bot mini app that can be launched from the attachment menu »", "payments.ExportedInvoice": "Exported invoice", "InputInvoice": "An invoice", "messages.TranscribedAudio": "Transcribed text from a voice message", "InputStorePaymentPurpose": "Info about a Telegram Premium purchase", "PremiumGiftOption": "Telegram Premium gift option", "PaymentFormMethod": "Represents a payment method", "EmojiStatus": "Emoji status", "ChatReactions": "Available chat reactions", "messages.Reactions": "A set of message reactions", "help.PremiumPromo": "Telegram Premium promotion information", "EmailVerifyPurpose": "Email verification purpose", "PremiumSubscriptionOption": "Telegram Premium subscription option", "SendAsPeer": "Indicates a peer that can be used to send messages", "account.EmojiStatuses": "A list of emoji statuses", "EmailVerification": "Email verification code or token", "MessageExtendedMedia": "Paid media, see here » for more info.", "Reaction": "Message reaction", "account.EmailVerified": "Email verification status", "Username": "Contains information about a username", "StickerKeyword": "Keywords for a certain sticker", "ForumTopic": "Contains information about a forum topic", "messages.ForumTopics": "Contains information about multiple forum topics", "DefaultHistoryTTL": "Contains info about the default value of the Time-To-Live setting, applied to all new chats.", "ExportedContactToken": "Describes a temporary profile link.", "RequestPeerType": "Filtering criteria to use for the peer selection list shown to the user.", "messages.EmojiGroups": "Represents a list of emoji categories.", "EmojiGroup": "Represents an emoji category.", "TextWithEntities": "Styled text with message entities", "messages.TranslatedText": "Translated text with entities.", "EmojiList": "Represents a list of custom emojis.", "AutoSaveSettings": "Media autosave settings", "BotApp": "Contains information about a direct link Mini App.", "InputBotApp": "Used to fetch information about a direct link Mini App", "messages.BotApp": "Contains information about a direct link Mini App", "ReadParticipantDate": "Contains info about when a certain participant has read a message", "InlineBotWebView": "Specifies an inline mode mini app button, shown on top of the inline query results list.", "InputChatlist": "Represents a folder", "account.AutoSaveSettings": "Contains media autosave settings", "chatlists.ExportedInvites": "A list of exported chat folder deep links ».", "ExportedChatlistInvite": "An exported chat folder deep link ».", "chatlists.ChatlistInvite": "Info about a chat folder deep link ».", "help.AppConfig": "Contains various client configuration parameters", "bots.BotInfo": "Localized name, about text and description of a bot.", "chatlists.ChatlistUpdates": "Updated info about a chat folder deep link ».", "MessagePeerVote": "How a user voted in a poll", "chatlists.ExportedChatlistInvite": "Exported chat folder deep link ».", "StoryItem": "Represents a Telegram Story", "StoryView": "Story view date and reaction information", "StoryViews": "Aggregated view and reaction information of a story", "AutoSaveException": "Peer-specific autosave settings", "stories.StoryViewsList": "Reaction and view counters for a story", "stories.StoryViews": "Reaction and view counters for a list of stories", "stories.AllStories": "Full list of active (or active and hidden) stories.", "stories.Stories": "List of stories", "ExportedStoryLink": "Represents a story deep link", "InputReplyTo": "Contains info about a message or story to reply to.", "MediaAreaCoordinates": "Coordinates and size of a clicable rectangular area on top of a story.", "StoriesStealthMode": "Story stealth mode status", "PeerStories": "Stories associated to a peer", "MediaArea": "Represents a story media area »", "stories.PeerStories": "Active story list of a specific peer.", "messages.WebPage": "Contains an instant view webpage.", "payments.CheckedGiftCode": "Info about a Telegram Premium Giftcode.", "PremiumGiftCodeOption": "Giveaway option.", "PrepaidGiveaway": "Contains info about a prepaid giveaway ».", "Boost": "Info about one or more boosts applied by a specific user.", "premium.BoostsList": "List of boosts that were applied to a peer by multiple users.", "payments.GiveawayInfo": "Info about a Telegram Premium Giveaway.", "MyBoost": "Contains information about a single boost slot ».", "premium.MyBoosts": "A list of peers we are currently boosting, and how many boost slots we have left.", "premium.BoostsStatus": "Contains info about the current boost status of a peer.", "StoryFwdHeader": "Contains info about the original poster of a reposted story.", "PostInteractionCounters": "Interaction counters", "stats.StoryStats": "Contains statistics about a story.", "stats.PublicForwards": "Contains info about the forwards of a story as a message to public chats and reposts by public channels.", "PublicForward": "Contains info about the forwards of a story as a message to public chats and reposts by public channels.", "PeerColor": "Represents a color palette ».", "help.PeerColorOption": "Contains info about a color palette ».", "stories.StoryReactionsList": "List of peers that reacted to a specific story", "help.PeerColorSet": "Contains info about a color palette ».", "StoryReaction": "How a certain peer reacted to or interacted with a story", "SavedDialog": "Represents a saved message dialog ».", "messages.SavedReactionTags": "List of reaction tag » names assigned by the user.", "help.PeerColors": "Contains info about multiple color palettes ».", "SavedReactionTag": "Info about a saved message reaction tag ».", "BusinessWeeklyOpen": "A time interval, indicating the opening hours of a Telegram Business.", "BusinessWorkHours": "Specifies a set of Telegram Business opening hours.", "messages.SavedDialogs": "Represents some saved message dialogs ».", "smsjobs.EligibilityToJoin": "SMS jobs eligibility", "OutboxReadDate": "Exact read date of a private message we sent to another user.", "smsjobs.Status": "Status", "SmsJob": "Info about an SMS job.", "BusinessLocation": "Represents the location of a Telegram Business ».", "InputBusinessRecipients": "Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.", "BusinessRecipients": "Specifies the chats that can receive Telegram Business away » and greeting » messages.", "InputBusinessAwayMessage": "Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.", "InputBusinessGreetingMessage": "Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.", "BusinessGreetingMessage": "Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.", "BusinessAwayMessageSchedule": "Specifies when should the Telegram Business away messages be sent.", "BusinessAwayMessage": "Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.", "Timezone": "Timezone information.", "QuickReply": "A quick reply shortcut.", "messages.QuickReplies": "Info about quick reply shortcuts ».", "ConnectedBot": "Contains info about a connected business bot ».", "messages.DialogFilters": "Folder information", "Birthday": "Birthday information for a user.", "InputQuickReplyShortcut": "Represents a quick reply shortcut ».", "account.ConnectedBots": "Info about currently connected business bots.", "BotBusinessConnection": "Contains info about a bot business connection.", "help.TimezonesList": "Timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».", "InputBusinessIntro": "Telegram Business introduction ».", "BusinessIntro": "Telegram Business introduction ».", "messages.MyStickers": "The list of stickersets owned by the current account ».", "InputCollectible": "Represents a Fragment collectible ».", "BusinessBotRecipients": "Specifies the private chats that a connected business bot » may receive messages and interact with.", "InputBusinessBotRecipients": "Specifies the private chats that a connected business bot » may interact with.", "ContactBirthday": "Birthday information of a contact.", "MissingInvitee": "Info about why a specific user could not be invited ».", "contacts.ContactBirthdays": "Birthday information of our contacts.", "fragment.CollectibleInfo": "Info about a fragment collectible.", "InputBusinessChatLink": "Contains info about a business chat deep link » to be created by the current account.", "RequestedPeer": "Info about a peer, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.", "account.ResolvedBusinessChatLinks": "Contains info about a single resolved business chat deep link ».", "BusinessChatLink": "Contains info about a business chat deep link » created by the current account.", "account.BusinessChatLinks": "Contains info about business chat deep links » created by the current account.", "SponsoredMessageReportOption": "A report option for a sponsored message ».", "messages.InvitedUsers": "Contains info about successfully or unsuccessfully invited » users.", "channels.SponsoredMessageReportResult": "Status of the method call used to report a sponsored message ».", "stats.BroadcastRevenueStats": "Channel revenue ad statistics, see here » for more info.", "stats.BroadcastRevenueWithdrawalUrl": "Contains the URL to use to withdraw channel ad revenue.", "BroadcastRevenueTransaction": "A channel ad revenue » transaction.", "ReactionsNotifySettings": "Reaction notification settings, see here » for more info.", "BroadcastRevenueBalances": "Channel ad revenue balance » information.", "ReactionNotificationsFrom": "Reaction notification settings", "messages.AvailableEffects": "Full list of usable animated message effects ».", "AvailableEffect": "Describes a message effect ».", "stats.BroadcastRevenueTransactions": "Channel ad revenue transactions ».", "FactCheck": "Represents a fact-check » created by an independent fact-checker.", "StarsTransactionPeer": "Source of an incoming Telegram Star transaction, or its recipient for outgoing Telegram Star transactions.", "payments.StarsStatus": "Info about the current Telegram Star balance and transaction history ».", "StarsTransaction": "Represents a Telegram Stars transaction ».", "StarsTopupOption": "Telegram Stars topup option.", "FoundStory": "A story found using global story search ».", "stories.FoundStories": "Stories found using global story search ».", "GeoPointAddress": "Address optionally associated to a {@link RawGeoPoint}.", "StarsRevenueStatus": "Describes Telegram Star revenue balances ».", "payments.StarsRevenueStats": "Star revenue statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in Stars.", "payments.StarsRevenueAdsAccountUrl": "Contains a URL leading to a page where the user will be able to place ads for the channel/bot, paying using Telegram Stars.", "InputStarsTransaction": "Used to fetch info about a Telegram Star transaction ».", "StarsGiftOption": "Telegram Stars gift option.", "payments.StarsRevenueWithdrawalUrl": "Contains the URL to use to withdraw Telegram Star revenue.", "bots.PopularAppBots": "Popular Main Mini Apps, to be used in the apps tab of global search ».", "BotPreviewMedia": "Represents a Main Mini App preview media, see here » for more info.", "bots.PreviewInfo": "Contains info about Main Mini App previews, see here » for more info.", "SimpleWebViewResult": "Contains the webview URL with appropriate theme parameters added", "AppWebViewResult": "Contains the link that must be used to open a direct link Mini App.", "SponsoredWebPage": "Represents a sponsored website." } } +{"updated":"20.11.2024, 20:00:44 (layer 192) - from https://corefork.telegram.org","classes":{"error":{"comment":"Error.","arguments":{"code":"Error code","text":"Message"}},"inputUser":{"comment":"Defines a user for further interaction.","arguments":{"user_id":"User identifier","access_hash":"access_hash value from the {@link RawUser} constructor"}},"inputPeerChannelFromMessage":{"comment":"Defines a min channel that was seen in a certain message of a certain chat.","arguments":{"peer":"The chat where the channel's message was seen","msg_id":"The message ID","channel_id":"The identifier of the channel that was seen"}},"inputPeerChat":{"comment":"Defines a chat for further interaction.","arguments":{"chat_id":"Chat identifier"}},"inputUserFromMessage":{"comment":"Defines a min user that was seen in a certain message of a certain chat.","arguments":{"peer":"The chat where the user was seen","msg_id":"The message ID","user_id":"The identifier of the user that was seen"}},"inputUserEmpty":{"comment":"Empty constructor, does not define a user.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPhoneContact":{"comment":"Phone contact.","arguments":{"client_id":"An arbitrary 64-bit integer: it should be set, for example, to an incremental number when using {@link contacts.RawImportContactsRequest}, in order to retry importing only the contacts that weren't imported successfully, according to the client_ids returned in {@link contacts.RawImportedContacts}.retry_contacts.","phone":"Phone number","first_name":"Contact's first name","last_name":"Contact's last name"}},"inputUserSelf":{"comment":"Defines the current user.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputFile":{"comment":"Defines a file saved in parts using the method {@link upload.RawSaveFilePartRequest}.","arguments":{"id":"Random file identifier created by the client","parts":"Number of parts saved","name":"Full name of the file","md5_checksum":"In case the file's md5-hash was passed, contents of the file will be checked prior to use"}},"inputFileBig":{"comment":"Assigns a big file (over 10 MB in size), saved in part using the method {@link upload.RawSaveBigFilePartRequest}.","arguments":{"id":"Random file id, created by the client","parts":"Number of parts saved","name":"Full file name"}},"inputPeerSelf":{"comment":"Defines the current user.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMediaEmpty":{"comment":"Empty media content of a message.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMediaPhoto":{"comment":"Forwarded photo","arguments":{"flags":"Flags, see TL conditional fields","spoiler":"Whether this media should be hidden behind a spoiler warning","id":"Photo to be forwarded","ttl_seconds":"Time to live in seconds of self-destructing photo"}},"inputMediaUploadedPhoto":{"comment":"Photo","arguments":{"flags":"Flags, see TL conditional fields","spoiler":"Whether this media should be hidden behind a spoiler warning","file":"The uploaded file","stickers":"Attached mask stickers","ttl_seconds":"Time to live in seconds of self-destructing photo"}},"inputMediaGeoPoint":{"comment":"Map.","arguments":{"geo_point":"GeoPoint"}},"inputMediaUploadedDocument":{"comment":"New document","arguments":{"flags":"Flags, see TL conditional fields","nosound_video":"Whether the specified document is a video file with no audio tracks (a GIF animation (even as MPEG4), for example)","force_file":"Force the media file to be uploaded as document","spoiler":"Whether this media should be hidden behind a spoiler warning","file":"The uploaded file","thumb":"Thumbnail of the document, uploaded as for the file","mime_type":"MIME type of document","attributes":"Attributes that specify the type of the document (video, audio, voice, sticker, etc.)","stickers":"Attached stickers","ttl_seconds":"Time to live in seconds of self-destructing document"}},"inputMediaContact":{"comment":"Phone book contact","arguments":{"phone_number":"Phone number","first_name":"Contact's first name","last_name":"Contact's last name","vcard":"Contact vcard"}},"inputMediaDocument":{"comment":"Forwarded document","arguments":{"flags":"Flags, see TL conditional fields","spoiler":"Whether this media should be hidden behind a spoiler warning","id":"The document to be forwarded.","ttl_seconds":"Time to live of self-destructing document","query":"Text query or emoji that was used by the user to find this sticker or GIF: used to improve search result relevance."}},"inputFileStoryDocument":{"comment":"Used to edit the thumbnail/static preview of a story, see here » for more info on the full flow.","arguments":{"id":"The old story video."}},"inputMediaPhotoExternal":{"comment":"New photo that will be uploaded by the server using the specified URL","arguments":{"flags":"Flags, see TL conditional fields","spoiler":"Whether this media should be hidden behind a spoiler warning","url":"URL of the photo","ttl_seconds":"Self-destruct time to live of photo"}},"inputMediaVenue":{"comment":"Can be used to send a venue geolocation.","arguments":{"geo_point":"Geolocation","title":"Venue name","address":"Physical address of the venue","provider":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported","venue_id":"Venue ID in the provider's database","venue_type":"Venue type in the provider's database"}},"inputMediaGame":{"comment":"A game","arguments":{"id":"The game to forward"}},"inputPeerChannel":{"comment":"Defines a channel for further interaction.","arguments":{"channel_id":"Channel identifier","access_hash":"access_hash value from the {@link RawChannel} constructor"}},"inputMediaGeoLive":{"comment":"Live geolocation","arguments":{"flags":"Flags, see TL conditional fields","stopped":"Whether sending of the geolocation was stopped","geo_point":"Current geolocation","heading":"For live locations, a direction in which the location moves, in degrees; 1-360.","period":"Validity period of the current location","proximity_notification_radius":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)"}},"inputMediaPoll":{"comment":"A poll","arguments":{"flags":"Flags, see TL conditional fields","poll":"The poll to send","correct_answers":"Correct answer IDs (for quiz polls)","solution":"Explanation of quiz solution","solution_entities":"Message entities for styled text"}},"inputMediaInvoice":{"comment":"Generated invoice of a bot payment","arguments":{"flags":"Flags, see TL conditional fields","title":"Product name, 1-32 characters","description":"Product description, 1-255 characters","photo":"URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for.","invoice":"The actual invoice","payload":"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes.","provider":"Payments provider token, obtained via Botfather","provider_data":"JSON-encoded data about the invoice, which will be shared with the payment provider. A detailed description of required fields should be provided by the payment provider.","start_param":"Unique bot deep links start parameter. If present, forwarded copies of the sent message will have a URL button with a deep link to the bot (instead of a Pay button), with the value used as the start parameter. If absent, forwarded copies of the sent message will have a Pay button, allowing multiple users to pay directly from the forwarded message, using the same invoice.","extended_media":"Deprecated"}},"inputMediaWebPage":{"comment":"Specifies options that will be used to generate the link preview for the caption, or even a standalone link preview without an attached message.","arguments":{"flags":"Flags, see TL conditional fields","force_large_media":"If set, specifies that a large media preview should be used.","force_small_media":"If set, specifies that a small media preview should be used.","optional":"If not set, a WEBPAGE_NOT_FOUND RPC error will be emitted if a webpage preview cannot be generated for the specified url; otherwise, no error will be emitted (unless the provided message is also empty, in which case a MESSAGE_EMPTY will be emitted, instead).","url":"The URL to use for the link preview."}},"inputChatPhotoEmpty":{"comment":"Empty constructor, remove group photo.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMediaPaidMedia":{"comment":"Paid media, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","stars_amount":"The price of the media in Telegram Stars.","extended_media":"Photos or videos."}},"inputChatPhoto":{"comment":"Existing photo to be set as a chat profile photo.","arguments":{"id":"Existing photo"}},"inputChatUploadedPhoto":{"comment":"New photo to be set as group profile photo.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.","arguments":{"flags":"Flags, see TL conditional fields","file":"File saved in parts using the method {@link upload.RawSaveFilePartRequest}","video":"Square video for animated profile picture","video_start_ts":"Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set.","video_emoji_markup":"Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor."}},"inputGeoPointEmpty":{"comment":"Empty GeoPoint constructor.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputGeoPoint":{"comment":"Defines a GeoPoint by its coordinates.","arguments":{"flags":"Flags, see TL conditional fields","lat":"Latitude","long":"Longitude","accuracy_radius":"The estimated horizontal accuracy of the location, in meters; as defined by the sender."}},"inputPeerEmpty":{"comment":"An empty constructor, no user or chat is defined.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMediaStory":{"comment":"Forwarded story","arguments":{"peer":"Peer where the story was posted","id":"Story ID"}},"inputPhotoEmpty":{"comment":"Empty constructor.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPhoto":{"comment":"Defines a photo for further interaction.","arguments":{"id":"Photo identifier","access_hash":"access_hash value from the {@link RawPhoto} constructor","file_reference":"File reference"}},"inputFileLocation":{"comment":"DEPRECATED location of a photo","arguments":{"volume_id":"Server volume","local_id":"File identifier","secret":"Check sum to access the file","file_reference":"File reference"}},"inputEncryptedFileLocation":{"comment":"Location of encrypted secret chat file.","arguments":{"id":"File ID, id parameter value from {@link RawEncryptedFile}","access_hash":"Checksum, access_hash parameter value from {@link RawEncryptedFile}"}},"inputMediaDice":{"comment":"Send a dice-based animated sticker","arguments":{"emoticon":"The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported"}},"inputPhotoFileLocation":{"comment":"Use this object to download a photo with {@link upload.RawGetFileRequest} method","arguments":{"id":"Photo ID, obtained from the {@link RawPhoto} object","access_hash":"Photo's access hash, obtained from the {@link RawPhoto} object","file_reference":"File reference","thumb_size":"The PhotoSize to download: must be set to the type field of the desired PhotoSize object of the {@link RawPhoto}"}},"inputSecureFileLocation":{"comment":"Location of encrypted telegram passport file.","arguments":{"id":"File ID, id parameter value from {@link RawSecureFile}","access_hash":"Checksum, access_hash parameter value from {@link RawSecureFile}"}},"inputPhotoLegacyFileLocation":{"comment":"DEPRECATED legacy photo file location","arguments":{"id":"Photo ID","access_hash":"Access hash","file_reference":"File reference","volume_id":"Volume ID","local_id":"Local ID","secret":"Secret"}},"inputTakeoutFileLocation":{"comment":"Used to download a JSON file that will contain all personal data related to features that do not have a specialized takeout method yet, see here » for more info on the takeout API.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputStickerSetThumb":{"comment":"Location of stickerset thumbnail (see files)","arguments":{"stickerset":"Sticker set","thumb_version":"Thumbnail version"}},"inputPeerPhotoFileLocation":{"comment":"Location of profile photo of channel/group/supergroup/user","arguments":{"flags":"Flags, see TL conditional fields","big":"Whether to download the high-quality version of the picture","peer":"The peer whose profile picture should be downloaded","photo_id":"Photo ID"}},"peerUser":{"comment":"Chat partner","arguments":{"user_id":"User identifier"}},"peerChat":{"comment":"Group.","arguments":{"chat_id":"Group identifier"}},"inputPeerUser":{"comment":"Defines a user for further interaction.","arguments":{"user_id":"User identifier","access_hash":"access_hash value from the {@link RawUser} constructor"}},"storage.fileUnknown":{"comment":"Unknown type.","arguments":{"gigagroup":"Is this a broadcast group?"}},"peerChannel":{"comment":"Channel/supergroup","arguments":{"channel_id":"Channel ID"}},"storage.filePartial":{"comment":"Part of a bigger file.","arguments":{"gigagroup":"Is this a broadcast group?"}},"storage.filePng":{"comment":"PNG image. MIME type: image/png.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMediaDocumentExternal":{"comment":"Document that will be downloaded by the telegram servers","arguments":{"flags":"Flags, see TL conditional fields","spoiler":"Whether this media should be hidden behind a spoiler warning","url":"URL of the document","ttl_seconds":"Self-destruct time to live of document"}},"storage.fileJpeg":{"comment":"JPEG image. MIME type: image/jpeg.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputGroupCallStream":{"comment":"Chunk of a livestream","arguments":{"flags":"Flags, see TL conditional fields","call":"Livestream info","time_ms":"Timestamp in milliseconds","scale":"Specifies the duration of the video segment to fetch in milliseconds, by bitshifting 1000 to the right scale times: duration_ms := 1000 >> scale","video_channel":"Selected video channel","video_quality":"Selected video quality (0 = lowest, 1 = medium, 2 = best)"}},"storage.fileMov":{"comment":"Quicktime video. MIME type: video/quicktime.","arguments":{"gigagroup":"Is this a broadcast group?"}},"storage.filePdf":{"comment":"PDF document image. MIME type: application/pdf.","arguments":{"gigagroup":"Is this a broadcast group?"}},"storage.fileGif":{"comment":"GIF image. MIME type: image/gif.","arguments":{"gigagroup":"Is this a broadcast group?"}},"userEmpty":{"comment":"Empty constructor, non-existent user.","arguments":{"id":"User identifier or 0"}},"userProfilePhotoEmpty":{"comment":"Profile photo has not been set, or was hidden.","arguments":{"gigagroup":"Is this a broadcast group?"}},"userStatusEmpty":{"comment":"User status has not been set yet.","arguments":{"gigagroup":"Is this a broadcast group?"}},"userStatusOnline":{"comment":"Online status of the user.","arguments":{"expires":"Time to expiration of the current online status"}},"userStatusRecently":{"comment":"Online status: last seen recently","arguments":{"flags":"Flags, see TL conditional fields","by_me":"If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info."}},"userStatusLastWeek":{"comment":"Online status: last seen last week","arguments":{"flags":"Flags, see TL conditional fields","by_me":"If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info."}},"userStatusLastMonth":{"comment":"Online status: last seen last month","arguments":{"flags":"Flags, see TL conditional fields","by_me":"If set, the exact user status of this user is actually available to us, but to view it we must first purchase a Premium subscription, or allow this user to see our exact last online status. See {@link RawPrivacyKeyStatusTimestamp} for more info."}},"storage.fileMp4":{"comment":"MPEG-4 video. MIME type: video/mp4.","arguments":{"gigagroup":"Is this a broadcast group?"}},"chat":{"comment":"Info about a group.\n\nWhen updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nSee here » for an implementation of the logic to use when updating the local user peer database.","arguments":{"flags":"Flags, see TL conditional fields","creator":"Whether the current user is the creator of the group","left":"Whether the current user has left the group","deactivated":"Whether the group was migrated","call_active":"Whether a group call is currently active","call_not_empty":"Whether there's anyone in the group call","noforwards":"Whether this group is protected, thus does not allow forwarding messages from it","id":"ID of the group, see here » for more info","title":"Title","photo":"Chat photo","participants_count":"Participant count","date":"Date of creation of the group","version":"Used in basic groups to reorder updates and make sure that all of them were received.","migrated_to":"Means this chat was upgraded to a supergroup","admin_rights":"Admin rights of the user in the group","default_banned_rights":"Default banned rights of all users in the group"}},"user":{"comment":"Indicates info about a certain user.\n\nUnless specified otherwise, when updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nSee here » for an implementation of the logic to use when updating the local user peer database.","arguments":{"flags":"Flags, see TL conditional fields","self":"Whether this user indicates the currently logged in user","contact":"Whether this user is a contact
When updating the local peer database, do not apply changes to this field if the min flag is set.","mutual_contact":"Whether this user is a mutual contact.
When updating the local peer database, do not apply changes to this field if the min flag is set.","deleted":"Whether the account of this user was deleted.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info.","bot":"Is this user a bot?
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info.","bot_chat_history":"Can the bot see all messages in groups?","bot_nochats":"Can the bot be added to groups?","verified":"Whether this user is verified","restricted":"Access to this user must be restricted for the reason specified in restriction_reason","min":"See min","bot_inline_geo":"Whether the bot can request our geolocation in inline mode","support":"Whether this is an official support user","scam":"This may be a scam user","apply_min_photo":"If set and min is set, the value of photo can be used to update the local database, see the documentation of that flag for more info.","fake":"If set, this user was reported by many users as a fake or scam user: be careful when interacting with them.","bot_attach_menu":"Whether this bot offers an attachment menu web app","premium":"Whether this user is a Telegram Premium user
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info.
Changes to this flag if the self flag is set should also trigger the following calls, to refresh the respective caches:
- The {@link help.RawGetConfigRequest} cache
- The {@link messages.RawGetTopReactionsRequest} cache if the bot flag is not set","attach_menu_enabled":"Whether we installed the attachment menu web app offered by this bot.
When updating the local peer database, do not apply changes to this field if the min flag is set.","flags2":"Flags, see TL conditional fields","bot_can_edit":"Whether we can edit the profile picture, name, about text and description of this bot because we own it.
When updating the local peer database, do not apply changes to this field if the min flag is set.
Changes to this flag (if min is not set) should invalidate the local {@link RawUserFull} cache for this user ID.","close_friend":"Whether we marked this user as a close friend, see here » for more info.
When updating the local peer database, do not apply changes to this field if the min flag is set.","stories_hidden":"Whether we have hidden » all active stories of this user.
When updating the local peer database, do not apply changes to this field if the min flag is set.","stories_unavailable":"No stories from this user are visible.","contact_require_premium":"If set, we can only write to this user if they have already sent some messages to us, if we are subscribed to Telegram Premium, or if they're a mutual contact ({@link RawUser}.mutual_contact).
All the secondary conditions listed above must be checked separately to verify whether we can still write to the user, even if this flag is set (i.e. a mutual contact will have this flag set even if we can still write to them, and so on...); to avoid doing these extra checks if we haven't yet cached all the required information (for example while displaying the chat list in the sharing UI) the {@link users.RawGetIsPremiumRequiredToContactRequest} method may be invoked instead, passing the list of users currently visible in the UI, returning a list of booleans that directly specify whether we can or cannot write to each user; alternatively, the {@link RawUserFull}.contact_require_premium flag contains the same (fully checked, i.e. it's not just a copy of this flag) info returned by {@link users.RawGetIsPremiumRequiredToContactRequest}.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.new_noncontact_peers_require_premium flag.","bot_business":"Whether this bot can be connected to a user as specified here ».","bot_has_main_app":"If set, this bot has configured a Main Mini App ».","id":"ID of the user, see here » for more info.","access_hash":"Access hash of the user, see here » for more info.
If this flag is set, when updating the local peer database, generate a virtual flag called min_access_hash, which is:
- Set to true if min is set AND
-- The phone flag is not set OR
-- The phone flag is set and the associated phone number string is non-empty
- Set to false otherwise.

Then, apply both access_hash and min_access_hash to the local database if:
- min_access_hash is false OR
- min_access_hash is true AND
-- There is no locally cached object for this user OR
-- There is no access_hash in the local cache OR
-- The cached object's min_access_hash is also true

If the final merged object stored to the database has the min_access_hash field set to true, the related access_hash is only suitable to use in {@link RawInputPeerPhotoFileLocation}, to directly download the profile pictures of users, everywhere else a inputPeer*FromMessage constructor will have to be generated as specified here ».
Bots can also use min access hashes in some conditions, by passing 0 instead of the min access hash.","first_name":"First name.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set.","last_name":"Last name.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set.","username":"Main active username.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID if the above conditions are respected and the bot_can_edit flag is also set.","phone":"Phone number.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set.","photo":"Profile picture of user.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The apply_min_photo flag is set OR
-- The min flag of the locally cached user entry is set.","status":"Online status of user.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set OR
-- The locally cached user entry is equal to {@link RawUserStatusEmpty}.","bot_info_version":"Version of the {@link RawUserFull}, incremented every time it changes.
Changes to this flag should invalidate the local {@link RawUserFull} cache for this user ID, see here » for more info.","restriction_reason":"Contains the reason why access to this user must be restricted.","bot_inline_placeholder":"Inline placeholder for this inline bot","lang_code":"Language code of the user","emoji_status":"Emoji status","usernames":"Additional usernames.
When updating the local peer database, apply changes to this field only if:
- The min flag is not set OR
- The min flag is set AND
-- The min flag of the locally cached user entry is set.
Changes to this flag (if the above conditions are respected) should invalidate the local {@link RawUserFull} cache for this user ID.","stories_max_id":"ID of the maximum read story.
When updating the local peer database, do not apply changes to this field if the min flag of the incoming constructor is set.","color":"The user's accent color.","profile_color":"The user's profile color.","bot_active_users":"Monthly Active Users (MAU) of this bot (may be absent for small bots)."}},"chatEmpty":{"comment":"Empty constructor, group doesn't exist","arguments":{"id":"Group identifier"}},"chatForbidden":{"comment":"A group to which the user has no access. E.g., because the user was kicked from the group.","arguments":{"id":"User identifier","title":"Group name"}},"storage.fileMp3":{"comment":"Mp3 audio. MIME type: audio/mpeg.","arguments":{"gigagroup":"Is this a broadcast group?"}},"channel":{"comment":"Channel/supergroup info\n\nWhen updating the local peer database, all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).\n\nThe only exception to the above rule is when the min flag is set, in which case only the following fields must be applied over any locally stored version:\n\nSee here » for an implementation of the logic to use when updating the local user peer database.","arguments":{"flags":"Flags, see TL conditional fields","creator":"Whether the current user is the creator of this channel","left":"Whether the current user has left or is not a member of this channel","broadcast":"Is this a channel?","verified":"Is this channel verified by telegram?","megagroup":"Is this a supergroup?
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.","restricted":"Whether viewing/writing in this channel for a reason (see restriction_reason)","signatures":"Whether signatures are enabled (channels)","min":"See min","scam":"This channel/supergroup is probably a scam
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.","has_link":"Whether this channel has a linked discussion group » (or this supergroup is a channel's discussion group). The actual ID of the linked channel/supergroup is contained in {@link RawChannelFull}.linked_chat_id.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.","has_geo":"Whether this channel has a geo position","slowmode_enabled":"Whether slow mode is enabled for groups to prevent flood in chat.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.","call_active":"Whether a group call or livestream is currently active","call_not_empty":"Whether there's anyone in the group call or livestream","fake":"If set, this supergroup/channel was reported by many users as a fake or scam: be careful when interacting with it.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.","gigagroup":"Whether this supergroup is a gigagroup
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.","noforwards":"Whether this channel or group is protected, thus does not allow forwarding messages from it","join_to_send":"Whether a user needs to join the supergroup before they can send messages: can be false only for discussion groups », toggle using {@link channels.RawToggleJoinToSendRequest}
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.","join_request":"Whether a user's join request will have to be approved by administrators, toggle using {@link channels.RawToggleJoinRequestRequest}
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.","forum":"Whether this supergroup is a forum.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.","flags2":"Flags, see TL conditional fields","stories_hidden":"Whether we have hidden all stories posted by this channel ».","stories_hidden_min":"If set, indicates that the stories_hidden flag was not populated, and its value must cannot be relied on; use the previously cached value, or re-fetch the constructor using {@link channels.RawGetChannelsRequest} to obtain the latest value of the stories_hidden flag.","stories_unavailable":"No stories from the channel are visible.","signature_profiles":"If set, messages sent by admins to this channel will link to the admin's profile (just like with groups).","id":"ID of the channel, see here » for more info","access_hash":"Access hash, see here » for more info","title":"Title","username":"Main active username.","photo":"Profile photo","date":"Date when the user joined the supergroup/channel, or if the user isn't a member, its creation date","restriction_reason":"Contains the reason why access to this channel must be restricted.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.","admin_rights":"Admin rights of the user in this channel (see rights)","banned_rights":"Banned rights of the user in this channel (see rights)","default_banned_rights":"Default chat rights (see rights)","participants_count":"Participant count","usernames":"Additional usernames","stories_max_id":"ID of the maximum read story.","color":"The channel's accent color.","profile_color":"The channel's profile color.","emoji_status":"Emoji status","level":"Boost level.
Changes to this flag should invalidate the local {@link RawChannelFull} cache for this channel/supergroup ID, see here » for more info.","subscription_until_date":"Expiration date of the Telegram Star subscription » the current user has bought to gain access to this channel."}},"storage.fileWebp":{"comment":"WEBP image. MIME type: image/webp.","arguments":{"gigagroup":"Is this a broadcast group?"}},"userProfilePhoto":{"comment":"User profile photo.","arguments":{"flags":"Flags, see TL conditional fields","has_video":"Whether an animated profile picture is available for this user","personal":"Whether this profile photo is only visible to us (i.e. it was set using {@link photos.RawUploadContactProfilePhotoRequest}).","photo_id":"Identifier of the respective photo","stripped_thumb":"Stripped thumbnail","dc_id":"DC ID where the photo is stored"}},"chatFull":{"comment":"Full info about a basic group.\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).","arguments":{"flags":"Flags, see TL conditional fields","can_set_username":"Can we change the username of this chat","has_scheduled":"Whether scheduled messages are available","translations_disabled":"Whether the real-time chat translation popup should be hidden.","id":"ID of the chat","about":"About string for this chat","participants":"Participant list","chat_photo":"Chat photo","notify_settings":"Notification settings","exported_invite":"Chat invite","bot_info":"Info about bots that are in this chat","pinned_msg_id":"Message ID of the last pinned message","folder_id":"Peer folder ID, for more info click here","call":"Group call information","ttl_period":"Time-To-Live of messages sent by the current user to this chat","groupcall_default_join_as":"When using {@link phone.RawGetGroupCallJoinAsRequest} to get a list of peers that can be used to join a group call, this field indicates the peer that should be selected by default.","theme_emoticon":"Emoji representing a specific chat theme","requests_pending":"Pending join requests »","recent_requesters":"IDs of users who requested to join recently","available_reactions":"Allowed message reactions »","reactions_limit":"This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max)."}},"userStatusOffline":{"comment":"The user's offline status.","arguments":{"was_online":"Time the user was last seen online"}},"chatParticipant":{"comment":"Group member.","arguments":{"user_id":"Member user ID","inviter_id":"ID of the user that added the member to the group","date":"Date added to the group"}},"chatParticipantCreator":{"comment":"Represents the creator of the group","arguments":{"user_id":"ID of the user that created the group"}},"channelForbidden":{"comment":"Indicates a channel/supergroup we can't access because we were banned, or for some other reason.","arguments":{"flags":"Flags, see TL conditional fields","broadcast":"Is this a channel","megagroup":"Is this a supergroup","id":"Channel ID","access_hash":"Access hash","title":"Title","until_date":"The ban is valid until the specified date"}},"chatParticipants":{"comment":"Group members.","arguments":{"chat_id":"Group identifier","participants":"List of group members","version":"Group version number"}},"chatParticipantAdmin":{"comment":"Chat admin","arguments":{"user_id":"ID of a group member that is admin","inviter_id":"ID of the user that added the member to the group","date":"Date when the user was added"}},"chatParticipantsForbidden":{"comment":"Info on members is unavailable","arguments":{"flags":"Flags, see TL conditional fields","chat_id":"Group ID","self_participant":"Info about the group membership of the current user"}},"chatPhotoEmpty":{"comment":"Group photo is not set.","arguments":{"gigagroup":"Is this a broadcast group?"}},"chatPhoto":{"comment":"Group profile photo.","arguments":{"flags":"Flags, see TL conditional fields","has_video":"Whether the user has an animated profile picture","photo_id":"Photo ID","stripped_thumb":"Stripped thumbnail","dc_id":"DC where this photo is stored"}},"inputDocumentFileLocation":{"comment":"Document location (video, voice, audio, basically every type except photo)","arguments":{"id":"Document ID","access_hash":"access_hash parameter from the {@link RawDocument} constructor","file_reference":"File reference","thumb_size":"Thumbnail size to download the thumbnail"}},"message":{"comment":"A message","arguments":{"flags":"Flags, see TL conditional fields","out":"Is this an outgoing message","mentioned":"Whether we were mentioned in this message","media_unread":"Whether there are unread media attachments in this message","silent":"Whether this is a silent message (no notification triggered)","post":"Whether this is a channel post","from_scheduled":"Whether this is a scheduled message","legacy":"This is a legacy message: it has to be refetched with the new layer","edit_hide":"Whether the message should be shown as not modified to the user, even if an edit date is present","pinned":"Whether this message is pinned","noforwards":"Whether this message is protected and thus cannot be forwarded; clients should also prevent users from saving attached media (i.e. videos should only be streamed, photos should be kept in RAM, et cetera).","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","flags2":"Flags, see TL conditional fields","offline":"If set, the message was sent because of a scheduled action by the message sender, for example, as away, or a greeting service message.","id":"ID of the message","from_id":"ID of the sender of the message","from_boosts_applied":"Supergroups only, contains the number of boosts this user has given the current supergroup, and should be shown in the UI in the header of the message.
Only present for incoming messages from non-anonymous supergroup members that have boosted the supergroup.
Note that this counter should be locally overridden for non-anonymous outgoing messages, according to the current value of {@link RawChannelFull}.boosts_applied, to ensure the value is correct even for messages sent by the current user before a supergroup was boosted (or after a boost has expired or the number of boosts has changed); do not update this value for incoming messages from other users, even if their boosts have changed.","peer_id":"Peer ID, the chat where this message was sent","saved_peer_id":"Messages fetched from a saved messages dialog » will have peer={@link RawInputPeerSelf} and the saved_peer_id flag set to the ID of the saved dialog.
","fwd_from":"Info about forwarded messages","via_bot_id":"ID of the inline bot that generated the message","via_business_bot_id":"Whether the message was sent by the business bot specified in via_bot_id on behalf of the user.","reply_to":"Reply information","date":"Date of the message","message":"The message","media":"Media attachment","reply_markup":"Reply markup (bot/inline keyboards)","entities":"Message entities for styled text","views":"View count for channel posts","forwards":"Forward counter","replies":"Info about post comments (for channels) or message replies (for groups)","edit_date":"Last edit date of this message","post_author":"Name of the author of this message for channel posts (with signatures enabled)","grouped_id":"Multiple media messages sent using {@link messages.RawSendMultiMediaRequest} with the same grouped ID indicate an album or media group","reactions":"Reactions to this message","restriction_reason":"Contains the reason why access to this message must be restricted.","ttl_period":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well.","quick_reply_shortcut_id":"If set, this message is a quick reply shortcut message » (note that quick reply shortcut messages sent to a private chat will not have this field set).","effect":"A message effect that should be played as specified here ».","factcheck":"Represents a fact-check »."}},"messageMediaPhoto":{"comment":"Attached photo.","arguments":{"flags":"Flags, see TL conditional fields","spoiler":"Whether this media should be hidden behind a spoiler warning","photo":"Photo","ttl_seconds":"Time to live in seconds of self-destructing photo"}},"messageMediaGeo":{"comment":"Attached map.","arguments":{"geo":"GeoPoint"}},"messageMediaEmpty":{"comment":"Empty constructor.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messageMediaDocument":{"comment":"Document (video, audio, voice, sticker, any media type except photo)","arguments":{"flags":"Flags, see TL conditional fields","nopremium":"Whether this is a normal sticker, if not set this is a premium sticker and a premium sticker animation must be played.","spoiler":"Whether this media should be hidden behind a spoiler warning","video":"Whether this is a video.","round":"Whether this is a round video.","voice":"Whether this is a voice message.","document":"Attached document","ttl_seconds":"Time to live of self-destructing document"}},"messageMediaWebPage":{"comment":"Preview of webpage","arguments":{"flags":"Flags, see TL conditional fields","force_large_media":"If set, specifies that a large media preview should be used.","force_small_media":"If set, specifies that a small media preview should be used.","manual":"If set, indicates that the URL used for the webpage preview was specified manually using {@link RawInputMediaWebPage}, and may not be related to any of the URLs specified in the message.","safe":"If set, the webpage can be opened directly without user confirmation; otherwise, user confirmation is required, showing the exact URL that will be opened.","webpage":"Webpage preview"}},"messageMediaGame":{"comment":"Telegram game","arguments":{"game":"Game"}},"messageMediaGeoLive":{"comment":"Indicates a live geolocation","arguments":{"flags":"Flags, see TL conditional fields","geo":"Geolocation","heading":"For live locations, a direction in which the location moves, in degrees; 1-360","period":"Validity period of provided geolocation","proximity_notification_radius":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)."}},"messageMediaPoll":{"comment":"Poll","arguments":{"poll":"The poll","results":"The results of the poll"}},"messageMediaContact":{"comment":"Attached contact.","arguments":{"phone_number":"Phone number","first_name":"Contact's first name","last_name":"Contact's last name","vcard":"VCARD of contact","user_id":"User identifier or 0, if the user with the given phone number is not registered"}},"messageMediaStory":{"comment":"Represents a forwarded story or a story mention.","arguments":{"flags":"Flags, see TL conditional fields","via_mention":"If set, indicates that this someone has mentioned us in this story (i.e. by tagging us in the description) or vice versa, we have mentioned the other peer (if the message is outgoing).","peer":"Peer that posted the story.","id":"Story ID","story":"The story itself, if absent fetch it using {@link stories.RawGetStoriesByIDRequest} and the peer/id parameters specified above."}},"messageMediaVenue":{"comment":"Venue","arguments":{"geo":"Geolocation of venue","title":"Venue name","address":"Address","provider":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported","venue_id":"Venue ID in the provider's database","venue_type":"Venue type in the provider's database"}},"messageMediaGiveaway":{"comment":"Contains info about a giveaway, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","only_new_subscribers":"If set, only new subscribers starting from the giveaway creation date will be able to participate to the giveaway.","winners_are_visible":"If set, giveaway winners are public and will be listed in a {@link RawMessageMediaGiveawayResults} message that will be automatically sent to the channel once the giveaway ends.","channels":"The channels that the user must join to participate in the giveaway.","countries_iso2":"If set, only users residing in these countries can participate in the giveaway, (specified as a list of two-letter ISO 3166-1 alpha-2 country codes); otherwise there are no country-based limitations.","prize_description":"Can contain a textual description of additional giveaway prizes.","quantity":"Number of Telegram Premium subscriptions given away.","months":"Duration in months of each Telegram Premium subscription in the giveaway.","stars":"For Telegram Star giveaways, the total number of Telegram Stars being given away.","until_date":"The end date of the giveaway."}},"messageMediaDice":{"comment":"Dice-based animated sticker","arguments":{"value":"Dice value","emoticon":"The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported"}},"messageActionEmpty":{"comment":"Empty constructor.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messageMediaPaidMedia":{"comment":"Paid media, see here » for more info.","arguments":{"stars_amount":"The price of the media in Telegram Stars.","extended_media":"Either the paid-for media, or super low resolution media previews if the media wasn't purchased yet, see here » for more info."}},"messageActionChatCreate":{"comment":"Group created","arguments":{"title":"Group name","users":"List of group members"}},"messageMediaInvoice":{"comment":"Invoice","arguments":{"flags":"Flags, see TL conditional fields","shipping_address_requested":"Whether the shipping address was requested","test":"Whether this is an example invoice","title":"Product name, 1-32 characters","description":"Product description, 1-255 characters","photo":"URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service. People like it better when they see what they are paying for.","receipt_msg_id":"Message ID of receipt: if set, clients should change the text of the first {@link RawKeyboardButtonBuy} button always attached to the {@link RawMessage} to a localized version of the word Receipt","currency":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars.","total_amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","start_param":"Unique bot deep-linking parameter that can be used to generate this invoice","extended_media":"Deprecated"}},"messageActionChatEditTitle":{"comment":"Group name changed.","arguments":{"title":"New group name"}},"messageActionChatEditPhoto":{"comment":"Group profile changed","arguments":{"photo":"New group profile photo"}},"messageActionChatDeletePhoto":{"comment":"Group profile photo removed.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messageActionChatAddUser":{"comment":"New member in the group","arguments":{"users":"Users that were invited to the chat"}},"messageActionChatJoinedByLink":{"comment":"A user joined the chat via an invite link","arguments":{"inviter_id":"ID of the user that created the invite link"}},"messageActionChatDeleteUser":{"comment":"User left the group.","arguments":{"user_id":"Leaving user ID"}},"messageActionChannelMigrateFrom":{"comment":"Indicates the channel was migrated from the specified chat","arguments":{"title":"The old chat title","chat_id":"The old chat ID"}},"messageActionChannelCreate":{"comment":"The channel was created","arguments":{"title":"Original channel/supergroup title"}},"messageActionHistoryClear":{"comment":"Chat history was cleared","arguments":{"gigagroup":"Is this a broadcast group?"}},"messageActionPinMessage":{"comment":"A message was pinned","arguments":{"gigagroup":"Is this a broadcast group?"}},"messageActionGameScore":{"comment":"Someone scored in a game","arguments":{"game_id":"Game ID","score":"Score"}},"messageActionPaymentSentMe":{"comment":"A user just sent a payment to me (a bot)","arguments":{"flags":"Flags, see TL conditional fields","recurring_init":"Whether this is the first payment of a recurring payment we just subscribed to","recurring_used":"Whether this payment is part of a recurring payment","currency":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars.","total_amount":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","payload":"Bot specified invoice payload","info":"Order info provided by the user","shipping_option_id":"Identifier of the shipping option chosen by the user","charge":"Provider payment identifier"}},"messageMediaUnsupported":{"comment":"Current version of the client does not support this media type.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messageActionChatMigrateTo":{"comment":"Indicates the chat was migrated to the specified supergroup","arguments":{"channel_id":"The supergroup it was migrated to"}},"messageActionScreenshotTaken":{"comment":"A screenshot of the chat was taken","arguments":{"gigagroup":"Is this a broadcast group?"}},"messageActionCustomAction":{"comment":"Custom action (most likely not supported by the current layer, an upgrade might be needed)","arguments":{"message":"Action message"}},"messageActionPaymentSent":{"comment":"A payment was sent","arguments":{"flags":"Flags, see TL conditional fields","recurring_init":"Whether this is the first payment of a recurring payment we just subscribed to","recurring_used":"Whether this payment is part of a recurring payment","currency":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars.","total_amount":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","invoice_slug":"An invoice slug taken from an invoice deep link or from the premium_invoice_slug app config parameter »"}},"messageActionPhoneCall":{"comment":"A phone call","arguments":{"flags":"Flags, see TL conditional fields","video":"Is this a video call?","call_id":"Call ID","reason":"If the call has ended, the reason why it ended","duration":"Duration of the call in seconds"}},"messageService":{"comment":"Indicates a service message","arguments":{"flags":"Flags, see TL conditional fields","out":"Whether the message is outgoing","mentioned":"Whether we were mentioned in the message","media_unread":"Whether the message contains unread media","silent":"Whether the message is silent","post":"Whether it's a channel post","legacy":"This is a legacy message: it has to be refetched with the new layer","id":"Message ID","from_id":"ID of the sender of this message","peer_id":"Sender of service message","reply_to":"Reply (thread) information","date":"Message date","action":"Event connected with the service message","ttl_period":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}},"messageActionSecureValuesSentMe":{"comment":"Secure telegram passport values were received","arguments":{"values":"Vector with information about documents and other Telegram Passport elements that were shared with the bot","credentials":"Encrypted credentials required to decrypt the data"}},"messageActionGeoProximityReached":{"comment":"A user of the chat is now in proximity of another user","arguments":{"from_id":"The user or chat that is now in proximity of to_id","to_id":"The user or chat that subscribed to live geolocation proximity alerts","distance":"Distance, in meters (0-100000)"}},"messageActionContactSignUp":{"comment":"A contact just signed up to telegram","arguments":{"gigagroup":"Is this a broadcast group?"}},"messageMediaGiveawayResults":{"comment":"A giveaway with public winners has finished, this constructor contains info about the winners.","arguments":{"flags":"Flags, see TL conditional fields","only_new_subscribers":"If set, only new subscribers starting from the giveaway creation date participated in the giveaway.","refunded":"If set, the giveaway was canceled and was fully refunded.","channel_id":"ID of the channel/supergroup that was automatically boosted by the winners of the giveaway for duration of the Premium subscription.","additional_peers_count":"Number of other channels that participated in the giveaway.","launch_msg_id":"Identifier of the message with the giveaway in channel_id.","winners_count":"Total number of winners in the giveaway.","unclaimed_count":"Number of not-yet-claimed prizes.","winners":"Up to 100 user identifiers of the winners of the giveaway.","months":"Duration in months of each Telegram Premium subscription in the giveaway.","stars":"For Telegram Star giveaways, the total number of Telegram Stars being given away.","prize_description":"Can contain a textual description of additional giveaway prizes.","until_date":"Point in time (UNIX timestamp in seconds) when the winners were selected. May be bigger than winners selection date specified in initial parameters of the giveaway."}},"messageEmpty":{"comment":"Empty constructor, non-existent message.","arguments":{"flags":"Flags, see TL conditional fields","id":"Message identifier","peer_id":"Peer ID, the chat where this message was sent"}},"messageActionBotAllowed":{"comment":"We have given the bot permission to send us direct messages.\n\nThe optional fields specify how did we authorize the bot to send us messages.","arguments":{"flags":"Flags, see TL conditional fields","attach_menu":"We have authorized the bot to send us messages by installing the bot's attachment menu.","from_request":"We have allowed the bot to send us messages using {@link bots.RawAllowSendMessageRequest}.","domain":"We have authorized the bot to send us messages by logging into a website via Telegram Login »; this field contains the domain name of the website on which the user has logged in.","app":"We have authorized the bot to send us messages by opening the specified bot mini app."}},"messageActionChatJoinedByRequest":{"comment":"A user was accepted into the group by an admin","arguments":{"gigagroup":"Is this a broadcast group?"}},"messageActionSetMessagesTTL":{"comment":"The Time-To-Live of messages in this chat was changed.","arguments":{"flags":"Flags, see TL conditional fields","period":"New Time-To-Live of all messages sent in this chat; if 0, autodeletion was disabled.","auto_setting_from":"If set, the chat TTL setting was set not due to a manual change by one of participants, but automatically because one of the participants has the {@link messages.RawSetDefaultHistoryTTLRequest}. For example, when a user writes to us for the first time and we have set a default messages TTL of 1 week, this service message (with auto_setting_from=our_userid) will be emitted before our first message."}},"messageActionInviteToGroupCall":{"comment":"A set of users was invited to the group call","arguments":{"call":"The group call","users":"The invited users"}},"messageActionGiftPremium":{"comment":"Info about a gifted Telegram Premium subscription","arguments":{"flags":"Flags, see TL conditional fields","currency":"Three-letter ISO 4217 currency code","amount":"Price of the gift in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","months":"Duration of the gifted Telegram Premium subscription","crypto_currency":"If the gift was bought using a cryptocurrency, the cryptocurrency name.","crypto_amount":"If the gift was bought using a cryptocurrency, price of the gift in the smallest units of a cryptocurrency."}},"messageActionGroupCallScheduled":{"comment":"A group call was scheduled","arguments":{"call":"The group call","schedule_date":"When is this group call scheduled to start"}},"messageActionTopicEdit":{"comment":"Forum topic information was edited.","arguments":{"flags":"Flags, see TL conditional fields","title":"New topic title.","icon_emoji_id":"ID of the new custom emoji used as topic icon, or if it was removed.","closed":"Whether the topic was opened or closed.","hidden":"Whether the topic was hidden or unhidden (only valid for the \"General\" topic, id=1)."}},"messageActionRequestedPeer":{"comment":"Contains info about one or more peers that the we (the user) shared with the bot after clicking on a {@link RawKeyboardButtonRequestPeer} button (service message sent by the user).","arguments":{"button_id":"button_id contained in the {@link RawKeyboardButtonRequestPeer}","peers":"The shared peers"}},"messageActionSetChatTheme":{"comment":"The chat theme was changed","arguments":{"emoticon":"The emoji that identifies a chat theme"}},"messageActionTopicCreate":{"comment":"A forum topic was created.","arguments":{"flags":"Flags, see TL conditional fields","title":"Topic name.","icon_color":"If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F.","icon_emoji_id":"ID of the custom emoji used as topic icon."}},"messageActionSetChatWallPaper":{"comment":"The wallpaper » of the current chat was changed.","arguments":{"flags":"Flags, see TL conditional fields","same":"If set, indicates the user applied a wallpaper » previously sent by the other user in a {@link RawMessageActionSetChatWallPaper} message.","for_both":"If set, indicates the wallpaper was forcefully applied for both sides, without explicit confirmation from the other side.
If the message is incoming, and we did not like the new wallpaper the other user has chosen for us, we can re-set our previous wallpaper just on our side, by invoking {@link messages.RawSetChatWallPaperRequest}, providing only the revert flag (and obviously the peer parameter).","wallpaper":"New wallpaper"}},"messageActionWebViewDataSent":{"comment":"Data from an opened reply keyboard bot mini app was relayed to the bot that owns it (user side service message).\n\nClients should display a service message with the text Data from the «$text» button was transferred to the bot.","arguments":{"text":"Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app."}},"messageActionGiveawayLaunch":{"comment":"A giveaway was started.","arguments":{"flags":"Flags, see TL conditional fields","stars":"For Telegram Star giveaways, the total number of Telegram Stars being given away."}},"messageActionGiftCode":{"comment":"Contains a Telegram Premium giftcode link.","arguments":{"flags":"Flags, see TL conditional fields","via_giveaway":"If set, this gift code was received from a giveaway » started by a channel/supergroup we're subscribed to.","unclaimed":"If set, the link was not redeemed yet.","boost_peer":"Identifier of the channel/supergroup that created the gift code either directly or through a giveaway: if we import this giftcode link, we will also automatically boost this channel/supergroup.","months":"Duration in months of the gifted Telegram Premium subscription.","slug":"Slug of the Telegram Premium giftcode link","currency":"Three-letter ISO 4217 currency code","amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","crypto_currency":"If set, the gift was made using the specified cryptocurrency.","crypto_amount":"If crypto_currency is set, contains the paid amount, in the smallest units of the cryptocurrency."}},"messageActionGiveawayResults":{"comment":"A giveaway has ended.","arguments":{"flags":"Flags, see TL conditional fields","stars":"If set, this is a Telegram Star giveaway","winners_count":"Number of winners in the giveaway","unclaimed_count":"Number of undistributed prizes"}},"messageActionBoostApply":{"comment":"Some boosts » were applied to the channel or supergroup.","arguments":{"boosts":"Number of applied boosts."}},"messageActionRequestedPeerSentMe":{"comment":"Contains info about one or more peers that the a user shared with the me (the bot) after clicking on a {@link RawKeyboardButtonRequestPeer} button (service message received by the bot).","arguments":{"button_id":"button_id contained in the {@link RawKeyboardButtonRequestPeer}","peers":"Info about the shared peers."}},"messageActionPaymentRefunded":{"comment":"Describes a payment refund (service message received by both users and bots).","arguments":{"flags":"Flags, see TL conditional fields","peer":"Identifier of the peer that returned the funds.","currency":"Currency, XTR for Telegram Stars.","total_amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","payload":"Bot specified invoice payload (only received by bots).","charge":"Provider payment identifier"}},"messageActionPrizeStars":{"comment":"You won some Telegram Stars in a Telegram Star giveaway ».","arguments":{"flags":"Flags, see TL conditional fields","stars":"The number of Telegram Stars you won","giveaway_msg_id":"ID of the message containing the {@link RawMessageMediaGiveaway}"}},"messageActionStarGift":{"comment":"You received a gift, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","name_hidden":"If set, the name of the sender of the gift will be hidden if the destination user decides to display the gift on their profile","saved":"Whether this gift was added to the destination user's profile (may be toggled using {@link payments.RawSaveStarGiftRequest} and fetched using {@link payments.RawGetUserStarGiftsRequest})","converted":"Whether this gift was converted to Telegram Stars and cannot be displayed on the profile anymore.","gift":"Info about the gift","message":"Additional message from the sender of the gift","convert_stars":"The receiver of this gift may convert it to this many Telegram Stars, instead of displaying it on their profile page.
convert_stars will be equal to stars only if the gift was bought using recently bought Telegram Stars, otherwise it will be less than stars."}},"messageActionGiftStars":{"comment":"You gifted or were gifted some Telegram Stars.","arguments":{"flags":"Flags, see TL conditional fields","currency":"Three-letter ISO 4217 currency code","amount":"Price of the gift in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","stars":"Amount of gifted stars","crypto_currency":"If the gift was bought using a cryptocurrency, the cryptocurrency name.","crypto_amount":"If the gift was bought using a cryptocurrency, price of the gift in the smallest units of a cryptocurrency.","transaction_id":"Identifier of the transaction, only visible to the receiver of the gift."}},"dialogFolder":{"comment":"Dialog in folder","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Is this folder pinned","folder":"The folder","peer":"Peer in folder","top_message":"Latest message ID of dialog","unread_muted_peers_count":"Number of unread muted peers in folder","unread_unmuted_peers_count":"Number of unread unmuted peers in folder","unread_muted_messages_count":"Number of unread messages from muted peers in folder","unread_unmuted_messages_count":"Number of unread messages from unmuted peers in folder"}},"dialog":{"comment":"Chat","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Is the dialog pinned","unread_mark":"Whether the chat was manually marked as unread","view_forum_as_messages":"Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
This setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of this flag.","peer":"The chat","top_message":"The latest message ID","read_inbox_max_id":"Position up to which all incoming messages are read.","read_outbox_max_id":"Position up to which all outgoing messages are read.","unread_count":"Number of unread messages","unread_mentions_count":"Number of unread mentions","unread_reactions_count":"Number of unread reactions to messages you sent","notify_settings":"Notification settings","pts":"PTS","draft":"Message draft","folder_id":"Peer folder ID, for more info click here","ttl_period":"Time-to-live of all messages sent in this dialog"}},"photoEmpty":{"comment":"Empty constructor, non-existent photo","arguments":{"id":"Photo identifier"}},"messageActionGroupCall":{"comment":"The group call has ended","arguments":{"flags":"Flags, see TL conditional fields","call":"Group call","duration":"Group call duration"}},"photoSizeEmpty":{"comment":"Empty constructor. Image with this thumbnail is unavailable.","arguments":{"type":"Thumbnail type »"}},"photo":{"comment":"Photo","arguments":{"flags":"Flags, see TL conditional fields","has_stickers":"Whether the photo has mask stickers attached to it","id":"ID","access_hash":"Access hash","file_reference":"file reference","date":"Date of upload","sizes":"Available sizes for download","video_sizes":"For animated profiles, the MPEG4 videos","dc_id":"DC ID to use for download"}},"photoSize":{"comment":"Image description.","arguments":{"type":"Thumbnail type »","w":"Image width","h":"Image height","size":"File size"}},"photoCachedSize":{"comment":"Description of an image and its content.","arguments":{"type":"Thumbnail type","w":"Image width","h":"Image height","bytes":"Binary data, file content"}},"photoSizeProgressive":{"comment":"Progressively encoded photosize","arguments":{"type":"Photosize type »","w":"Photo width","h":"Photo height","sizes":"Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image."}},"geoPoint":{"comment":"GeoPoint.","arguments":{"flags":"Flags, see TL conditional fields","long":"Longitude","lat":"Latitude","access_hash":"Access hash","accuracy_radius":"The estimated horizontal accuracy of the location, in meters; as defined by the sender."}},"geoPointEmpty":{"comment":"Empty constructor.","arguments":{"gigagroup":"Is this a broadcast group?"}},"auth.sentCodeSuccess":{"comment":"The user successfully authorized using future auth tokens","arguments":{"authorization":"Authorization info"}},"auth.sentCode":{"comment":"Contains info about a sent verification code.","arguments":{"flags":"Flags, see TL conditional fields","type":"Phone code type","phone_code_hash":"Phone code hash, to be stored and later re-used with {@link auth.RawSignInRequest}","next_type":"Phone code type that will be sent next, if the phone code is not received within timeout seconds: to send it use {@link auth.RawResendCodeRequest}","timeout":"Timeout for reception of the phone code"}},"auth.authorization":{"comment":"Contains user authorization info.","arguments":{"flags":"Flags, see TL conditional fields","setup_password_required":"Suggests the user to set up a 2-step verification password to be able to log in again","otherwise_relogin_days":"Iff setup_password_required is set and the user declines to set a 2-step verification password, they will be able to log into their account via SMS again only after this many days pass.","tmp_sessions":"Temporary passport sessions","future_auth_token":"A future auth token","user":"Info on authorized user"}},"auth.authorizationSignUpRequired":{"comment":"An account with this phone number doesn't exist on telegram: the user has to enter basic information and sign up","arguments":{"flags":"Flags, see TL conditional fields","terms_of_service":"Telegram's terms of service: the user must read and accept the terms of service before signing up to telegram"}},"messageActionWebViewDataSentMe":{"comment":"Data from an opened reply keyboard bot mini app was relayed to the bot that owns it (bot side service message).","arguments":{"text":"Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app.","data":"Relayed data."}},"inputNotifyPeer":{"comment":"Notifications generated by a certain user or group.","arguments":{"peer":"User or group"}},"messageActionSecureValuesSent":{"comment":"Request for secure telegram passport values was sent","arguments":{"types":"Secure value types"}},"inputNotifyUsers":{"comment":"Notifications generated by all users.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputNotifyChats":{"comment":"Notifications generated by all groups.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputNotifyForumTopic":{"comment":"Notifications generated by a topic in a forum.","arguments":{"peer":"Forum ID","top_msg_id":"Topic ID"}},"inputNotifyBroadcasts":{"comment":"All channels","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPeerNotifySettings":{"comment":"Notification settings.","arguments":{"flags":"Flags, see TL conditional fields","show_previews":"If the text of the message shall be displayed in notification","silent":"Peer was muted?","mute_until":"Date until which all notifications shall be switched off","sound":"Identifier of an audio file to play for notifications.","stories_muted":"Whether story notifications should be disabled.","stories_hide_sender":"Whether the sender name should be displayed in story notifications.","stories_sound":"Identifier of an audio file to play for story notifications."}},"peerNotifySettings":{"comment":"Notification settings.","arguments":{"flags":"Flags, see TL conditional fields","show_previews":"(Ternary value) If set, indicates whether or not to display previews of messages in notifications; otherwise the default behavior should be used.","silent":"(Ternary value) If set, indicates whether to mute or unmute the peer; otherwise the default behavior should be used.","mute_until":"Mute all notifications until this date","ios_sound":"Notification sound for the official iOS application","android_sound":"Notification sound for the official android application","other_sound":"Notification sound for other applications","stories_muted":"Whether story notifications should be disabled.","stories_hide_sender":"Whether the sender name should be displayed in story notifications.","stories_ios_sound":"Sound for story notifications on the official iOS application","stories_android_sound":"Sound for story notifications on the official Android application","stories_other_sound":"Sound for story notifications on other applications"}},"peerSettings":{"comment":"List of actions that are possible when interacting with this user, to be shown as suggested actions in the chat action bar », see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","report_spam":"Whether we can still report the user for spam","add_contact":"Whether we can add the user as contact","block_contact":"Whether we can block the user","share_contact":"Whether we can share the user's contact","need_contacts_exception":"Whether a special exception for contacts is needed","report_geo":"Whether we can report a geo group as irrelevant for this location","autoarchived":"Whether this peer was automatically archived according to {@link RawGlobalPrivacySettings} and can be unarchived","invite_members":"If set, this is a recently created group chat to which new members can be invited","request_chat_broadcast":"This flag is set if request_chat_title and request_chat_date fields are set and the join request » is related to a channel (otherwise if only the request fields are set, the join request » is related to a chat).","business_bot_paused":"This flag is set if both business_bot_id and business_bot_manage_url are set and all connected business bots » were paused in this chat using {@link account.RawToggleConnectedBotPausedRequest}.","business_bot_can_reply":"This flag is set if both business_bot_id and business_bot_manage_url are set and connected business bots » can reply to messages in this chat, as specified by the settings during initial configuration.","geo_distance":"Distance in meters between us and this peer","request_chat_title":"If set, this is a private chat with an administrator of a chat or channel to which the user sent a join request, and this field contains the chat/channel's title.","request_chat_date":"If set, this is a private chat with an administrator of a chat or channel to which the user sent a join request, and this field contains the timestamp when the join request » was sent.","business_bot_id":"Contains the ID of the business bot » managing this chat, used to display info about the bot in the action bar.","business_bot_manage_url":"Contains a deep link », used to open a management menu in the business bot. This flag is set if and only if business_bot_id is set."}},"wallPaper":{"comment":"Represents a wallpaper based on an image.","arguments":{"id":"Identifier","flags":"Flags, see TL conditional fields","creator":"Whether we created this wallpaper","default":"Whether this is the default wallpaper","pattern":"Whether this is a pattern wallpaper »","dark":"Whether this wallpaper should be used in dark mode.","access_hash":"Access hash","slug":"Unique wallpaper ID, used when generating wallpaper links or importing wallpaper links.","document":"The actual wallpaper","settings":"Info on how to generate the wallpaper, according to these instructions »."}},"photoPathSize":{"comment":"Messages with animated stickers can have a compressed svg (< 300 bytes) to show the outline of the sticker before fetching the actual lottie animation.","arguments":{"type":"Always j","bytes":"Compressed SVG path payload, see here for decompression instructions"}},"wallPaperNoFile":{"comment":"Represents a wallpaper only based on colors/gradients.","arguments":{"id":"Wallpaper ID","flags":"Flags, see TL conditional fields","default":"Whether this is the default wallpaper","dark":"Whether this wallpaper should be used in dark mode.","settings":"Info on how to generate the wallpaper."}},"messageActionSuggestProfilePhoto":{"comment":"A new profile picture was suggested using {@link photos.RawUploadContactProfilePhotoRequest}.","arguments":{"photo":"The photo that the user suggested we set as profile picture."}},"inputReportReasonViolence":{"comment":"Report for violence","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputReportReasonPornography":{"comment":"Report for pornography","arguments":{"gigagroup":"Is this a broadcast group?"}},"auth.exportedAuthorization":{"comment":"Data for copying of authorization between data centers.","arguments":{"id":"current user identifier","bytes":"authorizes key"}},"inputReportReasonOther":{"comment":"Other","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputReportReasonChildAbuse":{"comment":"Report for child abuse","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputReportReasonCopyright":{"comment":"Report for copyrighted content","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputReportReasonGeoIrrelevant":{"comment":"Report an irrelevant geo group","arguments":{"gigagroup":"Is this a broadcast group?"}},"channelFull":{"comment":"Full info about a channel, supergroup or gigagroup.\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).","arguments":{"flags":"Flags, see TL conditional fields","can_view_participants":"Can we view the participant list?","can_set_username":"Can we set the channel's username?","can_set_stickers":"Can we {@link channels.RawSetStickersRequest} a stickerpack to the supergroup?","hidden_prehistory":"Is the history before we joined hidden to us?","can_set_location":"Can we set the geolocation of this group (for geogroups)","has_scheduled":"Whether scheduled messages are available","can_view_stats":"Can the user view channel/supergroup statistics","blocked":"Whether any anonymous admin of this supergroup was blocked: if set, you won't receive messages from anonymous group admins in discussion replies via @replies","flags2":"Flags, see TL conditional fields","can_delete_channel":"Can we delete this channel?","antispam":"Whether native antispam functionality is enabled in this supergroup.","participants_hidden":"Whether the participant list is hidden.","translations_disabled":"Whether the real-time chat translation popup should be hidden.","stories_pinned_available":"Whether this user has some pinned stories.","view_forum_as_messages":"Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
This setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of this flag.","restricted_sponsored":"Whether ads on this channel were disabled as specified here » (this flag is only visible to the owner of the channel).","can_view_revenue":"If set, this user can view ad revenue statistics » for this channel.","paid_media_allowed":"Whether the current user can send or forward paid media » to this channel.","can_view_stars_revenue":"If set, this user can view Telegram Star revenue statistics » for this channel.","paid_reactions_available":"If set, users may send paid Telegram Star reactions » to messages of this channel.","id":"ID of the channel","about":"Info about the channel","participants_count":"Number of participants of the channel","admins_count":"Number of channel admins","kicked_count":"Number of users kicked from the channel","banned_count":"Number of users banned from the channel","online_count":"Number of users currently online","read_inbox_max_id":"Position up to which all incoming messages are read.","read_outbox_max_id":"Position up to which all outgoing messages are read.","unread_count":"Count of unread messages","chat_photo":"Channel picture","notify_settings":"Notification settings","exported_invite":"Invite link","bot_info":"Info about bots in the channel/supergroup","migrated_from_chat_id":"The chat ID from which this group was migrated","migrated_from_max_id":"The message ID in the original chat at which this group was migrated","pinned_msg_id":"Message ID of the last pinned message","stickerset":"Associated stickerset","available_min_id":"Identifier of a maximum unavailable message in a channel due to hidden history.","folder_id":"Peer folder ID, for more info click here","linked_chat_id":"ID of the linked discussion chat for channels (and vice versa, the ID of the linked channel for discussion chats).","location":"Location of the geo group","slowmode_seconds":"If specified, users in supergroups will only be able to send one message every slowmode_seconds seconds","slowmode_next_send_date":"Indicates when the user will be allowed to send another message in the supergroup (unixtime)","stats_dc":"If set, specifies the DC to use for fetching channel statistics","pts":"Latest PTS for this channel","call":"Livestream or group call information","ttl_period":"Time-To-Live of messages in this channel or supergroup","pending_suggestions":"A list of suggested actions for the supergroup admin, see here for more info ».","groupcall_default_join_as":"When using {@link phone.RawGetGroupCallJoinAsRequest} to get a list of peers that can be used to join a group call, this field indicates the peer that should be selected by default.","theme_emoticon":"Emoji representing a specific chat theme","requests_pending":"Pending join requests »","recent_requesters":"IDs of users who requested to join recently","default_send_as":"Default peer used for sending messages to this channel","available_reactions":"Allowed message reactions »","reactions_limit":"This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max).","stories":"Channel stories","wallpaper":"Wallpaper","boosts_applied":"The number of boosts the current user has applied to the current supergroup.","boosts_unrestrict":"The number of boosts this supergroup requires to bypass slowmode and other restrictions, see here » for more info.","emojiset":"Custom emoji stickerset associated to the current supergroup, set using {@link channels.RawSetEmojiStickersRequest} after reaching the appropriate boost level, see here » for more info."}},"inputReportReasonIllegalDrugs":{"comment":"Report for illegal drugs","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputReportReasonSpam":{"comment":"Report for spam","arguments":{"gigagroup":"Is this a broadcast group?"}},"importedContact":{"comment":"Successfully imported contact.","arguments":{"user_id":"User identifier","client_id":"The contact's client identifier (passed to one of the InputContact constructors)"}},"contactStatus":{"comment":"Contact status: online / offline.","arguments":{"user_id":"User identifier","status":"Online status"}},"contacts.contacts":{"comment":"The current user's contact list and info on users.","arguments":{"contacts":"Contact list","saved_count":"Number of contacts that were saved successfully","users":"User list"}},"userFull":{"comment":"Extended user info\n\nWhen updating the local peer database », all fields from the newly received constructor take priority over the old constructor cached locally (including by removing fields that aren't set in the new constructor).","arguments":{"flags":"Flags, see TL conditional fields","blocked":"Whether you have blocked this user","phone_calls_available":"Whether this user can make VoIP calls","phone_calls_private":"Whether this user's privacy settings allow you to call them","can_pin_message":"Whether you can pin messages in the chat with this user, you can do this only for a chat with yourself","has_scheduled":"Whether scheduled messages are available","video_calls_available":"Whether the user can receive video calls","voice_messages_forbidden":"Whether this user doesn't allow sending voice messages in a private chat with them","translations_disabled":"Whether the real-time chat translation popup should be hidden.","stories_pinned_available":"Whether this user has some pinned stories.","blocked_my_stories_from":"Whether we've blocked this user, preventing them from seeing our stories ».","wallpaper_overridden":"Whether the other user has chosen a custom wallpaper for us using {@link messages.RawSetChatWallPaperRequest} and the for_both flag, see here » for more info.","contact_require_premium":"If set, we cannot write to this user: subscribe to Telegram Premium to get permission to write to this user.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.new_noncontact_peers_require_premium flag, see here » for more info.","read_dates_private":"If set, we cannot fetch the exact read date of messages we send to this user using {@link messages.RawGetOutboxReadDateRequest}.
The exact read date of messages might still be unavailable for other reasons, see {@link messages.RawGetOutboxReadDateRequest} for more info.
To set this flag for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.hide_read_marks flag.","flags2":"Flags, see TL conditional fields","sponsored_enabled":"Whether ads were re-enabled for the current account (only accessible to the currently logged-in user), see here » for more info.","can_view_revenue":"If set, this user can view ad revenue statistics » for this bot.","id":"User ID","about":"Bio of the user","settings":"Peer settings","personal_photo":"Personal profile photo, to be shown instead of profile_photo.","profile_photo":"Profile photo","fallback_photo":"Fallback profile photo, displayed if no photo is present in profile_photo or personal_photo, due to privacy settings.","notify_settings":"Notification settings","bot_info":"For bots, info about the bot (bot commands, etc)","pinned_msg_id":"Message ID of the last pinned message","common_chats_count":"Chats in common with this user","folder_id":"Peer folder ID, for more info click here","ttl_period":"Time To Live of all messages in this chat; once a message is this many seconds old, it must be deleted.","theme_emoticon":"Emoji associated with chat theme","private_forward_name":"Anonymized text to be shown instead of the user's name on forwarded messages","bot_group_admin_rights":"A suggested set of administrator rights for the bot, to be shown when adding the bot as admin to a group, see here for more info on how to handle them ».","bot_broadcast_admin_rights":"A suggested set of administrator rights for the bot, to be shown when adding the bot as admin to a channel, see here for more info on how to handle them ».","premium_gifts":"Telegram Premium subscriptions gift options","wallpaper":"Wallpaper to use in the private chat with the user.","stories":"Active stories »","business_work_hours":"Telegram Business working hours ».","business_location":"Telegram Business location ».","business_greeting_message":"Telegram Business greeting message ».","business_away_message":"Telegram Business away message ».","business_intro":"Specifies a custom Telegram Business profile introduction ».","birthday":"Contains info about the user's birthday ».","personal_channel_id":"ID of the associated personal channel », that should be shown in the profile page.","personal_channel_message":"ID of the latest message of the associated personal channel », that should be previewed in the profile page.","stargifts_count":"Number of gifts the user has chosen to display on their profile"}},"contacts.importedContacts":{"comment":"Info on successfully imported contacts.","arguments":{"imported":"List of successfully imported contacts","popular_invites":"Popular contacts","retry_contacts":"List of contact ids that could not be imported due to system limitation and will need to be imported at a later date.","users":"List of users"}},"inputReportReasonFake":{"comment":"Report for impersonation","arguments":{"gigagroup":"Is this a broadcast group?"}},"contacts.blocked":{"comment":"Full list of blocked users.","arguments":{"blocked":"List of blocked users","chats":"Blocked chats","users":"List of users"}},"contacts.contactsNotModified":{"comment":"Contact list on the server is the same as the list on the client.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.dialogsSlice":{"comment":"Incomplete list of dialogs with messages and auxiliary data.","arguments":{"count":"Total number of dialogs","dialogs":"List of dialogs","messages":"List of last messages from dialogs","chats":"List of chats mentioned in dialogs","users":"List of users mentioned in messages and chats"}},"photoStrippedSize":{"comment":"A low-resolution compressed JPG payload","arguments":{"type":"Thumbnail type","bytes":"Thumbnail data, see here for more info on decompression »"}},"messages.dialogsNotModified":{"comment":"Dialogs haven't changed","arguments":{"count":"Number of dialogs found server-side by the query"}},"messages.messages":{"comment":"Full list of messages with auxiliary data.","arguments":{"messages":"List of messages","chats":"List of chats mentioned in dialogs","users":"List of users mentioned in messages and chats"}},"contacts.blockedSlice":{"comment":"Incomplete list of blocked users.","arguments":{"count":"Total number of elements in the list","blocked":"List of blocked users","chats":"Blocked chats","users":"List of users"}},"messages.chatFull":{"comment":"Full info about a channel, supergroup, gigagroup or basic group.","arguments":{"full_chat":"Full info","chats":"Mentioned chats","users":"Mentioned users"}},"messages.chatsSlice":{"comment":"Partial list of chats, more would have to be fetched with pagination","arguments":{"count":"Total number of results that were found server-side (not all are included in chats)","chats":"Chats"}},"messages.chats":{"comment":"List of chats with auxiliary data.","arguments":{"chats":"List of chats"}},"inputMessagesFilterEmpty":{"comment":"Filter is absent.","arguments":{"gigagroup":"Is this a broadcast group?"}},"contact":{"comment":"A contact of the current user that is registered in the system.","arguments":{"user_id":"User identifier","mutual":"Current user is in the user's contact list"}},"messages.messagesSlice":{"comment":"Incomplete list of messages and auxiliary data.","arguments":{"flags":"Flags, see TL conditional fields","inexact":"If set, indicates that the results may be inexact","count":"Total number of messages in the list","next_rate":"Rate to use in the offset_rate parameter in the next call to {@link messages.RawSearchGlobalRequest}","offset_id_offset":"Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if the result was fetched using offset_id, and we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}.","messages":"List of messages","chats":"List of chats mentioned in messages","users":"List of users mentioned in messages and chats"}},"inputMessagesFilterPhotoVideo":{"comment":"Filter for messages containing photos or videos.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessagesFilterVideo":{"comment":"Filter for messages containing videos.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessagesFilterGif":{"comment":"Return only messages containing gifs","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.affectedHistory":{"comment":"Affected part of communication history with the user or in a chat.","arguments":{"pts":"Number of events occurred in a text box","pts_count":"Number of affected events","offset":"If a parameter contains positive value, it is necessary to repeat the method call using the given value; during the proceeding of all the history the value itself shall gradually decrease"}},"inputMessagesFilterUrl":{"comment":"Return only messages containing URLs","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessagesFilterMusic":{"comment":"Return only messages containing audio files","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessagesFilterChatPhotos":{"comment":"Return only chat photo changes","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessagesFilterVoice":{"comment":"Return only messages containing voice notes","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessagesFilterRoundVoice":{"comment":"Return only round videos and voice notes","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessagesFilterPhoneCalls":{"comment":"Return only phone calls","arguments":{"flags":"Flags, see TL conditional fields","missed":"Return only missed phone calls"}},"inputMessagesFilterRoundVideo":{"comment":"Return only round videos","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessagesFilterMyMentions":{"comment":"Return only messages where the current user was mentioned.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessagesFilterPhotos":{"comment":"Filter for messages containing photos.","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateNewMessage":{"comment":"New message in a private chat or in a basic group.","arguments":{"message":"Message","pts":"New quantity of actions in a message box","pts_count":"Number of generated events"}},"inputMessagesFilterPinned":{"comment":"Fetch only pinned messages","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessagesFilterContacts":{"comment":"Return only messages containing contacts","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessagesFilterDocument":{"comment":"Filter for messages containing documents.","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateDeleteMessages":{"comment":"Messages were deleted.","arguments":{"messages":"List of identifiers of deleted messages","pts":"New quality of actions in a message box","pts_count":"Number of generated events"}},"updateChatUserTyping":{"comment":"The user is preparing a message in a group; typing, recording, uploading, etc. This update is valid for 6 seconds. If no further updates of this kind are received after 6 seconds, it should be considered that the user stopped doing whatever they were doing","arguments":{"chat_id":"Group id","from_id":"Peer that started typing (can be the chat itself, in case of anonymous admins).","action":"Type of action"}},"updateUserTyping":{"comment":"The user is preparing a message; typing, recording, uploading, etc. This update is valid for 6 seconds. If no further updates of this kind are received after 6 seconds, it should be considered that the user stopped doing whatever they were doing","arguments":{"user_id":"User id","action":"Action type"}},"updateChatParticipants":{"comment":"Composition of chat participants changed.","arguments":{"participants":"Updated chat participants"}},"updateUserName":{"comment":"Changes the user's first name, last name and username.","arguments":{"user_id":"User identifier","first_name":"New first name. Corresponds to the new value of real_first_name field of the {@link RawUserFull} constructor.","last_name":"New last name. Corresponds to the new value of real_last_name field of the {@link RawUserFull} constructor.","usernames":"Usernames."}},"updateNewAuthorization":{"comment":"A new session logged into the current user's account through an unknown device.","arguments":{"flags":"Flags, see TL conditional fields","unconfirmed":"Whether the session is unconfirmed, see here » for more info.","hash":"Hash used for caching, for more info click here","date":"Authorization date","device":"Name of device, for example Android","location":"Location, for example USA, NY (IP=1.2.3.4)"}},"updateNewEncryptedMessage":{"comment":"New encrypted message.","arguments":{"message":"Message","qts":"New qts value, see updates » for more info."}},"updateMessageID":{"comment":"Sent message with random_id client identifier was assigned an identifier.","arguments":{"id":"id identifier of a respective Message","random_id":"Previously transferred client random_id identifier"}},"messages.dialogs":{"comment":"Full list of chats with messages and auxiliary data.","arguments":{"dialogs":"List of chats","messages":"List of last messages from each chat","chats":"List of groups mentioned in the chats","users":"List of users mentioned in messages and groups"}},"messages.messagesNotModified":{"comment":"No new messages matching the query were found","arguments":{"count":"Number of results found server-side by the given query"}},"updateEncryption":{"comment":"Change of state in an encrypted chat.","arguments":{"chat":"Encrypted chat","date":"Date of change"}},"updateEncryptedMessagesRead":{"comment":"Communication history in an encrypted chat was marked as read.","arguments":{"chat_id":"Chat ID","max_date":"Maximum value of data for read messages","date":"Time when messages were read"}},"updateChatParticipantAdd":{"comment":"New group member.","arguments":{"chat_id":"Group ID","user_id":"ID of the new member","inviter_id":"ID of the user, who added member to the group","date":"When was the participant added","version":"Chat version number"}},"messages.channelMessages":{"comment":"Channel messages","arguments":{"flags":"Flags, see TL conditional fields","inexact":"If set, returned results may be inexact","pts":"Event count after generation","count":"Total number of results were found server-side (may not be all included here)","offset_id_offset":"Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if the result was fetched using offset_id, and we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}.","messages":"Found messages","topics":"Forum topic information","chats":"Chats","users":"Users"}},"updateChatParticipantDelete":{"comment":"A member has left the group.","arguments":{"chat_id":"Group ID","user_id":"ID of the user","version":"Used in basic groups to reorder updates and make sure that all of them was received."}},"updateDcOptions":{"comment":"Changes in the data center configuration options.","arguments":{"dc_options":"New connection options"}},"updateEncryptedChatTyping":{"comment":"Interlocutor is typing a message in an encrypted chat. Update period is 6 second. If upon this time there is no repeated update, it shall be considered that the interlocutor stopped typing.","arguments":{"chat_id":"Chat ID"}},"updateNotifySettings":{"comment":"Changes in notification settings.","arguments":{"peer":"Notification source","notify_settings":"New notification settings"}},"updateReadHistoryInbox":{"comment":"Incoming messages were read","arguments":{"flags":"Flags, see TL conditional fields","folder_id":"Peer folder ID, for more info click here","peer":"Peer","max_id":"Maximum ID of messages read","still_unread_count":"Number of messages that are still unread","pts":"Event count after generation","pts_count":"Number of events that were generated"}},"updateChannelTooLong":{"comment":"There are new updates in the specified channel, the client must fetch them.
\nIf the difference is too long or if the channel isn't currently in the states, start fetching from the specified pts.","arguments":{"flags":"Flags, see TL conditional fields","channel_id":"The channel","pts":"The PTS."}},"updateServiceNotification":{"comment":"A service message for the user.\n\nThe app must show the message to the user upon receiving this update. In case the popup parameter was passed, the text message must be displayed in a popup alert immediately upon receipt. It is recommended to handle the text as you would an ordinary message in terms of highlighting links, etc. The message must also be stored locally as part of the message history with the user id 777000 (Telegram Notifications).","arguments":{"flags":"Flags, see TL conditional fields","popup":"If set, the message must be displayed in a popup.","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","inbox_date":"When was the notification received
The message must also be stored locally as part of the message history with the user id 777000 (Telegram Notifications).","type":"String, identical in format and contents to the type field in API errors. Describes type of service message. It is acceptable to ignore repeated messages of the same type within a short period of time (15 minutes).","message":"Message text","media":"Media content (optional)","entities":"Message entities for styled text"}},"updateUserPhone":{"comment":"A user's phone number was changed","arguments":{"user_id":"User ID","phone":"New phone number"}},"updateWebPage":{"comment":"An instant view webpage preview was generated","arguments":{"webpage":"Webpage preview","pts":"Event count after generation","pts_count":"Number of events that were generated"}},"updateChannel":{"comment":"Channel/supergroup ({@link RawChannel} and/or {@link RawChannelFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawChannel}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawChannelFull}) must be invalidated for channel_id when receiving this update.","arguments":{"channel_id":"Channel ID"}},"inputMessagesFilterGeo":{"comment":"Return only messages containing geolocations","arguments":{"gigagroup":"Is this a broadcast group?"}},"updatePrivacy":{"comment":"Privacy rules were changed","arguments":{"key":"Peers to which the privacy rules apply","rules":"New privacy rules"}},"updateNewChannelMessage":{"comment":"A new message was sent in a channel/supergroup","arguments":{"message":"New message","pts":"Event count after generation","pts_count":"Number of events that were generated"}},"updateReadMessagesContents":{"comment":"Contents of messages in the common message box were read","arguments":{"flags":"Flags, see TL conditional fields","messages":"IDs of read messages","pts":"Event count after generation","pts_count":"Number of events that were generated","date":"When was the last message in messages marked as read."}},"updateDeleteChannelMessages":{"comment":"Some messages in a supergroup/channel were deleted","arguments":{"channel_id":"Channel ID","messages":"IDs of messages that were deleted","pts":"Event count after generation","pts_count":"Number of events that were generated"}},"updateStickerSetsOrder":{"comment":"The order of stickersets was changed","arguments":{"flags":"Flags, see TL conditional fields","masks":"Whether the updated stickers are mask stickers","emojis":"Whether the updated stickers are custom emoji stickers","order":"New sticker order by sticker ID"}},"updateChatParticipantAdmin":{"comment":"Admin permissions of a user in a basic group were changed","arguments":{"chat_id":"Chat ID","user_id":"ID of the (de)admined user","is_admin":"Whether the user was rendered admin","version":"Used in basic groups to reorder updates and make sure that all of them was received."}},"updateSavedGifs":{"comment":"The saved gif list has changed, the client should refetch it using {@link messages.RawGetSavedGifsRequest}","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateNewStickerSet":{"comment":"A new stickerset was installed","arguments":{"stickerset":"The installed stickerset"}},"updateChannelMessageViews":{"comment":"The view counter of a message in a channel has changed","arguments":{"channel_id":"Channel ID","id":"ID of the message","views":"New view counter"}},"inputPeerUserFromMessage":{"comment":"Defines a min user that was seen in a certain message of a certain chat.","arguments":{"peer":"The chat where the user was seen","msg_id":"The message ID","user_id":"The identifier of the user that was seen"}},"updateBotInlineSend":{"comment":"The result of an inline query that was chosen by a user and sent to their chat partner. Please see our documentation on the feedback collecting for details on how to enable these updates for your bot.","arguments":{"flags":"Flags, see TL conditional fields","user_id":"The user that chose the result","query":"The query that was used to obtain the result","geo":"Optional. Sender location, only for bots that require user location","id":"The unique identifier for the result that was chosen","msg_id":"Identifier of the sent inline message. Available only if there is an inline keyboard attached to the message. Will be also received in callback queries and can be used to edit the message."}},"updateBotInlineQuery":{"comment":"An incoming inline query","arguments":{"flags":"Flags, see TL conditional fields","query_id":"Query ID","user_id":"User that sent the query","query":"Text of query","geo":"Attached geolocation","peer_type":"Type of the chat from which the inline query was sent.","offset":"Offset to navigate through results"}},"updateEditChannelMessage":{"comment":"A message was edited in a channel/supergroup","arguments":{"message":"The new message","pts":"Event count after generation","pts_count":"Number of events that were generated"}},"updateReadChannelInbox":{"comment":"Incoming messages in a channel/supergroup were read","arguments":{"flags":"Flags, see TL conditional fields","folder_id":"Peer folder ID, for more info click here","channel_id":"Channel/supergroup ID","max_id":"Position up to which all incoming messages are read.","still_unread_count":"Count of messages weren't read yet","pts":"Event count after generation"}},"updateBotCallbackQuery":{"comment":"A callback button was pressed, and the button data was sent to the bot that created the button","arguments":{"flags":"Flags, see TL conditional fields","query_id":"Query ID","user_id":"ID of the user that pressed the button","peer":"Chat where the inline keyboard was sent","msg_id":"Message ID","chat_instance":"Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games.","data":"Callback data","game_short_name":"Short name of a Game to be returned, serves as the unique identifier for the game"}},"updateStickerSets":{"comment":"Installed stickersets have changed, the client should refetch them as described in the docs.","arguments":{"flags":"Flags, see TL conditional fields","masks":"Whether mask stickersets have changed","emojis":"Whether the list of installed custom emoji stickersets has changed"}},"updateReadChannelOutbox":{"comment":"Outgoing messages in a channel/supergroup were read","arguments":{"channel_id":"Channel/supergroup ID","max_id":"Position up to which all outgoing messages are read."}},"updateEditMessage":{"comment":"A message was edited","arguments":{"message":"The new edited message","pts":"PTS","pts_count":"PTS count"}},"updateDraftMessage":{"comment":"Notifies a change of a message draft.","arguments":{"flags":"Flags, see TL conditional fields","peer":"The peer to which the draft is associated","top_msg_id":"ID of the forum topic to which the draft is associated","draft":"The draft"}},"updatePtsChanged":{"comment":"Common message box sequence PTS has changed, state has to be refetched using updates.getState","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateReadHistoryOutbox":{"comment":"Outgoing messages were read","arguments":{"peer":"Peer","max_id":"Maximum ID of read outgoing messages","pts":"Event count after generation","pts_count":"Number of events that were generated"}},"updateBotWebhookJSON":{"comment":"A new incoming event; for bots only","arguments":{"data":"The event"}},"updateConfig":{"comment":"The server-side configuration has changed; the client should re-fetch the config using {@link help.RawGetConfigRequest} and {@link help.RawGetAppConfigRequest}.","arguments":{"gigagroup":"Is this a broadcast group?"}},"updatePhoneCall":{"comment":"An incoming phone call","arguments":{"phone_call":"Phone call"}},"updateBotPrecheckoutQuery":{"comment":"This object contains information about an incoming pre-checkout query.","arguments":{"flags":"Flags, see TL conditional fields","query_id":"Unique query identifier","user_id":"User who sent the query","payload":"Bot specified invoice payload","info":"Order info provided by the user","shipping_option_id":"Identifier of the shipping option chosen by the user","currency":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars.","total_amount":"Total amount in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}},"updateLangPackTooLong":{"comment":"A language pack has changed, the client should manually fetch the changed strings using {@link langpack.RawGetDifferenceRequest}","arguments":{"lang_code":"Language code"}},"updateDialogPinned":{"comment":"A dialog was pinned/unpinned","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Whether the dialog was pinned","folder_id":"Peer folder ID, for more info click here","peer":"The dialog"}},"updatePinnedDialogs":{"comment":"Pinned dialogs were updated","arguments":{"flags":"Flags, see TL conditional fields","folder_id":"Peer folder ID, for more info click here","order":"New order of pinned dialogs"}},"updateBotWebhookJSONQuery":{"comment":"A new incoming query; for bots only","arguments":{"query_id":"Query identifier","data":"Query data","timeout":"Query timeout"}},"updateFavedStickers":{"comment":"The list of favorited stickers was changed, the client should call {@link messages.RawGetFavedStickersRequest} to refetch the new list","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateBotShippingQuery":{"comment":"This object contains information about an incoming shipping query.","arguments":{"query_id":"Unique query identifier","user_id":"User who sent the query","payload":"Bot specified invoice payload","shipping_address":"User specified shipping address"}},"updateContactsReset":{"comment":"All contacts were deleted","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateUserStatus":{"comment":"Contact status update.","arguments":{"user_id":"User identifier","status":"New status"}},"updateChannelAvailableMessages":{"comment":"The history of a channel/supergroup was hidden.","arguments":{"channel_id":"Channel/supergroup ID","available_min_id":"Identifier of a maximum unavailable message in a channel due to hidden history."}},"updateDialogUnreadMark":{"comment":"The manual unread mark of a chat was changed","arguments":{"flags":"Flags, see TL conditional fields","unread":"Was the chat marked or unmarked as read","peer":"The dialog"}},"updateMessagePoll":{"comment":"The results of a poll have changed","arguments":{"flags":"Flags, see TL conditional fields","poll_id":"Poll ID","poll":"If the server knows the client hasn't cached this poll yet, the poll itself","results":"New poll results"}},"updateFolderPeers":{"comment":"The peer list of a peer folder was updated","arguments":{"folder_peers":"New peer list","pts":"Event count after generation","pts_count":"Number of events that were generated"}},"updateChannelReadMessagesContents":{"comment":"The specified channel/supergroup messages were read","arguments":{"flags":"Flags, see TL conditional fields","channel_id":"Channel/supergroup ID","top_msg_id":"Forum topic ID.","messages":"IDs of messages that were read"}},"updateChatDefaultBannedRights":{"comment":"Default banned rights in a normal chat were updated","arguments":{"peer":"The chat","default_banned_rights":"New default banned rights","version":"Version"}},"updatePeerSettings":{"comment":"Settings of a certain peer have changed","arguments":{"peer":"The peer","settings":"Associated peer settings"}},"inputReportReasonPersonalDetails":{"comment":"Report for divulgation of personal details","arguments":{"gigagroup":"Is this a broadcast group?"}},"updatePeerLocated":{"comment":"List of peers near you was updated","arguments":{"peers":"Geolocated peer list update"}},"updateNewScheduledMessage":{"comment":"A message was added to the schedule queue of a chat","arguments":{"message":"Message"}},"updateGeoLiveViewed":{"comment":"Live geo position message was viewed","arguments":{"peer":"The user that viewed the live geo position","msg_id":"Message ID of geo position message"}},"updateLoginToken":{"comment":"A login token (for login via QR code) was accepted.","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateReadFeaturedStickers":{"comment":"Some featured stickers were marked as read","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateDeleteScheduledMessages":{"comment":"Some scheduled messages were deleted from the schedule queue of a chat","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer","messages":"Deleted scheduled messages"}},"updateChannelWebPage":{"comment":"A webpage preview of a link in a channel/supergroup message was generated","arguments":{"channel_id":"Channel/supergroup ID","webpage":"Generated webpage preview","pts":"Event count after generation","pts_count":"Number of events that were generated"}},"updateRecentStickers":{"comment":"The recent sticker list was updated","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateChannelMessageForwards":{"comment":"The forward counter of a message in a channel has changed","arguments":{"channel_id":"Channel ID","id":"ID of the message","forwards":"New forward counter"}},"updatePhoneCallSignalingData":{"comment":"Incoming phone call signaling payload","arguments":{"phone_call_id":"Phone call ID","data":"Signaling payload"}},"updateDialogFilter":{"comment":"A new folder was added","arguments":{"flags":"Flags, see TL conditional fields","id":"Folder ID","filter":"Folder info"}},"updateReadChannelDiscussionInbox":{"comment":"Incoming comments in a discussion thread were marked as read","arguments":{"flags":"Flags, see TL conditional fields","channel_id":"Discussion group ID","top_msg_id":"ID of the group message that started the thread (message in linked discussion group)","read_max_id":"Message ID of latest read incoming message for this thread","broadcast_id":"If set, contains the ID of the channel that contains the post that started the comment thread in the discussion group (channel_id)","broadcast_post":"If set, contains the ID of the channel post that started the comment thread"}},"updatePeerBlocked":{"comment":"We blocked a peer, see here » for more info on blocklists.","arguments":{"flags":"Flags, see TL conditional fields","blocked":"Whether the peer was blocked or unblocked","blocked_my_stories_from":"Whether the peer was added/removed to/from the story blocklist; if not set, this update affects the main blocklist, see here » for more info.","peer_id":"The (un)blocked peer"}},"updateInlineBotCallbackQuery":{"comment":"This notification is received by bots when a button is pressed","arguments":{"flags":"Flags, see TL conditional fields","query_id":"Query ID","user_id":"ID of the user that pressed the button","msg_id":"ID of the inline message with the button","chat_instance":"Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games.","data":"Data associated with the callback button. Be aware that a bad client can send arbitrary data in this field.","game_short_name":"Short name of a Game to be returned, serves as the unique identifier for the game"}},"updateDialogFilters":{"comment":"Clients should update folder info","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateChannelUserTyping":{"comment":"A user is typing in a supergroup, channel or message thread","arguments":{"flags":"Flags, see TL conditional fields","channel_id":"Channel ID","top_msg_id":"Thread ID","from_id":"The peer that is typing","action":"Whether the user is typing, sending a media or doing something else"}},"updatePinnedMessages":{"comment":"Some messages were pinned in a chat","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Whether the messages were pinned or unpinned","peer":"Peer","messages":"Message IDs","pts":"Event count after generation","pts_count":"Number of events that were generated"}},"updateReadChannelDiscussionOutbox":{"comment":"Outgoing comments in a discussion thread were marked as read","arguments":{"channel_id":"Supergroup ID","top_msg_id":"ID of the group message that started the thread","read_max_id":"Message ID of latest read outgoing message for this thread"}},"updateGroupCallParticipants":{"comment":"The participant list of a certain group call has changed","arguments":{"call":"Group call","participants":"New participant list","version":"Version"}},"updateLangPack":{"comment":"Language pack updated","arguments":{"difference":"Changed strings"}},"updatePeerHistoryTTL":{"comment":"The Time-To-Live for messages sent by the current user in a specific chat has changed","arguments":{"flags":"Flags, see TL conditional fields","peer":"The chat","ttl_period":"The new Time-To-Live"}},"updateGroupCall":{"comment":"A new groupcall was started","arguments":{"chat_id":"The channel/supergroup where this group call or livestream takes place","call":"Info about the group call or livestream"}},"updateChat":{"comment":"Chat ({@link RawChat} and/or {@link RawChatFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawChat}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawChatFull}) must be invalidated for chat_id when receiving this update.","arguments":{"chat_id":"Chat ID"}},"updateBotCommands":{"comment":"The command set of a certain bot in a certain chat has changed.","arguments":{"peer":"The affected chat","bot_id":"ID of the bot that changed its command set","commands":"New bot commands"}},"updateChatParticipant":{"comment":"A user has joined or left a specific chat","arguments":{"flags":"Flags, see TL conditional fields","chat_id":"Chat ID","date":"When did this event occur","actor_id":"User that triggered the change (inviter, admin that kicked the user, or the even the user_id itself)","user_id":"User that was affected by the change","prev_participant":"Previous participant info (empty if this participant just joined)","new_participant":"New participant info (empty if this participant just left)","invite":"The invite that was used to join the group","qts":"New qts value, see updates » for more info."}},"updateGroupCallConnection":{"comment":"New WebRTC parameters","arguments":{"flags":"Flags, see TL conditional fields","presentation":"Are these parameters related to the screen capture session currently in progress?","params":"WebRTC parameters"}},"updateMessageReactions":{"comment":"New message reactions » are available","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer","msg_id":"Message ID","top_msg_id":"Forum topic ID","reactions":"Reactions"}},"updateDialogFilterOrder":{"comment":"New folder order","arguments":{"order":"Ordered folder IDs"}},"updatePendingJoinRequests":{"comment":"Someone has requested to join a chat or channel","arguments":{"peer":"Chat or channel","requests_pending":"Number of pending join requests » for the chat or channel","recent_requesters":"IDs of users that have recently requested to join"}},"updateBotChatInviteRequester":{"comment":"Someone has requested to join a chat or channel (bots only, users will receive an {@link RawUpdatePendingJoinRequests}, instead)","arguments":{"peer":"The chat or channel in question","date":"When was the join request » made","user_id":"The user ID that is asking to join the chat or channel","about":"Bio of the user","invite":"Chat invite link that was used by the user to send the join request »","qts":"QTS event sequence identifier"}},"updateWebViewResultSent":{"comment":"Indicates to a bot that a webview was closed and an inline message was sent on behalf of the user using {@link messages.RawSendWebViewResultMessageRequest}","arguments":{"query_id":"Web app interaction ID"}},"updateAttachMenuBots":{"comment":"The list of installed attachment menu entries » has changed, use {@link messages.RawGetAttachMenuBotsRequest} to fetch the updated list.","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateChannelParticipant":{"comment":"A participant has left, joined, was banned or admined in a channel or supergroup.","arguments":{"flags":"Flags, see TL conditional fields","via_chatlist":"Whether the participant joined using a chat folder deep link ».","channel_id":"Channel ID","date":"Date of the event","actor_id":"User that triggered the change (inviter, admin that kicked the user, or the even the user_id itself)","user_id":"User that was affected by the change","prev_participant":"Previous participant status","new_participant":"New participant status","invite":"Chat invite used to join the channel/supergroup","qts":"New qts value, see updates » for more info."}},"updateSavedRingtones":{"comment":"The list of saved notification sounds has changed, use {@link account.RawGetSavedRingtonesRequest} to fetch the new list.","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateBotMenuButton":{"comment":"The menu button behavior for the specified bot has changed","arguments":{"bot_id":"Bot ID","button":"New menu button"}},"updateMessagePollVote":{"comment":"A specific peer has voted in a poll","arguments":{"poll_id":"Poll ID","peer":"The peer that voted in the poll","options":"Chosen option(s)","qts":"New qts value, see updates » for more info."}},"updateTranscribedAudio":{"comment":"A pending voice message transcription » initiated with {@link messages.RawTranscribeAudioRequest} was updated.","arguments":{"flags":"Flags, see TL conditional fields","pending":"Whether this transcription is still pending and further {@link RawUpdateTranscribedAudio} about it will be sent in the future.","peer":"Peer of the transcribed message","msg_id":"Transcribed message ID","transcription_id":"Transcription ID","text":"Transcribed text"}},"updateReadFeaturedEmojiStickers":{"comment":"Some featured custom emoji stickers were marked as read","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateUserEmojiStatus":{"comment":"The emoji status of a certain user has changed","arguments":{"user_id":"User ID","emoji_status":"New emoji status"}},"updateBotStopped":{"comment":"A bot was stopped or re-started.","arguments":{"user_id":"The user ID","date":"When did this action occur","stopped":"Whether the bot was stopped or started","qts":"New qts value, see updates » for more info."}},"updateMoveStickerSetToTop":{"comment":"A stickerset was just moved to top, see here for more info »","arguments":{"flags":"Flags, see TL conditional fields","masks":"This update is referring to a mask stickerset","emojis":"This update is referring to a custom emoji stickerset","stickerset":"Stickerset ID"}},"updateChannelPinnedTopics":{"comment":"The pinned topics of a forum have changed.","arguments":{"flags":"Flags, see TL conditional fields","channel_id":"Forum ID.","order":"Ordered list containing the IDs of all pinned topics."}},"updateReadStories":{"comment":"Stories of a specific peer were marked as read.","arguments":{"peer":"The peer","max_id":"ID of the last story that was marked as read"}},"updateStoriesStealthMode":{"comment":"Indicates that stories stealth mode was activated.","arguments":{"stealth_mode":"Information about the current stealth mode session."}},"updateMessageExtendedMedia":{"comment":"You bought a paid media »: this update contains the revealed media.","arguments":{"peer":"Peer where the paid media was posted","msg_id":"ID of the message containing the paid media","extended_media":"Revealed media, contains only {@link RawMessageExtendedMedia} constructors."}},"updateStoryID":{"comment":"A story was successfully uploaded.\n\nOnce a story is successfully uploaded, an {@link RawUpdateStoryID} will be returned, indicating the story ID (id) that was attributed to the story (like for messages, random_id indicates the random_id that was passed to {@link stories.RawSendStoryRequest}: this way, you can tell which story was assigned a specific id by checking which {@link stories.RawSendStoryRequest} call has the returned random_id).","arguments":{"id":"The id that was attributed to the story.","random_id":"The random_id that was passed to {@link stories.RawSendStoryRequest}."}},"updateBotChatBoost":{"comment":"A channel/supergroup boost has changed (bots only)","arguments":{"peer":"Channel","boost":"New boost information","qts":"QTS event sequence identifier"}},"updateAutoSaveSettings":{"comment":"Media autosave settings have changed and must be refetched using {@link account.RawGetAutoSaveSettingsRequest}.","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateChannelViewForumAsMessages":{"comment":"Users may also choose to display messages from all topics as if they were sent to a normal group, using a \"View as messages\" setting in the local client.
\nThis setting only affects the current account, and is synced to other logged in sessions using the {@link channels.RawToggleViewForumAsMessagesRequest} method; invoking this method will update the value of the view_forum_as_messages flag of {@link RawChannelFull} or {@link RawDialog} and emit an {@link RawUpdateChannelViewForumAsMessages}.","arguments":{"channel_id":"The forum ID","enabled":"The new value of the toggle."}},"updateSentStoryReaction":{"comment":"Indicates we reacted to a story ».","arguments":{"peer":"The peer that sent the story","story_id":"ID of the story we reacted to","reaction":"The reaction that was sent"}},"updateStory":{"comment":"A new story was posted.","arguments":{"peer":"ID of the poster.","story":"The story that was posted."}},"updateRecentEmojiStatuses":{"comment":"The list of recent emoji statuses has changed","arguments":{"gigagroup":"Is this a broadcast group?"}},"updatePinnedChannelMessages":{"comment":"Messages were pinned/unpinned in a channel/supergroup","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Whether the messages were pinned or unpinned","channel_id":"Channel ID","messages":"Messages","pts":"Event count after generation","pts_count":"Number of events that were generated"}},"updateTheme":{"comment":"A cloud theme was updated","arguments":{"theme":"Theme"}},"updatePeerWallpaper":{"comment":"The wallpaper » of a given peer has changed.","arguments":{"flags":"Flags, see TL conditional fields","wallpaper_overridden":"Whether the other user has chosen a custom wallpaper for us using {@link messages.RawSetChatWallPaperRequest} and the for_both flag, see here » for more info.","peer":"The peer where the wallpaper has changed.","wallpaper":"The new wallpaper, if none the wallpaper was removed and the default wallpaper should be used."}},"updatePinnedSavedDialogs":{"comment":"Pinned saved dialogs » were updated","arguments":{"flags":"Flags, see TL conditional fields","order":"New order of pinned saved dialogs"}},"updateSavedDialogPinned":{"comment":"A saved message dialog was pinned/unpinned","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Whether the dialog was pinned","peer":"The dialog"}},"updateBotMessageReactions":{"comment":"Bots only: the number of reactions on a message with anonymous reactions has changed.","arguments":{"peer":"Peer of the reacted-to message.","msg_id":"ID of the reacted-to message.","date":"Date of the change.","reactions":"New reaction counters.","qts":"QTS event sequence identifier"}},"updateSmsJob":{"comment":"A new SMS job was received","arguments":{"job_id":"SMS job ID"}},"updateDeleteQuickReply":{"comment":"A quick reply shortcut » was deleted. This will not emit {@link RawUpdateDeleteQuickReplyMessages} updates, even if all the messages in the shortcut are also deleted by this update.","arguments":{"shortcut_id":"ID of the quick reply shortcut that was deleted."}},"updateBotMessageReaction":{"comment":"Bots only: a user has changed their reactions on a message with public reactions.","arguments":{"peer":"Peer of the reacted-to message.","msg_id":"ID of the reacted-to message.","date":"Date of the change.","actor":"The user that (un)reacted to the message.","old_reactions":"Old reactions","new_reactions":"New reactions","qts":"QTS event sequence identifier"}},"updateSavedReactionTags":{"comment":"The list of reaction tag » names assigned by the user has changed and should be refetched using {@link messages.RawGetSavedReactionTagsRequest}.","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateNewQuickReply":{"comment":"A new quick reply shortcut » was created.","arguments":{"quick_reply":"Quick reply shortcut."}},"updateQuickReplyMessage":{"comment":"A new message was added to a quick reply shortcut ».","arguments":{"message":"The message that was added (the {@link RawMessage}.quick_reply_shortcut_id field will contain the shortcut ID)."}},"updateDeleteQuickReplyMessages":{"comment":"One or more messages in a quick reply shortcut » were deleted.","arguments":{"shortcut_id":"Quick reply shortcut ID.","messages":"IDs of the deleted messages."}},"updateChannelPinnedTopic":{"comment":"A forum topic » was pinned or unpinned.","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Whether the topic was pinned or unpinned","channel_id":"The forum ID","topic_id":"The topic ID"}},"updateBotBusinessConnect":{"comment":"Connecting or disconnecting a business bot or changing the connection settings will emit an {@link RawUpdateBotBusinessConnect} update to the bot, with the new settings and a connection_id that will be used by the bot to handle updates from and send messages as the user.","arguments":{"connection":"Business connection settings","qts":"New qts value, see updates » for more info."}},"updateBotNewBusinessMessage":{"comment":"A message was received via a connected business chat ».","arguments":{"flags":"Flags, see TL conditional fields","connection_id":"Connection ID.","message":"New message.","reply_to_message":"The message that message is replying to.","qts":"New qts value, see updates » for more info."}},"updateBotDeleteBusinessMessage":{"comment":"A message was deleted in a connected business chat ».","arguments":{"connection_id":"Business connection ID.","peer":"Peer where the messages were deleted.","messages":"IDs of the messages that were deleted.","qts":"New qts value, see updates » for more info."}},"updateQuickReplies":{"comment":"Info about or the order of quick reply shortcuts » was changed.","arguments":{"quick_replies":"New quick reply shortcut order and information."}},"updateBotPurchasedPaidMedia":{"comment":"Bots only: a user has purchased a paid media.","arguments":{"user_id":"The user that bought the media","qts":"New qts value, see updates » for more info."}},"updateStarsRevenueStatus":{"comment":"The Telegram Star balance of a channel/bot we own has changed ».","arguments":{"peer":"Channel/bot","status":"New Telegram Star balance."}},"updates.state":{"comment":"Updates state.","arguments":{"pts":"Number of events occurred in a text box","qts":"Position in a sequence of updates in secret chats. For further details refer to article secret chats","date":"Date of condition","seq":"Number of sent updates","unread_count":"Number of unread messages"}},"updateUser":{"comment":"User ({@link RawUser} and/or {@link RawUserFull}) information was updated.\n\nThis update can only be received through getDifference or in {@link RawUpdates}/{@link RawUpdatesCombined} constructors, so it will always come bundled with the updated {@link RawUser}, that should be applied as usual », without re-fetching the info manually.\n\nHowever, full peer information will not come bundled in updates, so the full peer cache ({@link RawUserFull}) must be invalidated for user_id when receiving this update.","arguments":{"user_id":"User ID"}},"updates.differenceSlice":{"comment":"Incomplete list of occurred events.","arguments":{"new_messages":"List of new messages","new_encrypted_messages":"New messages from the encrypted event sequence","other_updates":"List of updates","chats":"List of chats mentioned in events","users":"List of users mentioned in events","intermediate_state":"Intermediary state"}},"updateBroadcastRevenueTransactions":{"comment":"A new channel ad revenue transaction was made, see here » for more info.","arguments":{"peer":"Channel","balances":"New ad revenue balance."}},"updates.differenceEmpty":{"comment":"No events.","arguments":{"date":"Current date","seq":"Number of sent updates"}},"updates.differenceTooLong":{"comment":"The difference is too long, and the specified state must be used to refetch updates.","arguments":{"pts":"The new state to use."}},"updates.difference":{"comment":"Full list of occurred events.","arguments":{"new_messages":"List of new messages","new_encrypted_messages":"List of new encrypted secret chat messages","other_updates":"List of updates","chats":"List of chats mentioned in events","users":"List of users mentioned in events","state":"Current state"}},"updateNewStoryReaction":{"comment":"Represents a new reaction to a story.","arguments":{"story_id":"Story ID.","peer":"The peer where the story was posted.","reaction":"The reaction."}},"updateStarsBalance":{"comment":"The current account's Telegram Stars balance » has changed.","arguments":{"balance":"New balance."}},"updatesTooLong":{"comment":"Too many updates, it is necessary to execute {@link updates.RawGetDifferenceRequest}.","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateShort":{"comment":"Shortened constructor containing info on one update not requiring auxiliary data","arguments":{"update":"Update","date":"Date of event"}},"updates":{"comment":"Full constructor of updates","arguments":{"updates":"List of updates","users":"List of users mentioned in updates","chats":"List of chats mentioned in updates","date":"Current date","seq":"Total number of sent updates"}},"updateBusinessBotCallbackQuery":{"comment":"A callback button sent via a business connection was pressed, and the button data was sent to the bot that created the button.","arguments":{"flags":"Flags, see TL conditional fields","query_id":"Query ID","user_id":"ID of the user that pressed the button","connection_id":"Business connection ID","message":"Message that contains the keyboard (also contains info about the chat where the message was sent).","reply_to_message":"The message that message is replying to.","chat_instance":"Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games.","data":"Callback data"}},"updateShortSentMessage":{"comment":"Shortened constructor containing info on one outgoing message to a contact (the destination chat has to be extracted from the method call that returned this object).","arguments":{"flags":"Flags, see TL conditional fields","out":"Whether the message is outgoing","id":"ID of the sent message","pts":"PTS","pts_count":"PTS count","date":"date","media":"Attached media","entities":"Entities for styled text","ttl_period":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}},"photos.photos":{"comment":"Full list of photos with auxiliary data.","arguments":{"photos":"List of photos","users":"List of mentioned users"}},"updatesCombined":{"comment":"Constructor for a group of updates.","arguments":{"updates":"List of updates","users":"List of users mentioned in updates","chats":"List of chats mentioned in updates","date":"Current date","seq_start":"Value seq for the earliest update in a group","seq":"Value seq for the latest update in a group"}},"updateShortMessage":{"comment":"Info about a message sent to (received from) another user","arguments":{"flags":"Flags, see TL conditional fields","out":"Whether the message is outgoing","mentioned":"Whether we were mentioned in the message","media_unread":"Whether there are some unread mentions in this message","silent":"If true, the message is a silent message, no notifications should be triggered","id":"The message ID","user_id":"The ID of the sender (if outgoing will be the ID of the destination) of the message","message":"The message","pts":"PTS","pts_count":"PTS count","date":"date","fwd_from":"Info about a forwarded message","via_bot_id":"Info about the inline bot used to generate this message","reply_to":"Reply and thread information","entities":"Entities for styled text","ttl_period":"Time To Live of the message, once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}},"photos.photosSlice":{"comment":"Incomplete list of photos with auxiliary data.","arguments":{"count":"Total number of photos","photos":"List of photos","users":"List of mentioned users"}},"photos.photo":{"comment":"Photo with auxiliary data.","arguments":{"photo":"Photo","users":"Users"}},"upload.file":{"comment":"File content.","arguments":{"type":"File type","mtime":"Modification time","bytes":"Binary data, file content"}},"nearestDc":{"comment":"Nearest data center, according to geo-ip.","arguments":{"country":"Country code determined by geo-ip","this_dc":"Number of current data center","nearest_dc":"Number of nearest data center"}},"help.appUpdate":{"comment":"An update is available for the application.","arguments":{"flags":"Flags, see TL conditional fields","can_not_skip":"Unskippable, the new info must be shown to the user (with a popup or something else)","id":"Update ID","version":"New version name","text":"Text description of the update","entities":"Message entities for styled text","document":"Application binary","url":"Application download URL","sticker":"Associated sticker"}},"updateShortChatMessage":{"comment":"Shortened constructor containing info on one new incoming text message from a chat","arguments":{"flags":"Flags, see TL conditional fields","out":"Whether the message is outgoing","mentioned":"Whether we were mentioned in this message","media_unread":"Whether the message contains some unread mentions","silent":"If true, the message is a silent message, no notifications should be triggered","id":"ID of the message","from_id":"ID of the sender of the message","chat_id":"ID of the chat where the message was sent","message":"Message","pts":"PTS","pts_count":"PTS count","date":"date","fwd_from":"Info about a forwarded message","via_bot_id":"Info about the inline bot used to generate this message","reply_to":"Reply (thread) information","entities":"Entities for styled text","ttl_period":"Time To Live of the message, once updateShortChatMessage.date+updateShortChatMessage.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well."}},"help.noAppUpdate":{"comment":"No updates are available for the application.","arguments":{"gigagroup":"Is this a broadcast group?"}},"updateRecentReactions":{"comment":"The list of recent message reactions has changed","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.inviteText":{"comment":"Text of a text message with an invitation to install Telegram.","arguments":{"message":"Text of the message"}},"encryptedChatEmpty":{"comment":"Empty constructor.","arguments":{"id":"Chat ID"}},"encryptedChat":{"comment":"Encrypted chat","arguments":{"id":"Chat ID","access_hash":"Check sum dependent on the user ID","date":"Date chat was created","admin_id":"Chat creator ID","participant_id":"ID of the second chat participant","g_a_or_b":"B = g ^ b mod p, if the currently authorized user is the chat's creator,
or A = g ^ a mod p otherwise
See Wikipedia for more info","key_fingerprint":"64-bit fingerprint of received key"}},"encryptedChatDiscarded":{"comment":"Discarded or deleted chat.","arguments":{"flags":"Flags, see TL conditional fields","history_deleted":"Whether both users of this secret chat should also remove all of its messages","id":"Chat ID"}},"inputEncryptedChat":{"comment":"Creates an encrypted chat.","arguments":{"chat_id":"Chat ID","access_hash":"Checking sum from constructor {@link RawEncryptedChat}, {@link RawEncryptedChatWaiting} or {@link RawEncryptedChatRequested}"}},"encryptedFile":{"comment":"Encrypted file.","arguments":{"id":"File ID","access_hash":"Checking sum depending on user ID","size":"File size in bytes","dc_id":"Number of data center","key_fingerprint":"32-bit fingerprint of key used for file encryption"}},"encryptedFileEmpty":{"comment":"Empty constructor, non-existing file.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputEncryptedFile":{"comment":"Sets forwarded encrypted file for attachment.","arguments":{"id":"File ID, value of id parameter from {@link RawEncryptedFile}","access_hash":"Checking sum, value of access_hash parameter from {@link RawEncryptedFile}"}},"encryptedChatRequested":{"comment":"Request to create an encrypted chat.","arguments":{"flags":"Flags, see TL conditional fields","folder_id":"Peer folder ID, for more info click here","id":"Chat ID","access_hash":"Check sum depending on user ID","date":"Chat creation date","admin_id":"Chat creator ID","participant_id":"ID of second chat participant","g_a":"A = g ^ a mod p, see Wikipedia"}},"inputEncryptedFileBigUploaded":{"comment":"Assigns a new big encrypted file (over 10 MB in size), saved in parts using the method {@link upload.RawSaveBigFilePartRequest}.","arguments":{"id":"Random file id, created by the client","parts":"Number of saved parts","key_fingerprint":"32-bit imprint of the key used to encrypt the file"}},"encryptedChatWaiting":{"comment":"Chat waiting for approval of second participant.","arguments":{"id":"Chat ID","access_hash":"Checking sum depending on user ID","date":"Date of chat creation","admin_id":"Chat creator ID","participant_id":"ID of second chat participant"}},"encryptedMessage":{"comment":"Encrypted message.","arguments":{"random_id":"Random message ID, assigned by the author of message","chat_id":"ID of encrypted chat","date":"Date of sending","bytes":"TL-serialization of DecryptedMessage type, encrypted with the key created at chat initialization","file":"Attached encrypted file"}},"messages.dhConfigNotModified":{"comment":"Configuring parameters did not change.","arguments":{"random":"Random sequence of bytes of assigned length"}},"encryptedMessageService":{"comment":"Encrypted service message","arguments":{"random_id":"Random message ID, assigned by the author of message","chat_id":"ID of encrypted chat","date":"Date of sending","bytes":"TL-serialization of the DecryptedMessage type, encrypted with the key created at chat initialization"}},"messages.dhConfig":{"comment":"New set of configuring parameters.","arguments":{"g":"New value prime, see Wikipedia","p":"New value primitive root, see Wikipedia","version":"Version of set of parameters","random":"Random sequence of bytes of assigned length"}},"inputEncryptedFileEmpty":{"comment":"Empty constructor.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.sentEncryptedFile":{"comment":"Message with a file enclosure sent to a protected chat","arguments":{"date":"Sending date","file":"Attached file"}},"messages.sentEncryptedMessage":{"comment":"Message without file attachments sent to an encrypted file.","arguments":{"date":"Date of sending"}},"inputEncryptedFileUploaded":{"comment":"Sets new encrypted file saved by parts using upload.saveFilePart method.","arguments":{"id":"Random file ID created by client","parts":"Number of saved parts","md5_checksum":"In case md5-HASH of the (already encrypted) file was transmitted, file content will be checked prior to use","key_fingerprint":"32-bit fingerprint of the key used to encrypt a file"}},"inputDocumentEmpty":{"comment":"Empty constructor.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputDocument":{"comment":"Defines a document for subsequent interaction.","arguments":{"id":"Document ID","access_hash":"access_hash parameter from the {@link RawDocument} constructor","file_reference":"File reference"}},"documentEmpty":{"comment":"Empty constructor, document doesn't exist.","arguments":{"id":"Document ID or 0"}},"help.support":{"comment":"Info on support user.","arguments":{"phone_number":"Phone number","user":"User"}},"updateBotEditBusinessMessage":{"comment":"A message was edited in a connected business chat ».","arguments":{"flags":"Flags, see TL conditional fields","connection_id":"Business connection ID","message":"New message.","reply_to_message":"The message that message is replying to.","qts":"New qts value, see updates » for more info."}},"notifyPeer":{"comment":"Notifications generated by a certain user or group.","arguments":{"peer":"user or group"}},"document":{"comment":"Document","arguments":{"flags":"Flags, see TL conditional fields","id":"Document ID","access_hash":"Check sum, dependent on document ID","file_reference":"File reference","date":"Creation date","mime_type":"MIME type","size":"Size","thumbs":"Thumbnails","video_thumbs":"Video thumbnails","dc_id":"DC ID","attributes":"Attributes"}},"notifyChats":{"comment":"Notifications generated by all groups.","arguments":{"gigagroup":"Is this a broadcast group?"}},"notifyForumTopic":{"comment":"Notifications generated by a topic in a forum.","arguments":{"peer":"Forum ID","top_msg_id":"Topic ID"}},"notifyBroadcasts":{"comment":"Channel notification settings","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageUploadVideoAction":{"comment":"User is uploading a video.","arguments":{"progress":"Progress percentage"}},"sendMessageRecordVideoAction":{"comment":"User is recording a video.","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageCancelAction":{"comment":"Invalidate all previous action updates. E.g. when user deletes entered text or aborts a video upload.","arguments":{"gigagroup":"Is this a broadcast group?"}},"dcOption":{"comment":"Data center","arguments":{"flags":"Flags, see TL conditional fields","ipv6":"Whether the specified IP is an IPv6 address","media_only":"Whether this DC should only be used to download or upload files","tcpo_only":"Whether this DC only supports connection with transport obfuscation","cdn":"Whether this is a CDN DC.","static":"If set, this IP should be used when connecting through a proxy","this_port_only":"If set, clients must connect using only the specified port, without trying any other port.","id":"DC ID","ip_address":"IP address of DC","port":"Port","secret":"If the tcpo_only flag is set, specifies the secret to use when connecting using transport obfuscation"}},"updatePaidReactionPrivacy":{"comment":"Contains the current default paid reaction privacy, see here » for more info.\n\nClients should invoke {@link messages.RawGetPaidReactionPrivacyRequest} on startup to fetch the current default reaction privacy because this update is only sent to currently online sessions and cannot be fetched using getDifference on client startup.","arguments":{"private":"Whether paid reaction privacy is enabled or disabled."}},"notifyUsers":{"comment":"Notifications generated by all users.","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageTypingAction":{"comment":"User is typing.","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageRecordAudioAction":{"comment":"User is recording a voice message.","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageChooseContactAction":{"comment":"User is selecting a contact to share.","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageUploadRoundAction":{"comment":"User is uploading a round video","arguments":{"progress":"Progress percentage"}},"upload.fileCdnRedirect":{"comment":"The file must be downloaded from a CDN DC.","arguments":{"dc_id":"CDN DC ID","file_token":"File token (see CDN files)","encryption_key":"Encryption key (see CDN files)","encryption_iv":"Encryption IV (see CDN files)","file_hashes":"File hashes (see CDN files)"}},"sendMessageUploadAudioAction":{"comment":"User is uploading a voice message.","arguments":{"progress":"Progress percentage"}},"speakingInGroupCallAction":{"comment":"User is currently speaking in the group call","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageGamePlayAction":{"comment":"User is playing a game","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageGeoLocationAction":{"comment":"User is selecting a location to share.","arguments":{"gigagroup":"Is this a broadcast group?"}},"config":{"comment":"Current configuration","arguments":{"flags":"Flags, see TL conditional fields","default_p2p_contacts":"Whether the client should use P2P by default for phone calls with contacts","preload_featured_stickers":"Whether the client should preload featured stickers","revoke_pm_inbox":"Whether incoming private messages can be deleted for both participants","blocked_mode":"Indicates that telegram is probably censored by governments/ISPs in the current region","force_try_ipv6":"Whether to forcefully connect using IPv6 dcOptions, even if the client knows that IPv4 is available.","date":"Current date at the server","expires":"Expiration date of this config: when it expires it'll have to be refetched using {@link help.RawGetConfigRequest}","test_mode":"Whether we're connected to the test DCs","this_dc":"ID of the DC that returned the reply","dc_options":"DC IP list","dc_txt_domain_name":"Domain name for fetching encrypted DC list from DNS TXT record","chat_size_max":"Maximum member count for normal groups","megagroup_size_max":"Maximum member count for supergroups","forwarded_count_max":"Maximum number of messages that can be forwarded at once using {@link messages.RawForwardMessagesRequest}.","online_update_period_ms":"The client should {@link account.RawUpdateStatusRequest} every N milliseconds","offline_blur_timeout_ms":"Delay before offline status needs to be sent to the server","offline_idle_timeout_ms":"Time without any user activity after which it should be treated offline","online_cloud_timeout_ms":"If we are offline, but were online from some other client in last online_cloud_timeout_ms milliseconds after we had gone offline, then delay offline notification for notify_cloud_delay_ms milliseconds.","notify_cloud_delay_ms":"If we are offline, but online from some other client then delay sending the offline notification for notify_cloud_delay_ms milliseconds.","notify_default_delay_ms":"If some other client is online, then delay notification for notification_default_delay_ms milliseconds","push_chat_period_ms":"Not for client use","push_chat_limit":"Not for client use","edit_time_limit":"Only messages with age smaller than the one specified can be edited","revoke_time_limit":"Only channel/supergroup messages with age smaller than the specified can be deleted","revoke_pm_time_limit":"Only private messages with age smaller than the specified can be deleted","rating_e_decay":"Exponential decay rate for computing top peer rating","stickers_recent_limit":"Maximum number of recent stickers","channels_read_media_period":"Indicates that round videos (video notes) and voice messages sent in channels and older than the specified period must be marked as read","tmp_sessions":"Temporary passport sessions","call_receive_timeout_ms":"Maximum allowed outgoing ring time in VoIP calls: if the user we're calling doesn't reply within the specified time (in milliseconds), we should hang up the call","call_ring_timeout_ms":"Maximum allowed incoming ring time in VoIP calls: if the current user doesn't reply within the specified time (in milliseconds), the call will be automatically refused","call_connect_timeout_ms":"VoIP connection timeout: if the instance of libtgvoip on the other side of the call doesn't connect to our instance of libtgvoip within the specified time (in milliseconds), the call must be aborted","call_packet_timeout_ms":"If during a VoIP call a packet isn't received for the specified period of time, the call must be aborted","me_url_prefix":"The domain to use to parse deep links ».","autoupdate_url_prefix":"URL to use to auto-update the current app","gif_search_username":"Username of the bot to use to search for GIFs","venue_search_username":"Username of the bot to use to search for venues","img_search_username":"Username of the bot to use for image search","static_maps_provider":"ID of the map provider to use for venues","caption_length_max":"Maximum length of caption (length in utf8 codepoints)","message_length_max":"Maximum length of messages (length in utf8 codepoints)","webfile_dc_id":"DC ID to use to download webfiles","suggested_lang_code":"Suggested language code","lang_pack_version":"Language pack version","base_lang_pack_version":"Basic language pack version","reactions_default":"Default message reaction","autologin_token":"Autologin token, click here for more info on URL authorization »."}},"sendMessageRecordRoundAction":{"comment":"User is recording a round video to share","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageChooseStickerAction":{"comment":"User is choosing a sticker","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageEmojiInteraction":{"comment":"User has clicked on an animated emoji triggering a reaction, click here for more info ».","arguments":{"emoticon":"Emoji","msg_id":"Message ID of the animated emoji that was clicked","interaction":"A JSON object with interaction info, click here for more info »"}},"inputPrivacyKeyChatInvite":{"comment":"Whether people will be able to invite you to chats","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageHistoryImportAction":{"comment":"Chat history is being imported","arguments":{"progress":"Progress percentage"}},"inputPrivacyKeyStatusTimestamp":{"comment":"Whether people will be able to see our exact last online timestamp.\n\nNote that if we decide to hide our exact last online timestamp to someone (i.e., users A, B, C, or all users) and we do not have a Premium subscription, we won't be able to see the exact last online timestamp of those users (A, B, C, or all users), even if those users do share it with us.\n\nIf those users do share their exact online status with us, but we can't see it due to the reason mentioned above, the by_me flag of {@link RawUserStatusRecently}, {@link RawUserStatusLastWeek}, {@link RawUserStatusLastMonth} will be set.","arguments":{"gigagroup":"Is this a broadcast group?"}},"contacts.found":{"comment":"Users found by name substring and auxiliary data.","arguments":{"my_results":"Personalized results","results":"List of found user identifiers","chats":"Found chats","users":"List of users"}},"inputPrivacyKeyPhoneNumber":{"comment":"Whether people will be able to see your phone number","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyKeyPhoneP2P":{"comment":"Whether to allow P2P communication during VoIP calls","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyKeyProfilePhoto":{"comment":"Whether people will be able to see your profile picture","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageUploadDocumentAction":{"comment":"User is uploading a file.","arguments":{"progress":"Progress percentage"}},"inputPrivacyKeyVoiceMessages":{"comment":"Whether people can send you voice messages or round videos (Premium users only).","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyKeyAbout":{"comment":"Whether people can see your bio","arguments":{"gigagroup":"Is this a broadcast group?"}},"sendMessageEmojiInteractionSeen":{"comment":"User is watching an animated emoji reaction triggered by another user, click here for more info ».","arguments":{"emoticon":"Emoji"}},"inputPrivacyKeyForwards":{"comment":"Whether messages forwarded from you will be anonymous","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyKeyChatInvite":{"comment":"Whether the user can be invited to chats","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyKeyStatusTimestamp":{"comment":"Whether we can see the last online timestamp of this user.\n\nNote that if we decide to hide our exact last online timestamp to someone (i.e., users A, B, C, or all users) and we do not have a Premium subscription, we won't be able to see the exact last online timestamp of those users (A, B, C, or all users), even if those users do share it with us.\n\nIf those users do share their exact online status with us, but we can't see it due to the reason mentioned above, the by_me flag of {@link RawUserStatusRecently}, {@link RawUserStatusLastWeek}, {@link RawUserStatusLastMonth} will be set.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyKeyBirthday":{"comment":"Whether the user can see our birthday.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyKeyAddedByPhone":{"comment":"Whether people can add you to their contact list by your phone number","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyKeyPhoneP2P":{"comment":"Whether P2P connections in phone calls with this user are allowed","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyKeyPhoneCall":{"comment":"Whether you will accept phone calls","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyKeyForwards":{"comment":"Whether messages forwarded from the user will be anonymously forwarded","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyKeyAddedByPhone":{"comment":"Whether this user can be added to our contact list by their phone number","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyKeyVoiceMessages":{"comment":"Whether the user accepts voice messages","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyKeyAbout":{"comment":"Whether people can see your bio","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyValueAllowContacts":{"comment":"Allow only contacts","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyKeyBirthday":{"comment":"Whether the user can see our birthday.","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyValueDisallowContacts":{"comment":"Disallow only contacts","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyValueAllowUsers":{"comment":"Allow only certain users","arguments":{"users":"Allowed users"}},"inputPrivacyValueAllowAll":{"comment":"Allow all users","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyKeyProfilePhoto":{"comment":"Whether the profile picture of the user is visible","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyValueDisallowAll":{"comment":"Disallow all","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyValueAllowChatParticipants":{"comment":"Allow only participants of certain chats","arguments":{"chats":"Allowed chat IDs"}},"inputPrivacyValueDisallowChatParticipants":{"comment":"Disallow only participants of certain chats","arguments":{"chats":"Disallowed chat IDs"}},"inputPrivacyValueDisallowUsers":{"comment":"Disallow only certain users","arguments":{"users":"Users to disallow"}},"sendMessageUploadPhotoAction":{"comment":"User is uploading a photo.","arguments":{"progress":"Progress percentage"}},"privacyKeyPhoneNumber":{"comment":"Whether the user allows us to see their phone number","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyValueAllowContacts":{"comment":"Allow all contacts","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyValueAllowAll":{"comment":"Allow all users","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyValueAllowPremium":{"comment":"Allow only users with a Premium subscription », currently only usable for {@link RawInputPrivacyKeyChatInvite}.","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyValueDisallowContacts":{"comment":"Disallow only contacts","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyValueDisallowChatParticipants":{"comment":"Disallow only participants of certain chats","arguments":{"chats":"Disallowed chats"}},"privacyValueAllowCloseFriends":{"comment":"Allow only close friends »","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputPrivacyValueAllowCloseFriends":{"comment":"Allow only close friends »","arguments":{"gigagroup":"Is this a broadcast group?"}},"accountDaysTTL":{"comment":"Time to live in days of the current account","arguments":{"days":"This account will self-destruct in the specified number of days"}},"documentAttributeAnimated":{"comment":"Defines an animated GIF","arguments":{"gigagroup":"Is this a broadcast group?"}},"documentAttributeImageSize":{"comment":"Defines the width and height of an image uploaded as document","arguments":{"w":"Width of image","h":"Height of image"}},"documentAttributeSticker":{"comment":"Defines a sticker","arguments":{"flags":"Flags, see TL conditional fields","mask":"Whether this is a mask sticker","alt":"Alternative emoji representation of sticker","stickerset":"Associated stickerset","mask_coords":"Mask coordinates (if this is a mask sticker, attached to a photo)"}},"documentAttributeVideo":{"comment":"Defines a video","arguments":{"flags":"Flags, see TL conditional fields","round_message":"Whether this is a round video","supports_streaming":"Whether the video supports streaming","nosound":"Whether the specified document is a video file with no audio tracks (a GIF animation (even as MPEG4), for example)","duration":"Duration in seconds","w":"Video width","h":"Video height","preload_prefix_size":"Number of bytes to preload when preloading videos (particularly video stories).","video_start_ts":"Floating point UNIX timestamp in seconds, indicating the frame of the video that should be used as static preview and thumbnail."}},"privacyKeyPhoneCall":{"comment":"Whether the user accepts phone calls","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.stickersNotModified":{"comment":"No new stickers were found for the given query","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.allStickersNotModified":{"comment":"Info about all installed stickers hasn't changed","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyValueAllowPremium":{"comment":"Allow only users with a Premium subscription », currently only usable for {@link RawInputPrivacyKeyChatInvite}.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.stickers":{"comment":"Found stickers","arguments":{"hash":"Hash used for caching, for more info click here","stickers":"Stickers"}},"messages.allStickers":{"comment":"Info about all installed stickers","arguments":{"hash":"Hash used for caching, for more info click here","sets":"All stickersets"}},"stickerPack":{"comment":"A stickerpack is a group of stickers associated to the same emoji.
\nIt is not a sticker pack the way it is usually intended, you may be looking for a StickerSet.","arguments":{"emoticon":"Emoji","documents":"Stickers"}},"documentAttributeHasStickers":{"comment":"Whether the current document has stickers attached","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.privacyRules":{"comment":"Privacy rules","arguments":{"rules":"Privacy rules","chats":"Chats to which the rules apply","users":"Users to which the rules apply"}},"privacyValueDisallowAll":{"comment":"Disallow all users","arguments":{"gigagroup":"Is this a broadcast group?"}},"privacyValueAllowChatParticipants":{"comment":"Allow all participants of certain chats","arguments":{"chats":"Allowed chats"}},"messages.affectedMessages":{"comment":"Events affected by operation","arguments":{"pts":"Event count after generation","pts_count":"Number of events that were generated"}},"webPageEmpty":{"comment":"No preview is available for the webpage","arguments":{"flags":"Flags, see TL conditional fields","id":"Preview ID","url":"URL of the webpage."}},"documentAttributeCustomEmoji":{"comment":"Info about a custom emoji","arguments":{"flags":"Flags, see TL conditional fields","free":"Whether this custom emoji can be sent by non-Premium users","text_color":"Whether the color of this TGS custom emoji should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context.","alt":"The actual emoji","stickerset":"The emoji stickerset to which this emoji belongs."}},"webPage":{"comment":"Webpage preview","arguments":{"flags":"Flags, see TL conditional fields","has_large_media":"Whether the size of the media in the preview can be changed.","id":"Preview ID","url":"URL of previewed webpage","display_url":"Webpage URL to be displayed to the user","hash":"Hash used for caching, for more info click here","type":"Type of the web page. Can be: article, photo, audio, video, document, profile, app, or something else, see here » for a full list.","site_name":"Short name of the site (e.g., Google Docs, App Store)","title":"Title of the content","description":"Content description","photo":"Image representing the content","embed_url":"URL to show in the embedded preview","embed_type":"MIME type of the embedded preview, (e.g., text/html or video/mp4)","embed_width":"Width of the embedded preview","embed_height":"Height of the embedded preview","duration":"Duration of the content, in seconds","author":"Author of the content","document":"Preview of the content as a media file","cached_page":"Page contents in instant view format","attributes":"Webpage attributes"}},"account.password":{"comment":"Configuration for two-factor authorization","arguments":{"flags":"Flags, see TL conditional fields","has_recovery":"Whether the user has a recovery method configured","has_secure_values":"Whether telegram passport is enabled","has_password":"Whether the user has a password","current_algo":"The KDF algorithm for SRP two-factor authentication of the current password","srp_B":"Srp B param for SRP authorization","srp_id":"Srp ID param for SRP authorization","hint":"Text hint for the password","email_unconfirmed_pattern":"A password recovery email with the specified pattern is still awaiting verification","new_algo":"The KDF algorithm for SRP two-factor authentication to use when creating new passwords","new_secure_algo":"The KDF algorithm for telegram passport","secure_random":"Secure random string","pending_reset_date":"The 2FA password will be automatically removed at this date, unless the user cancels the operation","login_email_pattern":"A verified login email with the specified pattern is configured"}},"account.authorizations":{"comment":"Logged-in sessions","arguments":{"authorization_ttl_days":"Time-to-live of session","authorizations":"Logged-in sessions"}},"webPageNotModified":{"comment":"The preview of the webpage hasn't changed","arguments":{"flags":"Flags, see TL conditional fields","cached_page_views":"Page view count"}},"webPagePending":{"comment":"A preview of the webpage is currently being generated","arguments":{"flags":"Flags, see TL conditional fields","id":"ID of preview","url":"URL of the webpage","date":"When was the processing started"}},"receivedNotifyMessage":{"comment":"Message ID, for which PUSH-notifications were cancelled.","arguments":{"id":"Message ID, for which PUSH-notifications were canceled","flags":"Reserved for future use"}},"chatInviteExported":{"comment":"Exported chat invite","arguments":{"flags":"Flags, see TL conditional fields","revoked":"Whether this chat invite was revoked","permanent":"Whether this chat invite has no expiration","request_needed":"Whether users importing this invite link will have to be approved to join the channel or group","link":"Chat invitation link","admin_id":"ID of the admin that created this chat invite","date":"When was this chat invite created","start_date":"When was this chat invite last modified","expire_date":"When does this chat invite expire","usage_limit":"Maximum number of users that can join using this link","usage":"How many users joined using this link","requested":"Number of users that have already used this link to join","subscription_expired":"For Telegram Star subscriptions », contains the number of chat members which have already joined the chat using the link, but have already left due to expiration of their subscription.","title":"Custom description for the invite link, visible only to admins","subscription_pricing":"For Telegram Star subscriptions », contains the pricing of the subscription the user must activate to join the private channel."}},"authorization":{"comment":"Logged-in session","arguments":{"flags":"Flags, see TL conditional fields","current":"Whether this is the current session","official_app":"Whether the session is from an official app","password_pending":"Whether the session is still waiting for a 2FA password","encrypted_requests_disabled":"Whether this session will accept encrypted chats","call_requests_disabled":"Whether this session will accept phone calls","unconfirmed":"Whether the session is unconfirmed, see here » for more info.","hash":"Identifier","device_model":"Device model","platform":"Platform","system_version":"System version","api_id":"API ID","app_name":"App name","app_version":"App version","date_created":"When was the session created","date_active":"When was the session last active","ip":"Last known IP","country":"Country determined from IP","region":"Region determined from IP"}},"auth.passwordRecovery":{"comment":"Recovery info of a 2FA password, only for accounts with a recovery email configured.","arguments":{"email_pattern":"The email to which the recovery code was sent must match this pattern."}},"chatInvitePublicJoinRequests":{"comment":"Used in updates and in the channel log to indicate when a user is requesting to join or has joined a discussion group","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputStickerSetID":{"comment":"Stickerset by ID","arguments":{"id":"ID","access_hash":"Access hash"}},"inputStickerSetEmpty":{"comment":"Empty constructor","arguments":{"gigagroup":"Is this a broadcast group?"}},"chatInvitePeek":{"comment":"A chat invitation that also allows peeking into the group to read messages without joining it.","arguments":{"chat":"Chat information","expires":"Read-only anonymous access to this group will be revoked at this date"}},"inputStickerSetShortName":{"comment":"Stickerset by short name, from a stickerset deep link »","arguments":{"short_name":"Short name from a stickerset deep link »"}},"inputStickerSetDice":{"comment":"Used for fetching animated dice stickers","arguments":{"emoticon":"The emoji, for now \"🏀\", \"🎲\" and \"🎯\" are supported"}},"privacyValueDisallowUsers":{"comment":"Disallow only certain users","arguments":{"users":"Disallowed users"}},"inputStickerSetAnimatedEmoji":{"comment":"Animated emojis stickerset","arguments":{"gigagroup":"Is this a broadcast group?"}},"chatInvite":{"comment":"Chat invite info","arguments":{"flags":"Flags, see TL conditional fields","channel":"Whether this is a channel/supergroup or a normal group","broadcast":"Whether this is a channel","public":"Whether this is a public channel/supergroup","megagroup":"Whether this is a supergroup","request_needed":"Whether the join request » must be first approved by an administrator","verified":"Is this chat or channel verified by Telegram?","scam":"This chat is probably a scam","fake":"If set, this chat was reported by many users as a fake or scam: be careful when interacting with it.","can_refulfill_subscription":"If set, indicates that the user has already paid for the associated Telegram Star subscriptions » and it hasn't expired yet, so they may re-join the channel using {@link messages.RawImportChatInviteRequest} without repeating the payment.","title":"Chat/supergroup/channel title","about":"Description of the group of channel","photo":"Chat/supergroup/channel photo","participants_count":"Participant count","participants":"A few of the participants that are in the group","color":"Profile color palette ID","subscription_pricing":"For Telegram Star subscriptions », contains the pricing of the subscription the user must activate to join the private channel.","subscription_form_id":"For Telegram Star subscriptions », the ID of the payment form for the subscription."}},"inputStickerSetAnimatedEmojiAnimations":{"comment":"Animated emoji reaction stickerset (contains animations to play when a user clicks on a given animated emoji)","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputStickerSetPremiumGifts":{"comment":"Stickers to show when receiving a gifted Telegram Premium subscription","arguments":{"gigagroup":"Is this a broadcast group?"}},"chatInviteAlready":{"comment":"The user has already joined this chat","arguments":{"chat":"The chat connected to the invite"}},"inputStickerSetEmojiGenericAnimations":{"comment":"Generic animation stickerset containing animations to play when reacting to messages using a normal emoji without a custom animation","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputStickerSetEmojiDefaultStatuses":{"comment":"Default custom emoji status stickerset","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputStickerSetEmojiChannelDefaultStatuses":{"comment":"Default custom emoji status stickerset for channel statuses","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.passwordSettings":{"comment":"Private info associated to the password info (recovery email, telegram passport info & so on)","arguments":{"flags":"Flags, see TL conditional fields","email":"2FA Recovery email","secure_settings":"Telegram passport settings"}},"inputStickerSetEmojiDefaultTopicIcons":{"comment":"Default custom emoji stickerset for forum topic icons","arguments":{"gigagroup":"Is this a broadcast group?"}},"botInfo":{"comment":"Info about bots (available bot commands, etc)","arguments":{"flags":"Flags, see TL conditional fields","has_preview_medias":"If set, the bot has some preview medias for the configured Main Mini App, see here » for more info on Main Mini App preview medias.","user_id":"ID of the bot","description":"Description of the bot","description_photo":"Description photo","description_document":"Description animation in MPEG4 format","commands":"Bot commands that can be used in the chat","menu_button":"Indicates the action to execute when pressing the in-UI menu button for bots","privacy_policy_url":"The HTTP link to the privacy policy of the bot. If not set, then the /privacy command must be used, if supported by the bot (i.e. if it's present in the commands vector). If it isn't supported, then https://telegram.org/privacy-tpa must be opened, instead."}},"messages.stickerSetNotModified":{"comment":"The stickerset hasn't changed","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.stickerSet":{"comment":"Stickerset and stickers inside it","arguments":{"set":"The stickerset","packs":"Emoji info for stickers","keywords":"Keywords for some or every sticker in the stickerset.","documents":"Stickers in stickerset"}},"stickerSet":{"comment":"Represents a stickerset (stickerpack)","arguments":{"flags":"Flags, see TL conditional fields","archived":"Whether this stickerset was archived (due to too many saved stickers in the current account)","official":"Is this stickerset official","masks":"Is this a mask stickerset","emojis":"This is a custom emoji stickerset","text_color":"Whether the color of this TGS custom emoji stickerset should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context.","channel_emoji_status":"If set, this custom emoji stickerset can be used in channel/supergroup emoji statuses.","creator":"Whether we created this stickerset","installed_date":"When was this stickerset installed","id":"ID of the stickerset","access_hash":"Access hash of stickerset","title":"Title of stickerset","short_name":"Short name of stickerset, used when sharing stickerset using stickerset deep links.","thumbs":"Stickerset thumbnail","thumb_dc_id":"DC ID of thumbnail","thumb_version":"Thumbnail version","thumb_document_id":"Document ID of custom emoji thumbnail, fetch the document using {@link messages.RawGetCustomEmojiDocumentsRequest}","count":"Number of stickers in pack","hash":"Hash"}},"keyboardButtonUrl":{"comment":"URL button","arguments":{"text":"Button label","url":"URL"}},"keyboardButtonCallback":{"comment":"Callback button","arguments":{"flags":"Flags, see TL conditional fields","requires_password":"Whether the user should verify their identity by entering their 2FA SRP parameters to the {@link messages.RawGetBotCallbackAnswerRequest} method. NOTE: telegram and the bot WILL NOT have access to the plaintext password, thanks to SRP. This button is mainly used by the official @botfather bot, for verifying the user's identity before transferring ownership of a bot to another user.","text":"Button text","data":"Callback data"}},"keyboardButton":{"comment":"Bot keyboard button","arguments":{"text":"Button text"}},"documentAttributeFilename":{"comment":"A simple document with a file name","arguments":{"file_name":"The file name"}},"keyboardButtonBuy":{"comment":"Button to buy a product","arguments":{"text":"Button text"}},"keyboardButtonSwitchInline":{"comment":"Button to force a user to switch to inline mode: 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.","arguments":{"flags":"Flags, see TL conditional fields","same_peer":"If set, pressing the button will insert the bot's username and the specified inline query in the current chat's input field.","text":"Button label","query":"The inline query to use","peer_types":"Filter to use when selecting chats."}},"keyboardButtonRequestGeoLocation":{"comment":"Button to request a user's geolocation","arguments":{"text":"Button text"}},"inputKeyboardButtonUrlAuth":{"comment":"Button to request a user to {@link messages.RawAcceptUrlAuthRequest} via URL using Seamless Telegram Login.","arguments":{"flags":"Flags, see TL conditional fields","request_write_access":"Set this flag to request the permission for your bot to send messages to the user.","text":"Button text","fwd_text":"New text of the button in forwarded messages.","url":"An HTTP URL to be opened with user authorization data added to the query string when the button is pressed. If the user refuses to provide authorization data, the original URL without information about the user will be opened. The data added is the same as described in Receiving authorization data.
NOTE: You must always check the hash of the received data to verify the authentication and the integrity of the data as described in Checking authorization.","bot":"Username of a bot, which will be used for user authorization. See Setting up a bot for more details. If not specified, the current bot's username will be assumed. The url's domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details."}},"keyboardButtonRequestPhone":{"comment":"Button to request a user's phone number","arguments":{"text":"Button text"}},"account.passwordInputSettings":{"comment":"Settings for setting up a new password","arguments":{"flags":"Flags, see TL conditional fields","new_algo":"The SRP algorithm to use","new_password_hash":"The computed password hash","hint":"Text hint for the password","email":"Password recovery email","new_secure_settings":"Telegram passport settings"}},"keyboardButtonRequestPoll":{"comment":"A button that allows the user to create and send a poll when pressed; available only in private","arguments":{"flags":"Flags, see TL conditional fields","quiz":"If set, only quiz polls can be sent","text":"Button text"}},"keyboardButtonGame":{"comment":"Button to start a game","arguments":{"text":"Button text"}},"privacyValueAllowUsers":{"comment":"Allow only certain users","arguments":{"users":"Allowed users"}},"keyboardButtonUrlAuth":{"comment":"Button to request a user to authorize via URL using Seamless Telegram Login. When the user clicks on such a button, {@link messages.RawRequestUrlAuthRequest} should be called, providing the button_id and the ID of the container message. The returned {@link RawUrlAuthResultRequest} object will contain more details about the authorization request (request_write_access if the bot would like to send messages to the user along with the username of the bot which will be used for user authorization). Finally, the user can choose to call {@link messages.RawAcceptUrlAuthRequest} to get a {@link RawUrlAuthResultAccepted} with the URL to open instead of the url of this constructor, or a {@link RawUrlAuthResultDefault}, in which case the url of this constructor must be opened, instead. If the user refuses the authorization request but still wants to open the link, the url of this constructor must be used.","arguments":{"flags":"Flags, see TL conditional fields","text":"Button label","fwd_text":"New text of the button in forwarded messages.","url":"An HTTP URL to be opened with user authorization data added to the query string when the button is pressed. If the user refuses to provide authorization data, the original URL without information about the user will be opened. The data added is the same as described in Receiving authorization data.

NOTE: Services must always check the hash of the received data to verify the authentication and the integrity of the data as described in Checking authorization.","button_id":"ID of the button to pass to {@link messages.RawRequestUrlAuthRequest}"}},"inputKeyboardButtonUserProfile":{"comment":"Button that links directly to a user profile","arguments":{"text":"Button text","user_id":"User ID"}},"keyboardButtonSimpleWebView":{"comment":"Button to open a bot mini app using {@link messages.RawRequestSimpleWebViewRequest}, without sending user information to the web app.\n\nCan only be sent or received as part of a reply keyboard, use {@link RawKeyboardButtonWebView} for inline keyboards.","arguments":{"text":"Button text","url":"Web app URL"}},"keyboardButtonRow":{"comment":"Inline keyboard row","arguments":{"buttons":"Bot or inline keyboard buttons"}},"keyboardButtonCopy":{"comment":"Clipboard button: when clicked, the attached text must be copied to the clipboard.","arguments":{"text":"Title of the button","copy_text":"The text that will be copied to the clipboard"}},"messageEntityUnknown":{"comment":"Unknown message entity","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"messageEntityHashtag":{"comment":"#hashtag message entity","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"replyKeyboardHide":{"comment":"Hide sent bot keyboard","arguments":{"flags":"Flags, see TL conditional fields","selective":"Use this flag 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 reply_to_message_id), 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"}},"replyKeyboardForceReply":{"comment":"Force the user to send a reply","arguments":{"flags":"Flags, see TL conditional fields","single_use":"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.","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 reply_to_message_id), 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.","placeholder":"The placeholder to be shown in the input field when the keyboard is active; 1-64 characters."}},"keyboardButtonUserProfile":{"comment":"Button that links directly to a user profile","arguments":{"text":"Button text","user_id":"User ID"}},"replyInlineMarkup":{"comment":"Bot or inline keyboard","arguments":{"rows":"Bot or inline keyboard rows"}},"messageEntityMention":{"comment":"Message entity mentioning a user by @username; {@link RawMessageEntityMentionName} can also be used to mention users by their ID.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"inputKeyboardButtonRequestPeer":{"comment":"Prompts the user to select and share one or more peers with the bot using {@link messages.RawSendBotRequestedPeerRequest}.","arguments":{"flags":"Flags, see TL conditional fields","name_requested":"Set this flag to request the peer's name.","username_requested":"Set this flag to request the peer's @username (if any).","photo_requested":"Set this flag to request the peer's photo (if any).","text":"Button text","button_id":"Button ID, to be passed to {@link messages.RawSendBotRequestedPeerRequest}.","peer_type":"Filtering criteria to use for the peer selection list shown to the user.
The list should display all existing peers of the specified type, and should also offer an option for the user to create and immediately use one or more (up to max_quantity) peers of the specified type, if needed.","max_quantity":"Maximum number of peers that can be chosen."}},"botCommand":{"comment":"Describes a bot command that can be used in a chat","arguments":{"command":"/command name","description":"Description of the command"}},"keyboardButtonWebView":{"comment":"Button to open a bot mini app using {@link messages.RawRequestWebViewRequest}, sending over user information after user confirmation.\n\nCan only be sent or received as part of an inline keyboard, use {@link RawKeyboardButtonSimpleWebView} for reply keyboards.","arguments":{"text":"Button text","url":"Web app url"}},"messageEntityEmail":{"comment":"Message entity representing an email@example.com.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"messageEntityBold":{"comment":"Message entity representing bold text.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"messageEntityPre":{"comment":"Message entity representing a preformatted codeblock, allowing the user to specify a programming language for the codeblock.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)","language":"Programming language of the code"}},"messageEntityItalic":{"comment":"Message entity representing italic text.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"messageEntityCode":{"comment":"Message entity representing a codeblock.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"messageEntityMentionName":{"comment":"Message entity representing a user mention: for creating a mention use {@link RawInputMessageEntityMentionName}.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)","user_id":"Identifier of the user that was mentioned"}},"messageEntityTextUrl":{"comment":"Message entity representing a text url: for in-text urls like https://google.com use {@link RawMessageEntityUrl}.\n\nNote that an additional confirmation popup with the full URL must be displayed to the user before opening this link, unless the domain satisfies the conditions specified in the domain whitelist documentation ».","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)","url":"The actual URL"}},"inputMessageEntityMentionName":{"comment":"Message entity that can be used to create a user user mention: received mentions use the {@link RawMessageEntityMentionName} constructor, instead.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)","user_id":"Identifier of the user that was mentioned"}},"messageEntityCashtag":{"comment":"Message entity representing a $cashtag.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"messageEntityPhone":{"comment":"Message entity representing a phone number.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"messageEntityBotCommand":{"comment":"Message entity representing a bot /command","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"messageEntityStrike":{"comment":"Message entity representing strikethrough text.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"messageEntityCustomEmoji":{"comment":"Represents a custom emoji.
\nNote that this entity must wrap exactly one regular emoji (the one contained in {@link RawDocumentAttributeCustomEmoji}.alt) in the related text, otherwise the server will ignore it.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)","document_id":"Document ID of the custom emoji, use {@link messages.RawGetCustomEmojiDocumentsRequest} to fetch the emoji animation and the actual emoji it represents."}},"messageEntityBlockquote":{"comment":"Message entity representing a block quote.","arguments":{"flags":"Flags, see TL conditional fields","collapsed":"Whether the quote is collapsed by default.","offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"messageEntityBankCard":{"comment":"Indicates a credit card number","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"inputChannelEmpty":{"comment":"Represents the absence of a channel","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputChannel":{"comment":"Represents a channel","arguments":{"channel_id":"Channel ID","access_hash":"Access hash taken from the {@link RawChannel} constructor"}},"inputChannelFromMessage":{"comment":"Defines a min channel that was seen in a certain message of a certain chat.","arguments":{"peer":"The chat where the channel was seen","msg_id":"The message ID in the chat where the channel was seen","channel_id":"The channel ID"}},"messageEntitySpoiler":{"comment":"Message entity representing a spoiler","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"contacts.resolvedPeer":{"comment":"Resolved peer","arguments":{"peer":"The peer","chats":"Chats","users":"Users"}},"updates.channelDifferenceEmpty":{"comment":"There are no new updates","arguments":{"flags":"Flags, see TL conditional fields","final":"Whether there are more updates that must be fetched (always false)","pts":"The latest PTS","timeout":"Clients are supposed to refetch the channel difference after timeout seconds have elapsed, if the user is currently viewing the chat, see here » for more info."}},"updates.channelDifferenceTooLong":{"comment":"The provided pts + limit < remote pts. Simply, there are too many updates to be fetched (more than limit), the client has to resolve the update gap in one of the following ways (assuming the existence of a persistent database to locally store messages):\n\nIt should be also noted that some messages like live location messages shouldn't be deleted.","arguments":{"flags":"Flags, see TL conditional fields","final":"Whether there are more updates that must be fetched (always false)","timeout":"Clients are supposed to refetch the channel difference after timeout seconds have elapsed","dialog":"Dialog containing the latest PTS that can be used to reset the channel state","messages":"The latest messages","chats":"Chats from messages","users":"Users from messages"}},"messageEntityUrl":{"comment":"Message entity representing an in-text url: https://google.com; for text urls, use {@link RawMessageEntityTextUrl}.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"messageRange":{"comment":"Indicates a range of chat messages","arguments":{"min_id":"Start of range (message ID)","max_id":"End of range (message ID)"}},"updates.channelDifference":{"comment":"The new updates","arguments":{"flags":"Flags, see TL conditional fields","final":"Whether there are more updates to be fetched using getDifference, starting from the provided pts","pts":"The PTS from which to start getting updates the next time","timeout":"Clients are supposed to refetch the channel difference after timeout seconds have elapsed, if the user is currently viewing the chat, see here » for more info.","new_messages":"New messages","other_updates":"Other updates","chats":"Chats","users":"Users"}},"keyboardButtonRequestPeer":{"comment":"Prompts the user to select and share one or more peers with the bot using {@link messages.RawSendBotRequestedPeerRequest}","arguments":{"text":"Button text","button_id":"Button ID, to be passed to {@link messages.RawSendBotRequestedPeerRequest}.","peer_type":"Filtering criteria to use for the peer selection list shown to the user.
The list should display all existing peers of the specified type, and should also offer an option for the user to create and immediately use one or more (up to max_quantity) peers of the specified type, if needed.","max_quantity":"Maximum number of peers that can be chosen."}},"channelMessagesFilterEmpty":{"comment":"No filter","arguments":{"gigagroup":"Is this a broadcast group?"}},"channelParticipant":{"comment":"Channel/supergroup participant","arguments":{"flags":"Flags, see TL conditional fields","user_id":"Participant user ID","date":"Date joined","subscription_until_date":"If set, contains the expiration date of the current Telegram Star subscription period » for the specified participant."}},"channelParticipantSelf":{"comment":"Myself","arguments":{"flags":"Flags, see TL conditional fields","via_request":"Whether I joined upon specific approval of an admin","user_id":"User ID","inviter_id":"User that invited me to the channel/supergroup","date":"When did I join the channel/supergroup","subscription_until_date":"If set, contains the expiration date of the current Telegram Star subscription period » for the specified participant."}},"channelMessagesFilter":{"comment":"Filter for getting only certain types of channel messages","arguments":{"flags":"Flags, see TL conditional fields","exclude_new_messages":"Whether to exclude new messages from the search","ranges":"A range of messages to fetch"}},"documentAttributeAudio":{"comment":"Represents an audio file","arguments":{"flags":"Flags, see TL conditional fields","voice":"Whether this is a voice message","duration":"Duration in seconds","title":"Name of song","performer":"Performer","waveform":"Waveform: consists in a series of bitpacked 5-bit values.
Example implementation: android."}},"messageEntityUnderline":{"comment":"Message entity representing underlined text.","arguments":{"offset":"Offset of message entity within message (in UTF-16 code units)","length":"Length of message entity within message (in UTF-16 code units)"}},"replyKeyboardMarkup":{"comment":"Bot keyboard","arguments":{"flags":"Flags, see TL conditional fields","resize":"Requests clients to resize the keyboard vertically for optimal fit (e.g., make the keyboard smaller if there are just two rows of buttons). If not set, the custom keyboard is always of the same height as the app's standard keyboard.","single_use":"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.","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 reply_to_message_id), 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.","persistent":"Requests clients to always show the keyboard when the regular keyboard is hidden.","rows":"Button row","placeholder":"The placeholder to be shown in the input field when the keyboard is active; 1-64 characters."}},"channelParticipantLeft":{"comment":"A participant that left the channel/supergroup","arguments":{"peer":"The peer that left"}},"channelParticipantsAdmins":{"comment":"Fetch only admin participants","arguments":{"gigagroup":"Is this a broadcast group?"}},"channelParticipantAdmin":{"comment":"Admin","arguments":{"flags":"Flags, see TL conditional fields","can_edit":"Can this admin promote other admins with the same permissions?","self":"Is this the current user","user_id":"Admin user ID","inviter_id":"User that invited the admin to the channel/group","promoted_by":"User that promoted the user to admin","date":"When did the user join","admin_rights":"Admin rights","rank":"The role (rank) of the admin in the group: just an arbitrary string, admin by default"}},"channelParticipantsMentions":{"comment":"This filter is used when looking for supergroup members to mention.
\nThis filter will automatically remove anonymous admins, and return even non-participant users that replied to a specific thread through the comment section of a channel.","arguments":{"flags":"Flags, see TL conditional fields","q":"Filter by user name or username","top_msg_id":"Look only for users that posted in this thread"}},"channelParticipantsSearch":{"comment":"Query participants by name","arguments":{"q":"Search query"}},"channelParticipantsBots":{"comment":"Fetch only bot participants","arguments":{"gigagroup":"Is this a broadcast group?"}},"channelParticipantsKicked":{"comment":"Fetch only kicked participants","arguments":{"q":"Optional filter for searching kicked participants by name (otherwise empty)"}},"channels.channelParticipant":{"comment":"Represents a channel participant","arguments":{"participant":"The channel participant","chats":"Mentioned chats","users":"Users"}},"channelParticipantsBanned":{"comment":"Fetch only banned participants","arguments":{"q":"Optional filter for searching banned participants by name (otherwise empty)"}},"inputBotInlineMessageMediaAuto":{"comment":"A media","arguments":{"flags":"Flags, see TL conditional fields","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","message":"Caption","entities":"Message entities for styled text","reply_markup":"Inline keyboard"}},"channelParticipantCreator":{"comment":"Channel/supergroup creator","arguments":{"flags":"Flags, see TL conditional fields","user_id":"User ID","admin_rights":"Creator admin rights","rank":"The role (rank) of the group creator in the group: just an arbitrary string, admin by default"}},"messages.savedGifs":{"comment":"Saved gifs","arguments":{"hash":"Hash used for caching, for more info click here","gifs":"List of saved gifs"}},"messages.savedGifsNotModified":{"comment":"No new saved gifs were found","arguments":{"gigagroup":"Is this a broadcast group?"}},"channels.channelParticipantsNotModified":{"comment":"No new participant info could be found","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputBotInlineMessageMediaVenue":{"comment":"Venue","arguments":{"flags":"Flags, see TL conditional fields","geo_point":"Geolocation","title":"Venue name","address":"Address","provider":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported","venue_id":"Venue ID in the provider's database","venue_type":"Venue type in the provider's database","reply_markup":"Inline keyboard"}},"inputBotInlineMessageMediaGeo":{"comment":"Geolocation","arguments":{"flags":"Flags, see TL conditional fields","geo_point":"Geolocation","heading":"For live locations, a direction in which the location moves, in degrees; 1-360","period":"Validity period","proximity_notification_radius":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000)","reply_markup":"Reply markup for bot/inline keyboards"}},"inputBotInlineMessageMediaContact":{"comment":"A contact","arguments":{"flags":"Flags, see TL conditional fields","phone_number":"Phone number","first_name":"First name","last_name":"Last name","vcard":"VCard info","reply_markup":"Inline keyboard"}},"inputBotInlineMessageText":{"comment":"Simple text message","arguments":{"flags":"Flags, see TL conditional fields","no_webpage":"Disable webpage preview","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","message":"Message","entities":"Message entities for styled text","reply_markup":"Inline keyboard"}},"inputBotInlineResult":{"comment":"An inline bot result","arguments":{"flags":"Flags, see TL conditional fields","id":"ID of result","type":"Result type (see bot API docs)","title":"Result title","description":"Result description","url":"URL of result","thumb":"Thumbnail for result","content":"Result contents","send_message":"Message to send when the result is selected"}},"inputBotInlineMessageMediaInvoice":{"comment":"An invoice","arguments":{"flags":"Flags, see TL conditional fields","title":"Product name, 1-32 characters","description":"Product description, 1-255 characters","photo":"Invoice photo","invoice":"The invoice","payload":"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes.","provider":"Payments provider token, obtained via Botfather","provider_data":"A JSON-serialized object for data about the invoice, which will be shared with the payment provider. A detailed description of the required fields should be provided by the payment provider.","reply_markup":"Inline keyboard"}},"inputBotInlineMessageMediaWebPage":{"comment":"Specifies options that will be used to generate the link preview for the message, or even a standalone link preview without an attached message.","arguments":{"flags":"Flags, see TL conditional fields","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","force_large_media":"If set, specifies that a large media preview should be used.","force_small_media":"If set, specifies that a small media preview should be used.","optional":"If not set, a WEBPAGE_NOT_FOUND RPC error will be emitted if a webpage preview cannot be generated for the specified url; otherwise, no error will be emitted (unless the provided message is also empty, in which case a MESSAGE_EMPTY will be emitted, instead).","message":"The message, can be empty.","entities":"Message entities for styled text","url":"The URL to use for the link preview.","reply_markup":"Inline keyboard"}},"botInlineMessageMediaAuto":{"comment":"Send whatever media is attached to the {@link RawBotInlineMediaResult}","arguments":{"flags":"Flags, see TL conditional fields","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","message":"Caption","entities":"Message entities for styled text","reply_markup":"Inline keyboard"}},"channelParticipantBanned":{"comment":"Banned/kicked user","arguments":{"flags":"Flags, see TL conditional fields","left":"Whether the user has left the group","peer":"The banned peer","kicked_by":"User was kicked by the specified admin","date":"When did the user join the group","banned_rights":"Banned rights"}},"channelParticipantsContacts":{"comment":"Fetch only participants that are also contacts","arguments":{"q":"Optional search query for searching contact participants by name"}},"botInlineMessageMediaVenue":{"comment":"Send a venue","arguments":{"flags":"Flags, see TL conditional fields","geo":"Geolocation of venue","title":"Venue name","address":"Address","provider":"Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported","venue_id":"Venue ID in the provider's database","venue_type":"Venue type in the provider's database","reply_markup":"Inline keyboard"}},"botInlineMessageMediaContact":{"comment":"Send a contact","arguments":{"flags":"Flags, see TL conditional fields","phone_number":"Phone number","first_name":"First name","last_name":"Last name","vcard":"VCard info","reply_markup":"Inline keyboard"}},"inputBotInlineMessageGame":{"comment":"A game","arguments":{"flags":"Flags, see TL conditional fields","reply_markup":"Inline keyboard"}},"help.termsOfService":{"comment":"Info about the latest telegram Terms Of Service","arguments":{"flags":"Flags, see TL conditional fields","popup":"Whether a prompt must be showed to the user, in order to accept the new terms.","id":"ID of the new terms","text":"Text of the new terms","entities":"Message entities for styled text","min_age_confirm":"Minimum age required to sign up to telegram, the user must confirm that they is older than the minimum age."}},"botInlineResult":{"comment":"Generic result","arguments":{"flags":"Flags, see TL conditional fields","id":"Result ID","type":"Result type (see bot API docs)","title":"Result title","description":"Result description","url":"URL of article or webpage","thumb":"Thumbnail for the result","content":"Content of the result","send_message":"Message to send"}},"botInlineMediaResult":{"comment":"Media result","arguments":{"flags":"Flags, see TL conditional fields","id":"Result ID","type":"Result type (see bot API docs)","photo":"If type is photo, the photo to send","document":"If type is document, the document to send","title":"Result title","description":"Description","send_message":"Depending on the type and on the constructor, contains the caption of the media or the content of the message to be sent instead of the media"}},"inputBotInlineResultGame":{"comment":"Game","arguments":{"id":"Result ID","short_name":"Game short name","send_message":"Message to send when the result is selected"}},"messageFwdHeader":{"comment":"Info about a forwarded message","arguments":{"flags":"Flags, see TL conditional fields","imported":"Whether this message was imported from a foreign chat service, click here for more info »","saved_out":"Only for messages forwarded to saved messages », set if the original message was outgoing (though the message may have been originally outgoing even if this flag is not set, if from_id points to the current user).","from_id":"The ID of the user that originally sent the message","from_name":"The name of the user that originally sent the message","date":"When was the message originally sent","channel_post":"ID of the channel message that was forwarded","post_author":"For channels and if signatures are enabled, author of the channel message","saved_from_peer":"Only for messages forwarded to saved messages », contains the dialog where the message was originally sent.","saved_from_msg_id":"Only for messages forwarded to saved messages », contains the original ID of the message in saved_from_peer.","saved_from_id":"Only for forwarded messages reforwarded to saved messages », contains the sender of the original message (i.e. if user A sends a message, then user B forwards it somewhere, then user C saves it to saved messages, this field will contain the ID of user B and from_id will contain the ID of user A).","saved_from_name":"Only for forwarded messages from users with forward privacy enabled, sent by users with forward privacy enabled, reforwarded to saved messages », contains the sender of the original message (i.e. if user A (fwd privacy enabled) sends a message, then user B (fwd privacy enabled) forwards it somewhere, then user C saves it to saved messages, this field will contain the name of user B and from_name will contain the name of user A).","saved_date":"Only for forwarded messages reforwarded to saved messages », indicates when was the original message sent (i.e. if user A sends a message @ unixtime 1, then user B forwards it somewhere @ unixtime 2, then user C saves it to saved messages @ unixtime 3, this field will contain 2, date will contain 1 and the date of the containing {@link RawMessage} will contain 3).","psa_type":"PSA type"}},"channels.channelParticipants":{"comment":"Represents multiple channel participants","arguments":{"count":"Total number of participants that correspond to the given query","participants":"Participants","chats":"Mentioned chats","users":"Users mentioned in participant info"}},"inputBotInlineResultDocument":{"comment":"Document (media of any type except for photos)","arguments":{"flags":"Flags, see TL conditional fields","id":"Result ID","type":"Result type (see bot API docs)","title":"Result title","description":"Result description","document":"Document to send","send_message":"Message to send when the result is selected"}},"auth.codeTypeSms":{"comment":"The next time, the authentication code will be delivered via an immediately canceled incoming call.","arguments":{"gigagroup":"Is this a broadcast group?"}},"botInlineMessageMediaWebPage":{"comment":"Specifies options that must be used to generate the link preview for the message, or even a standalone link preview without an attached message.","arguments":{"flags":"Flags, see TL conditional fields","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","force_large_media":"If set, specifies that a large media preview should be used.","force_small_media":"If set, specifies that a small media preview should be used.","manual":"If set, indicates that the URL used for the webpage preview was specified manually using {@link RawInputMediaWebPage}, and may not be related to any of the URLs specified in the message.","safe":"If set, the link can be opened directly without user confirmation.","message":"The message, can be empty.","entities":"Message entities for styled text","url":"The URL to use for the link preview.","reply_markup":"Reply markup for sending bot buttons"}},"exportedMessageLink":{"comment":"Link to a message in a supergroup/channel","arguments":{"link":"URL","html":"Embed code"}},"auth.codeTypeMissedCall":{"comment":"The next time, the authentication code will be delivered via an immediately canceled incoming call, handled manually by the user.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.botResults":{"comment":"Result of a query to an inline bot","arguments":{"flags":"Flags, see TL conditional fields","gallery":"Whether the result is a picture gallery","query_id":"Query ID","next_offset":"The next offset to use when navigating through results","switch_pm":"Shown as a button on top of the remaining inline result list; if clicked, redirects the user to a private chat with the bot with the specified start parameter.","switch_webview":"Shown as a button on top of the remaining inline result list; if clicked, opens the specified inline mode mini app.","results":"The results","cache_time":"Caching validity of the results","users":"Users mentioned in the results"}},"auth.codeTypeFlashCall":{"comment":"The next time, the authentication code will be delivered via an immediately canceled incoming call.","arguments":{"gigagroup":"Is this a broadcast group?"}},"auth.codeTypeFragmentSms":{"comment":"The next time, the authentication code will be delivered via fragment.com","arguments":{"gigagroup":"Is this a broadcast group?"}},"auth.sentCodeTypeApp":{"comment":"The code was sent through the telegram app","arguments":{"length":"Length of the code in bytes"}},"auth.sentCodeTypeSms":{"comment":"The code was sent via SMS","arguments":{"length":"Length of the code in bytes"}},"auth.sentCodeTypeEmailCode":{"comment":"The code was sent via the previously configured login email »","arguments":{"flags":"Flags, see TL conditional fields","apple_signin_allowed":"Whether authorization through Apple ID is allowed","google_signin_allowed":"Whether authorization through Google ID is allowed","email_pattern":"Pattern of the email","length":"Length of the sent verification code","reset_available_period":"Clients should wait for the specified amount of seconds before allowing the user to invoke {@link auth.RawResetLoginEmailRequest} (will be 0 for Premium users).","reset_pending_date":"An email reset was already requested, and will occur at the specified date."}},"auth.sentCodeTypeSetUpEmailRequired":{"comment":"The user should add and verify an email address in order to login as described here ».","arguments":{"flags":"Flags, see TL conditional fields","apple_signin_allowed":"Whether authorization through Apple ID is allowed","google_signin_allowed":"Whether authorization through Google ID is allowed"}},"auth.sentCodeTypeCall":{"comment":"The code will be sent via a phone call: a synthesized voice will tell the user which verification code to input.","arguments":{"length":"Length of the verification code"}},"auth.sentCodeTypeMissedCall":{"comment":"The code will be sent via a flash phone call, that will be closed immediately. The last digits of the phone number that calls are the code that must be entered manually by the user.","arguments":{"prefix":"Prefix of the phone number from which the call will be made","length":"Length of the verification code"}},"auth.sentCodeTypeFirebaseSms":{"comment":"An authentication code should be delivered via SMS after Firebase attestation, as described in the auth documentation ».","arguments":{"flags":"Flags, see TL conditional fields","nonce":"On Android, the nonce to be used as described in the auth documentation »","play_integrity_project_id":"Google Play Integrity project ID","play_integrity_nonce":"Play Integrity API nonce","receipt":"On iOS, must be compared with the receipt extracted from the received push notification.","push_timeout":"On iOS: if a push notification with the ios_push_secret isn't received within push_timeout seconds, the next_type authentication method must be used, with {@link auth.RawResendCodeRequest}.","length":"Length of the code that will be delivered."}},"botInlineMessageMediaGeo":{"comment":"Send a geolocation","arguments":{"flags":"Flags, see TL conditional fields","geo":"Geolocation","heading":"For live locations, a direction in which the location moves, in degrees; 1-360.","period":"Validity period","proximity_notification_radius":"For live locations, a maximum distance to another chat member for proximity alerts, in meters (0-100000).","reply_markup":"Inline keyboard"}},"auth.sentCodeTypeSmsWord":{"comment":"The code was sent via SMS as a secret word, starting with the letter specified in beginning","arguments":{"flags":"Flags, see TL conditional fields","beginning":"If set, the secret word in the sent SMS (which may contain multiple words) starts with this letter."}},"botInlineMessageText":{"comment":"Send a simple text message","arguments":{"flags":"Flags, see TL conditional fields","no_webpage":"Disable webpage preview","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","message":"The message","entities":"Message entities for styled text","reply_markup":"Inline keyboard"}},"auth.sentCodeTypeFragmentSms":{"comment":"The code was delivered via fragment.com.","arguments":{"url":"Open the specified URL to log into fragment.com with the wallet that owns the specified phone number and view the code.","length":"Length of the delivered code."}},"auth.sentCodeTypeSmsPhrase":{"comment":"The code was sent via SMS as a secret phrase starting with the word specified in beginning","arguments":{"flags":"Flags, see TL conditional fields","beginning":"If set, the secret phrase (and the SMS) starts with this word."}},"inputBotInlineMessageID":{"comment":"Represents a sent inline message from the perspective of a bot (legacy constructor)","arguments":{"dc_id":"DC ID to use when working with this inline message","id":"ID of message, contains both the (32-bit, legacy) owner ID and the message ID, used only for Bot API backwards compatibility with 32-bit user ID.","access_hash":"Access hash of message"}},"messages.botCallbackAnswer":{"comment":"Callback answer sent by the bot in response to a button press","arguments":{"flags":"Flags, see TL conditional fields","alert":"Whether an alert should be shown to the user instead of a toast notification","has_url":"Whether an URL is present","native_ui":"Whether to show games in WebView or in native UI.","message":"Alert to show","url":"URL to open","cache_time":"For how long should this answer be cached"}},"auth.sentCodeTypeFlashCall":{"comment":"The code will be sent via a flash phone call, that will be closed immediately. The phone code will then be the phone number itself, just make sure that the phone number matches the specified pattern.","arguments":{"pattern":"pattern to match"}},"inputBotInlineMessageID64":{"comment":"Represents a sent inline message from the perspective of a bot","arguments":{"dc_id":"DC ID to use when working with this inline message","owner_id":"ID of the owner of this message","id":"ID of message","access_hash":"Access hash of message"}},"messages.peerDialogs":{"comment":"Dialog info of multiple peers","arguments":{"dialogs":"Dialog info","messages":"Messages mentioned in dialog info","chats":"Chats","users":"Users","state":"Current update state of dialog"}},"topPeer":{"comment":"Top peer","arguments":{"peer":"Peer","rating":"Rating as computed in top peer rating »"}},"topPeerCategoryCorrespondents":{"comment":"Users we've chatted most frequently with","arguments":{"gigagroup":"Is this a broadcast group?"}},"topPeerCategoryBotsInline":{"comment":"Most used inline bots","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.messageEditData":{"comment":"Message edit data for media","arguments":{"flags":"Flags, see TL conditional fields","caption":"Media caption, if the specified media's caption can be edited"}},"topPeerCategoryForwardUsers":{"comment":"Users to which the users often forwards messages to","arguments":{"gigagroup":"Is this a broadcast group?"}},"topPeerCategoryPhoneCalls":{"comment":"Most frequently called users","arguments":{"gigagroup":"Is this a broadcast group?"}},"topPeerCategoryBotsApp":{"comment":"Most frequently used Main Mini Bot Apps.","arguments":{"gigagroup":"Is this a broadcast group?"}},"botInlineMessageMediaInvoice":{"comment":"Send an invoice","arguments":{"flags":"Flags, see TL conditional fields","shipping_address_requested":"Set this flag if you require the user's shipping address to complete the order","test":"Test invoice","title":"Product name, 1-32 characters","description":"Product description, 1-255 characters","photo":"Product photo","currency":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars.","total_amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","reply_markup":"Inline keyboard"}},"topPeerCategoryBotsPM":{"comment":"Most used bots","arguments":{"gigagroup":"Is this a broadcast group?"}},"contacts.topPeersNotModified":{"comment":"Top peer info hasn't changed","arguments":{"gigagroup":"Is this a broadcast group?"}},"contacts.topPeersDisabled":{"comment":"Top peers disabled","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.featuredStickers":{"comment":"Featured stickersets","arguments":{"flags":"Flags, see TL conditional fields","premium":"Whether this is a premium stickerset","hash":"Hash used for caching, for more info click here","count":"Total number of featured stickers","sets":"Featured stickersets","unread":"IDs of new featured stickersets"}},"topPeerCategoryChannels":{"comment":"Most frequently visited channels","arguments":{"gigagroup":"Is this a broadcast group?"}},"draftMessage":{"comment":"Represents a message draft.","arguments":{"flags":"Flags, see TL conditional fields","no_webpage":"Whether no webpage preview will be generated","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","reply_to":"If set, indicates that the message should be sent in reply to the specified message or story.","message":"The draft","entities":"Message entities for styled text.","media":"Media.","date":"Date of last update of the draft.","effect":"A message effect that should be played as specified here »."}},"contacts.topPeers":{"comment":"Top peers","arguments":{"categories":"Top peers by top peer category","chats":"Chats","users":"Users"}},"topPeerCategoryPeers":{"comment":"Top peer category","arguments":{"category":"Top peer category of peers","count":"Count of peers","peers":"Peers"}},"messages.featuredStickersNotModified":{"comment":"Featured stickers haven't changed","arguments":{"count":"Total number of featured stickers"}},"auth.codeTypeCall":{"comment":"The next time, the authentication code is to be delivered via an outgoing phone call.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.recentStickersNotModified":{"comment":"No new recent sticker was found","arguments":{"gigagroup":"Is this a broadcast group?"}},"topPeerCategoryForwardChats":{"comment":"Chats to which the users often forwards messages to","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.recentStickers":{"comment":"Recently used stickers","arguments":{"hash":"Hash used for caching, for more info click here","packs":"Emojis associated to stickers","stickers":"Recent stickers","dates":"When was each sticker last used"}},"messages.stickerSetInstallResultSuccess":{"comment":"The stickerset was installed successfully","arguments":{"gigagroup":"Is this a broadcast group?"}},"stickerSetCovered":{"comment":"Stickerset with a single sticker as preview","arguments":{"set":"Stickerset","cover":"Preview"}},"draftMessageEmpty":{"comment":"Empty draft","arguments":{"flags":"Flags, see TL conditional fields","date":"When was the draft last updated"}},"stickerSetMultiCovered":{"comment":"Stickerset, with multiple stickers as preview","arguments":{"set":"Stickerset","covers":"Preview stickers"}},"messages.archivedStickers":{"comment":"Archived stickersets","arguments":{"count":"Number of archived stickers","sets":"Archived stickersets"}},"messages.stickerSetInstallResultArchive":{"comment":"The stickerset was installed, but since there are too many stickersets some were archived","arguments":{"sets":"Archived stickersets"}},"stickerSetFullCovered":{"comment":"Stickerset preview with all stickers of the stickerset included.
\nCurrently used only for custom emoji stickersets, to avoid a further call to {@link messages.RawGetStickerSetRequest}.","arguments":{"set":"Stickerset","packs":"Emoji information about every sticker in the stickerset","keywords":"Keywords for some or every sticker in the stickerset.","documents":"Stickers"}},"stickerSetNoCovered":{"comment":"Just the stickerset information, with no previews.","arguments":{"set":"Stickerset information."}},"topPeerCategoryGroups":{"comment":"Often-opened groups and supergroups","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputStickeredMediaPhoto":{"comment":"A photo with stickers attached","arguments":{"id":"The photo"}},"game":{"comment":"Indicates an already sent game","arguments":{"flags":"Flags, see TL conditional fields","id":"ID of the game","access_hash":"Access hash of the game","short_name":"Short name for the game","title":"Title of the game","description":"Game description","photo":"Game preview","document":"Optional attached document"}},"messages.highScores":{"comment":"Highscores in a game","arguments":{"scores":"Highscores","users":"Users, associated to the highscores"}},"highScore":{"comment":"Game highscore","arguments":{"pos":"Position in highscore list","user_id":"User ID","score":"Score"}},"maskCoords":{"comment":"Position on a photo where a mask should be placed when attaching stickers to media »\n\nThe n position indicates where the mask should be placed:","arguments":{"n":"Part of the face, relative to which the mask should be placed","x":"Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just to the left of the default mask position)","y":"Shift by Y-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just below the default mask position)","zoom":"Mask scaling coefficient. (For example, 2.0 means a doubled size)"}},"inputGameID":{"comment":"Indicates an already sent game","arguments":{"id":"game ID from Game constructor","access_hash":"access hash from Game constructor"}},"inputGameShortName":{"comment":"Game by short name","arguments":{"bot_id":"The bot that provides the game","short_name":"The game's short name, usually obtained from a game link »"}},"textItalic":{"comment":"Italic text","arguments":{"text":"Text"}},"textUnderline":{"comment":"Underlined text","arguments":{"text":"Text"}},"inlineBotSwitchPM":{"comment":"The bot requested the user to message them in private","arguments":{"text":"Text for the button that switches the user to a private chat with the bot and sends the bot a start message with the parameter start_parameter (can be empty)","start_param":"The parameter for the /start parameter"}},"textFixed":{"comment":"fixed-width rich text","arguments":{"text":"Text"}},"inputStickeredMediaDocument":{"comment":"A document with stickers attached","arguments":{"id":"The document"}},"textEmail":{"comment":"Rich text email link","arguments":{"text":"Link text","email":"Email address"}},"textSubscript":{"comment":"Subscript text","arguments":{"text":"Text"}},"textBold":{"comment":"Bold text","arguments":{"text":"Text"}},"textImage":{"comment":"Inline image","arguments":{"document_id":"Document ID","w":"Width","h":"Height"}},"textMarked":{"comment":"Highlighted text","arguments":{"text":"Text"}},"textAnchor":{"comment":"Text linking to another section of the page","arguments":{"text":"Text","name":"Section name"}},"textStrike":{"comment":"Strikethrough text","arguments":{"text":"Text"}},"textPhone":{"comment":"Rich text linked to a phone number","arguments":{"text":"Text","phone":"Phone number"}},"textPlain":{"comment":"Plain text","arguments":{"text":"Text"}},"textUrl":{"comment":"Link","arguments":{"text":"Text of link","url":"Webpage HTTP URL","webpage_id":"If a preview was already generated for the page, the page ID"}},"pageBlockUnsupported":{"comment":"Unsupported IV element","arguments":{"gigagroup":"Is this a broadcast group?"}},"textConcat":{"comment":"Concatenation of rich texts","arguments":{"texts":"Concatenated rich texts"}},"pageBlockSubtitle":{"comment":"Subtitle","arguments":{"text":"Text"}},"pageBlockTitle":{"comment":"Title","arguments":{"text":"Title"}},"pageBlockHeader":{"comment":"Page header","arguments":{"text":"Contents"}},"pageBlockParagraph":{"comment":"A paragraph","arguments":{"text":"Text"}},"pageBlockSubheader":{"comment":"Subheader","arguments":{"text":"Subheader"}},"pageBlockPreformatted":{"comment":"Preformatted (
 text)","arguments":{"text":"Text","language":"Programming language of preformatted text"}},"pageBlockFooter":{"comment":"Page footer","arguments":{"text":"Contents"}},"pageBlockAuthorDate":{"comment":"Author and date of creation of article","arguments":{"author":"Author name","published_date":"Date of publication"}},"pageBlockDivider":{"comment":"An empty block separating a page","arguments":{"gigagroup":"Is this a broadcast group?"}},"pageBlockBlockquote":{"comment":"Quote (equivalent to the HTML 
)","arguments":{"text":"Quote contents","caption":"Caption"}},"pageBlockAnchor":{"comment":"Link to section within the page itself (like anchor)","arguments":{"name":"Name of target section"}},"pageBlockList":{"comment":"Unordered list of IV blocks","arguments":{"items":"List of blocks in an IV page"}},"pageBlockPullquote":{"comment":"Pullquote","arguments":{"text":"Text","caption":"Caption"}},"pageBlockPhoto":{"comment":"A photo","arguments":{"flags":"Flags, see TL conditional fields","photo_id":"Photo ID","caption":"Caption","url":"HTTP URL of page the photo leads to when clicked","webpage_id":"ID of preview of the page the photo leads to when clicked"}},"channelParticipantsRecent":{"comment":"Fetch only recent participants","arguments":{"gigagroup":"Is this a broadcast group?"}},"pageBlockCollage":{"comment":"Collage of media","arguments":{"items":"Media elements","caption":"Caption"}},"pageBlockEmbed":{"comment":"An embedded webpage","arguments":{"flags":"Flags, see TL conditional fields","full_width":"Whether the block should be full width","allow_scrolling":"Whether scrolling should be allowed","url":"Web page URL, if available","html":"HTML-markup of the embedded page","poster_photo_id":"Poster photo, if available","w":"Block width, if known","h":"Block height, if known","caption":"Caption"}},"pageBlockChannel":{"comment":"Reference to a telegram channel","arguments":{"channel":"The channel/supergroup/chat"}},"pageBlockVideo":{"comment":"Video","arguments":{"flags":"Flags, see TL conditional fields","autoplay":"Whether the video is set to autoplay","loop":"Whether the video is set to loop","video_id":"Video ID","caption":"Caption"}},"pageBlockDetails":{"comment":"A collapsible details block","arguments":{"flags":"Flags, see TL conditional fields","open":"Whether the block is open by default","blocks":"Block contents","title":"Always visible heading for the block"}},"pageBlockOrderedList":{"comment":"Ordered list of IV blocks","arguments":{"items":"List items"}},"pageBlockEmbedPost":{"comment":"An embedded post","arguments":{"url":"Web page URL","webpage_id":"ID of generated webpage preview","author_photo_id":"ID of the author's photo","author":"Author name","date":"Creation date","blocks":"Post contents","caption":"Caption"}},"pageBlockTable":{"comment":"Table","arguments":{"flags":"Flags, see TL conditional fields","bordered":"Does the table have a visible border?","striped":"Is the table striped?","title":"Title","rows":"Table rows"}},"textEmpty":{"comment":"Empty rich text element","arguments":{"gigagroup":"Is this a broadcast group?"}},"textSuperscript":{"comment":"Superscript text","arguments":{"text":"Text"}},"inputBotInlineResultPhoto":{"comment":"Photo","arguments":{"id":"Result ID","type":"Result type (see bot API docs)","photo":"Photo to send","send_message":"Message to send when the result is selected"}},"pageBlockSlideshow":{"comment":"Slideshow","arguments":{"items":"Slideshow items","caption":"Caption"}},"pageBlockRelatedArticles":{"comment":"Related articles","arguments":{"title":"Title","articles":"Related articles"}},"phoneCallDiscardReasonDisconnect":{"comment":"The phone call was disconnected","arguments":{"gigagroup":"Is this a broadcast group?"}},"pageBlockMap":{"comment":"A map","arguments":{"geo":"Location of the map center","zoom":"Map zoom level; 13-20","w":"Map width in pixels before applying scale; 16-102","h":"Map height in pixels before applying scale; 16-1024","caption":"Caption"}},"phoneCallDiscardReasonBusy":{"comment":"The phone call was discarded because the user is busy in another call","arguments":{"gigagroup":"Is this a broadcast group?"}},"phoneCallDiscardReasonHangup":{"comment":"The phone call was ended normally","arguments":{"gigagroup":"Is this a broadcast group?"}},"postAddress":{"comment":"Shipping address","arguments":{"street_line1":"First line for the address","street_line2":"Second line for the address","city":"City","state":"State, if applicable (empty otherwise)","country_iso2":"ISO 3166-1 alpha-2 country code","post_code":"Address post code"}},"pageBlockAudio":{"comment":"Audio","arguments":{"audio_id":"Audio ID (to be fetched from the container {@link RawPage} constructor","caption":"Audio caption"}},"labeledPrice":{"comment":"This object represents a portion of the price for goods or services.","arguments":{"label":"Portion label","amount":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}},"invoice":{"comment":"Invoice","arguments":{"flags":"Flags, see TL conditional fields","test":"Test invoice","name_requested":"Set this flag if you require the user's full name to complete the order","phone_requested":"Set this flag if you require the user's phone number to complete the order","email_requested":"Set this flag if you require the user's email address to complete the order","shipping_address_requested":"Set this flag if you require the user's shipping address to complete the order","flexible":"Set this flag if the final price depends on the shipping method","phone_to_provider":"Set this flag if user's phone number should be sent to provider","email_to_provider":"Set this flag if user's email address should be sent to provider","recurring":"Whether this is a recurring payment","currency":"Three-letter ISO 4217 currency code, or XTR for Telegram Stars.","prices":"Price breakdown, a list of components (e.g. product price, tax, discount, delivery cost, delivery tax, bonus, etc.)","max_tip_amount":"The maximum accepted amount for tips in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","suggested_tip_amounts":"A vector of suggested amounts of tips in the smallest units of the currency (integer, not float/double). At most 4 suggested tip amounts can be specified. The suggested tip amounts must be positive, passed in a strictly increased order and must not exceed max_tip_amount.","terms_url":"Terms of service URL"}},"webDocumentNoProxy":{"comment":"Remote document that can be downloaded without proxying through telegram","arguments":{"url":"Document URL","size":"File size","mime_type":"MIME type","attributes":"Attributes for media types"}},"inputWebDocument":{"comment":"The document","arguments":{"url":"Remote document URL to be downloaded using the appropriate method","size":"Remote file size","mime_type":"Mime type","attributes":"Attributes for media types"}},"paymentSavedCredentialsCard":{"comment":"Saved credit card","arguments":{"id":"Card ID","title":"Title"}},"inputWebFileLocation":{"comment":"Location of a remote HTTP(s) file","arguments":{"url":"HTTP URL of file","access_hash":"Access hash"}},"webDocument":{"comment":"Remote document","arguments":{"url":"Document URL","access_hash":"Access hash","size":"File size","mime_type":"MIME type","attributes":"Attributes for media types"}},"paymentRequestedInfo":{"comment":"Order info provided by the user","arguments":{"flags":"Flags, see TL conditional fields","name":"User's full name","phone":"User's phone number","email":"User's email address","shipping_address":"User's shipping address"}},"inputWebFileAudioAlbumThumbLocation":{"comment":"Used to download an album cover for any music file using {@link upload.RawGetWebFileRequest}, see the webfile docs for more info ».","arguments":{"flags":"Flags, see TL conditional fields","small":"Used to return a thumbnail with 100x100 resolution (instead of the default 600x600)","document":"The audio file in question: must NOT be provided in secret chats, provide the title and performer fields instead.","title":"Song title: should only be used in secret chats, in normal chats provide document instead, as it has more lax rate limits.","performer":"Song performer: should only be used in secret chats, in normal chats provide document instead, as it has more lax rate limits."}},"payments.paymentForm":{"comment":"Payment form","arguments":{"flags":"Flags, see TL conditional fields","can_save_credentials":"Whether the user can choose to save credentials.","password_missing":"Indicates that the user can save payment credentials, but only after setting up a 2FA password (currently the account doesn't have a 2FA password)","form_id":"Form ID","bot_id":"Bot ID","title":"Form title","description":"Description","photo":"Product photo","invoice":"Invoice","provider_id":"Payment provider ID.","url":"Payment form URL","native_provider":"Payment provider name.
One of the following:
- stripe","native_params":"Contains information about the payment provider, if available, to support it natively without the need for opening the URL.
A JSON object that can contain the following fields:

- apple_pay_merchant_id: Apple Pay merchant ID
- google_pay_public_key: Google Pay public key
- need_country: True, if the user country must be provided,
- need_zip: True, if the user ZIP/postal code must be provided,
- need_cardholder_name: True, if the cardholder name must be provided
","additional_methods":"Additional payment methods","saved_info":"Saved server-side order information","saved_credentials":"Contains information about saved card credentials","users":"Users"}},"inputWebFileGeoPointLocation":{"comment":"Used to download a server-generated image with the map preview from a {@link RawGeoPoint}, see the webfile docs for more info ».","arguments":{"geo_point":"Generated from the lat, long and accuracy_radius parameters of the {@link RawGeoPoint}","access_hash":"Access hash of the {@link RawGeoPoint}","w":"Map width in pixels before applying scale; 16-1024","h":"Map height in pixels before applying scale; 16-1024","zoom":"Map zoom level; 13-20","scale":"Map scale; 1-3"}},"upload.webFile":{"comment":"Represents a chunk of an HTTP webfile downloaded through telegram's secure MTProto servers","arguments":{"size":"File size","mime_type":"Mime type","file_type":"File type","mtime":"Modified time","bytes":"Data"}},"payments.paymentFormStarGift":{"comment":"Represents a payment form for a gift, see here » for more info.","arguments":{"form_id":"Form ID.","invoice":"Invoice"}},"payments.paymentReceipt":{"comment":"Receipt","arguments":{"flags":"Flags, see TL conditional fields","date":"Date of generation","bot_id":"Bot ID","provider_id":"Provider ID","title":"Title","description":"Description","photo":"Photo","invoice":"Invoice","info":"Info","shipping":"Selected shipping option","tip_amount":"Tipped amount","currency":"Three-letter ISO 4217 currency code","total_amount":"Total amount in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","credentials_title":"Payment credential name","users":"Users"}},"payments.paymentVerificationNeeded":{"comment":"Payment was not successful, additional verification is needed","arguments":{"url":"URL for additional payment credentials verification"}},"pageBlockKicker":{"comment":"Kicker","arguments":{"text":"Contents"}},"payments.paymentResult":{"comment":"Payment result","arguments":{"updates":"Info about the payment"}},"inputPaymentCredentialsSaved":{"comment":"Saved payment credentials","arguments":{"id":"Credential ID","tmp_password":"Temporary password"}},"inputPaymentCredentialsGooglePay":{"comment":"Google Pay payment credentials","arguments":{"payment_token":"Payment token"}},"inputPaymentCredentialsApplePay":{"comment":"Apple pay payment credentials","arguments":{"payment_data":"Payment data"}},"inputPaymentCredentials":{"comment":"Payment credentials","arguments":{"flags":"Flags, see TL conditional fields","save":"Save payment credential for future use","data":"Payment credentials"}},"dataJSON":{"comment":"Represents a json-encoded object","arguments":{"data":"JSON-encoded object"}},"account.tmpPassword":{"comment":"Temporary payment password","arguments":{"tmp_password":"Temporary password","valid_until":"Validity period"}},"pageBlockCover":{"comment":"A page cover","arguments":{"cover":"Cover"}},"phoneCallWaiting":{"comment":"Incoming phone call","arguments":{"flags":"Flags, see TL conditional fields","video":"Is this a video call","id":"Call ID","access_hash":"Access hash","date":"Date","admin_id":"Admin ID","participant_id":"Participant ID","protocol":"Phone call protocol info","receive_date":"When was the phone call received"}},"phoneCallEmpty":{"comment":"Empty constructor","arguments":{"id":"Call ID"}},"shippingOption":{"comment":"Shipping option","arguments":{"id":"Option ID","title":"Title","prices":"List of price portions"}},"phoneCallRequested":{"comment":"Requested phone call","arguments":{"flags":"Flags, see TL conditional fields","video":"Whether this is a video call","id":"Phone call ID","access_hash":"Access hash","date":"When was the phone call created","admin_id":"ID of the creator of the phone call","participant_id":"ID of the other participant of the phone call","g_a_hash":"Parameter for key exchange","protocol":"Call protocol info to be passed to libtgvoip"}},"phoneCallAccepted":{"comment":"An accepted phone call","arguments":{"flags":"Flags, see TL conditional fields","video":"Whether this is a video call","id":"ID of accepted phone call","access_hash":"Access hash of phone call","date":"When was the call accepted","admin_id":"ID of the call creator","participant_id":"ID of the other user in the call","g_b":"B parameter for secure E2E phone call key exchange","protocol":"Protocol to use for phone call"}},"phoneCall":{"comment":"Phone call","arguments":{"flags":"Flags, see TL conditional fields","p2p_allowed":"Whether P2P connection to the other peer is allowed","video":"Whether this is a video call","id":"Call ID","access_hash":"Access hash","date":"Date of creation of the call","admin_id":"User ID of the creator of the call","participant_id":"User ID of the other participant in the call","g_a_or_b":"Parameter for key exchange","key_fingerprint":"Key fingerprint","protocol":"Call protocol info to be passed to libtgvoip","connections":"List of endpoints the user can connect to exchange call data","start_date":"When was the call actually started","custom_parameters":"Custom JSON-encoded call parameters to be passed to tgcalls."}},"phoneConnection":{"comment":"Identifies an endpoint that can be used to connect to the other user in a phone call","arguments":{"flags":"Flags, see TL conditional fields","tcp":"Whether TCP should be used","id":"Endpoint ID","ip":"IP address of endpoint","ipv6":"IPv6 address of endpoint","port":"Port ID","peer_tag":"Our peer tag"}},"phoneCallDiscarded":{"comment":"Indicates a discarded phone call","arguments":{"flags":"Flags, see TL conditional fields","need_rating":"Whether the server required the user to {@link phone.RawSetCallRatingRequest} the call","need_debug":"Whether the server required the client to {@link phone.RawSaveCallDebugRequest} the libtgvoip call debug data","video":"Whether the call was a video call","id":"Call ID","reason":"Why was the phone call discarded","duration":"Duration of the phone call in seconds"}},"phone.phoneCall":{"comment":"A VoIP phone call","arguments":{"phone_call":"The VoIP phone call","users":"VoIP phone call participants"}},"phoneCallProtocol":{"comment":"Protocol info for libtgvoip","arguments":{"flags":"Flags, see TL conditional fields","udp_p2p":"Whether to allow P2P connection to the other participant","udp_reflector":"Whether to allow connection to the other participants through the reflector servers","min_layer":"Minimum layer for remote libtgvoip","max_layer":"Maximum layer for remote libtgvoip","library_versions":"When using {@link phone.RawRequestCallRequest} and {@link phone.RawAcceptCallRequest}, specify all library versions supported by the client.
The server will merge and choose the best library version supported by both peers, returning only the best value in the result of the callee's {@link phone.RawAcceptCallRequest} and in the {@link RawPhoneCallAccepted} update received by the caller."}},"upload.cdnFile":{"comment":"Represent a chunk of a CDN file.","arguments":{"bytes":"The data"}},"payments.paymentFormStars":{"comment":"Represents a payment form, for payments to be using Telegram Stars, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","form_id":"Form ID.","bot_id":"Bot ID.","title":"Form title","description":"Description","photo":"Product photo","invoice":"Invoice","users":"Info about users mentioned in the other fields."}},"phoneConnectionWebrtc":{"comment":"WebRTC connection parameters","arguments":{"flags":"Flags, see TL conditional fields","turn":"Whether this is a TURN endpoint","stun":"Whether this is a STUN endpoint","id":"Endpoint ID","ip":"IP address","ipv6":"IPv6 address","port":"Port","username":"Username","password":"Password"}},"cdnPublicKey":{"comment":"Public key to use only during handshakes to CDN DCs.","arguments":{"dc_id":"CDN DC ID","public_key":"RSA public key"}},"payments.validatedRequestedInfo":{"comment":"Validated user-provided info","arguments":{"flags":"Flags, see TL conditional fields","id":"ID","shipping_options":"Shipping options"}},"payments.paymentReceiptStars":{"comment":"Receipt for payment made using Telegram Stars.","arguments":{"flags":"Flags, see TL conditional fields","date":"Date of generation","bot_id":"Bot ID","title":"Title","description":"Description","photo":"Product photo","invoice":"Invoice","currency":"Currency, always XTR.","total_amount":"Amount of Telegram Stars.","transaction_id":"Transaction ID","users":"Info about users mentioned in the other fields."}},"payments.savedInfo":{"comment":"Saved server-side order information","arguments":{"flags":"Flags, see TL conditional fields","has_saved_credentials":"Whether the user has some saved payment credentials","saved_info":"Saved server-side order information"}},"langPackStringPluralized":{"comment":"A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info","arguments":{"flags":"Flags, see TL conditional fields","key":"Localization key","zero_value":"Value for zero objects","one_value":"Value for one object","two_value":"Value for two objects","few_value":"Value for a few objects","many_value":"Value for many objects","other_value":"Default value"}},"inputStickerSetItem":{"comment":"Sticker in a stickerset","arguments":{"flags":"Flags, see TL conditional fields","document":"The sticker","emoji":"Associated emoji","mask_coords":"Coordinates for mask sticker","keywords":"Set of keywords, separated by commas (can't be provided for mask stickers)"}},"langPackDifference":{"comment":"Changes to the app's localization pack","arguments":{"lang_code":"Language code","from_version":"Previous version number","version":"New version number","strings":"Localized strings"}},"langPackString":{"comment":"Translated localization string","arguments":{"key":"Language key","value":"Value"}},"phoneCallDiscardReasonMissed":{"comment":"The phone call was missed","arguments":{"gigagroup":"Is this a broadcast group?"}},"channelAdminLogEventActionChangeAbout":{"comment":"The description was changed","arguments":{"prev_value":"Previous description","new_value":"New description"}},"langPackStringDeleted":{"comment":"Deleted localization string","arguments":{"key":"Localization key"}},"channelAdminLogEventActionChangeUsername":{"comment":"Channel/supergroup username was changed","arguments":{"prev_value":"Old username","new_value":"New username"}},"channelAdminLogEventActionToggleInvites":{"comment":"Invites were enabled/disabled","arguments":{"new_value":"New value"}},"cdnConfig":{"comment":"Configuration for CDN file downloads.","arguments":{"public_keys":"Vector of public keys to use only during handshakes to CDN DCs."}},"channelAdminLogEventActionChangeTitle":{"comment":"Channel/supergroup title was changed","arguments":{"prev_value":"Previous title","new_value":"New title"}},"channelAdminLogEventActionToggleSignatures":{"comment":"Channel signatures were enabled/disabled","arguments":{"new_value":"New value"}},"channelAdminLogEventActionUpdatePinned":{"comment":"A message was pinned","arguments":{"message":"The message that was pinned"}},"channelAdminLogEventActionEditMessage":{"comment":"A message was edited","arguments":{"prev_message":"Old message","new_message":"New message"}},"paymentCharge":{"comment":"Payment identifier","arguments":{"id":"Telegram payment identifier","provider_charge_id":"Provider payment identifier"}},"channelAdminLogEventActionParticipantInvite":{"comment":"A user was invited to the group","arguments":{"participant":"The user that was invited"}},"channelAdminLogEventActionParticipantToggleBan":{"comment":"The banned rights of a user were changed","arguments":{"prev_participant":"Old banned rights of user","new_participant":"New banned rights of user"}},"upload.cdnFileReuploadNeeded":{"comment":"The file was cleared from the temporary RAM cache of the CDN and has to be re-uploaded.","arguments":{"request_token":"Request token (see CDN)"}},"channelAdminLogEventActionParticipantLeave":{"comment":"A user left the channel/supergroup (in the case of big groups, info of the user that has joined isn't shown)","arguments":{"gigagroup":"Is this a broadcast group?"}},"channelAdminLogEventActionChangeStickerSet":{"comment":"The supergroup's stickerset was changed","arguments":{"prev_stickerset":"Previous stickerset","new_stickerset":"New stickerset"}},"channelAdminLogEventActionParticipantToggleAdmin":{"comment":"The admin rights of a user were changed","arguments":{"prev_participant":"Previous admin rights","new_participant":"New admin rights"}},"channelAdminLogEventActionDefaultBannedRights":{"comment":"The default banned rights were modified","arguments":{"prev_banned_rights":"Previous global banned rights","new_banned_rights":"New global banned rights."}},"channelAdminLogEventActionParticipantJoin":{"comment":"A user has joined the group (in the case of big groups, info of the user that has joined isn't shown)","arguments":{"gigagroup":"Is this a broadcast group?"}},"channelAdminLogEventActionChangeLinkedChat":{"comment":"The linked chat was changed","arguments":{"prev_value":"Previous linked chat","new_value":"New linked chat"}},"channelAdminLogEventActionStartGroupCall":{"comment":"A group call was started","arguments":{"call":"Group call"}},"langPackLanguage":{"comment":"Identifies a localization pack","arguments":{"flags":"Flags, see TL conditional fields","official":"Whether the language pack is official","rtl":"Is this a localization pack for an RTL language","beta":"Is this a beta localization pack?","name":"Language name","native_name":"Language name in the language itself","lang_code":"Language code (pack identifier)","base_lang_code":"Identifier of a base language pack; may be empty. If a string is missed in the language pack, then it should be fetched from base language pack. Unsupported in custom language packs","plural_code":"A language code to be used to apply plural forms. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more info","strings_count":"Total number of non-deleted strings from the language pack","translated_count":"Total number of translated strings from the language pack","translations_url":"Link to language translation interface; empty for custom local language packs"}},"channelAdminLogEventActionParticipantMute":{"comment":"A group call participant was muted","arguments":{"participant":"The participant that was muted"}},"channelAdminLogEventActionParticipantJoinByInvite":{"comment":"A user joined the supergroup/channel using a specific invite link","arguments":{"flags":"Flags, see TL conditional fields","via_chatlist":"The participant joined by importing a chat folder deep link ».","invite":"The invite link used to join the supergroup/channel"}},"channelAdminLogEventActionTogglePreHistoryHidden":{"comment":"The hidden prehistory setting was {@link channels.RawTogglePreHistoryHiddenRequest}","arguments":{"new_value":"New value"}},"channelAdminLogEventActionExportedInviteRevoke":{"comment":"A specific invite link was revoked","arguments":{"invite":"The invite link that was revoked"}},"channelAdminLogEventActionExportedInviteDelete":{"comment":"A chat invite was deleted","arguments":{"invite":"The deleted chat invite"}},"channelAdminLogEventActionToggleGroupCallSetting":{"comment":"Group call settings were changed","arguments":{"join_muted":"Whether all users are muted by default upon joining"}},"channelAdminLogEventActionDiscardGroupCall":{"comment":"A group call was terminated","arguments":{"call":"The group call that was terminated"}},"channelAdminLogEventActionParticipantUnmute":{"comment":"A group call participant was unmuted","arguments":{"participant":"The participant that was unmuted"}},"channelAdminLogEventActionToggleSlowMode":{"comment":"{@link channels.RawToggleSlowModeRequest}","arguments":{"prev_value":"Previous slow mode value","new_value":"New slow mode value"}},"channelAdminLogEventActionExportedInviteEdit":{"comment":"A chat invite was edited","arguments":{"prev_invite":"Previous chat invite information","new_invite":"New chat invite information"}},"channelAdminLogEventActionParticipantJoinByRequest":{"comment":"A new member was accepted to the chat by an admin","arguments":{"invite":"The invite link that was used to join the chat","approved_by":"ID of the admin that approved the invite"}},"channelAdminLogEventActionChangeAvailableReactions":{"comment":"The set of allowed message reactions » for this channel has changed","arguments":{"prev_value":"Previously allowed reaction emojis","new_value":"New allowed reaction emojis"}},"channelAdminLogEventActionChangeLocation":{"comment":"The geo group location was changed","arguments":{"prev_value":"Previous location","new_value":"New location"}},"channelAdminLogEventActionParticipantVolume":{"comment":"channelAdminLogEvent.user_id has set the volume of participant.peer to participant.volume","arguments":{"participant":"The participant whose volume was changed"}},"channelAdminLogEventActionChangeHistoryTTL":{"comment":"The Time-To-Live of messages in this chat was changed","arguments":{"prev_value":"Previous value","new_value":"New value"}},"channelAdminLogEventActionCreateTopic":{"comment":"A forum topic was created","arguments":{"topic":"The forum topic that was created"}},"channelAdminLogEventActionChangePhoto":{"comment":"The channel/supergroup's picture was changed","arguments":{"prev_photo":"Previous picture","new_photo":"New picture"}},"channelAdminLogEventActionToggleForum":{"comment":"Forum functionality was enabled or disabled.","arguments":{"new_value":"Whether forum functionality was enabled or disabled."}},"channelAdminLogEventActionEditTopic":{"comment":"A forum topic was edited","arguments":{"prev_topic":"Previous topic information","new_topic":"New topic information"}},"channelAdminLogEventActionToggleNoForwards":{"comment":"Forwards were enabled or disabled","arguments":{"new_value":"Old value"}},"channelAdminLogEventActionSendMessage":{"comment":"A message was posted in a channel","arguments":{"message":"The message that was sent"}},"channelAdminLogEventActionChangeUsernames":{"comment":"The list of usernames associated with the channel was changed","arguments":{"prev_value":"Previous set of usernames","new_value":"New set of usernames"}},"channelAdminLogEventActionDeleteTopic":{"comment":"A forum topic was deleted","arguments":{"topic":"The forum topic that was deleted"}},"channelAdminLogEventActionToggleAntiSpam":{"comment":"Native antispam functionality was enabled or disabled.","arguments":{"new_value":"Whether antispam functionality was enabled or disabled."}},"channelAdminLogEventActionDeleteMessage":{"comment":"A message was deleted","arguments":{"message":"The message that was deleted"}},"channelAdminLogEventActionPinTopic":{"comment":"A forum topic was pinned or unpinned","arguments":{"flags":"Flags, see TL conditional fields","prev_topic":"Previous topic information","new_topic":"New topic information"}},"channelAdminLogEventActionChangeWallpaper":{"comment":"The wallpaper was changed","arguments":{"prev_value":"Previous wallpaper","new_value":"New wallpaper"}},"channelAdminLogEventActionChangeProfilePeerColor":{"comment":"The profile accent color was changed","arguments":{"prev_value":"Previous accent palette","new_value":"New accent palette"}},"channelAdminLogEventsFilter":{"comment":"Filter only certain admin log events","arguments":{"flags":"Flags, see TL conditional fields","join":"{@link RawChannelAdminLogEventActionParticipantJoin}, including {@link RawChannelAdminLogEventActionParticipantJoinByInvite} and {@link RawChannelAdminLogEventActionParticipantJoinByRequest}.","leave":"{@link RawChannelAdminLogEventActionParticipantLeave}","invite":"{@link RawChannelAdminLogEventActionParticipantInvite}","ban":"{@link RawChannelAdminLogEventActionParticipantToggleBan}","unban":"{@link RawChannelAdminLogEventActionParticipantToggleBan}","kick":"{@link RawChannelAdminLogEventActionParticipantToggleBan}","unkick":"{@link RawChannelAdminLogEventActionParticipantToggleBan}","promote":"{@link RawChannelAdminLogEventActionParticipantToggleAdmin}","demote":"{@link RawChannelAdminLogEventActionParticipantToggleAdmin}","info":"Info change events (when {@link RawChannelAdminLogEventActionChangeAbout}, {@link RawChannelAdminLogEventActionChangeLinkedChat}, {@link RawChannelAdminLogEventActionChangeLocation}, {@link RawChannelAdminLogEventActionChangePhoto}, {@link RawChannelAdminLogEventActionChangeStickerSet}, {@link RawChannelAdminLogEventActionChangeTitle} or {@link RawChannelAdminLogEventActionChangeUsername}, {@link RawChannelAdminLogEventActionToggleSlowMode}, {@link RawChannelAdminLogEventActionChangeHistoryTTL} settings of a channel gets modified)","settings":"Settings change events ({@link RawChannelAdminLogEventActionToggleInvites}, {@link RawChannelAdminLogEventActionTogglePreHistoryHidden}, {@link RawChannelAdminLogEventActionToggleSignatures}, {@link RawChannelAdminLogEventActionDefaultBannedRights}, {@link RawChannelAdminLogEventActionToggleForum})","pinned":"{@link RawChannelAdminLogEventActionUpdatePinned}","edit":"{@link RawChannelAdminLogEventActionEditMessage}","delete":"{@link RawChannelAdminLogEventActionDeleteMessage}","group_call":"Group call events","invites":"Invite events","send":"A message was posted in a channel","forums":"Forum-related events","sub_extend":"{@link RawChannelAdminLogEventActionParticipantSubExtend}"}},"channelAdminLogEventActionToggleSignatureProfiles":{"comment":"Channel signature profiles were enabled/disabled.","arguments":{"new_value":"New value"}},"popularContact":{"comment":"Popular contact","arguments":{"client_id":"Contact identifier","importers":"How many people imported this contact"}},"channelAdminLogEvent":{"comment":"Admin log event","arguments":{"id":"Event ID","date":"Date","user_id":"User ID","action":"Action"}},"channelAdminLogEventActionChangeEmojiStickerSet":{"comment":"The supergroup's custom emoji stickerset was changed.","arguments":{"prev_stickerset":"Old value","new_stickerset":"New value"}},"channelAdminLogEventActionStopPoll":{"comment":"A poll was stopped","arguments":{"message":"The poll that was stopped"}},"inputPhoneCall":{"comment":"Phone call","arguments":{"id":"Call ID","access_hash":"Access hash"}},"recentMeUrlUnknown":{"comment":"Unknown t.me url","arguments":{"url":"URL"}},"recentMeUrlChat":{"comment":"Recent t.me link to a chat","arguments":{"url":"t.me URL","chat_id":"Chat ID"}},"recentMeUrlChatInvite":{"comment":"Recent t.me invite link to a chat","arguments":{"url":"t.me URL","chat_invite":"Chat invitation"}},"channelAdminLogEventActionChangeEmojiStatus":{"comment":"The emoji status was changed","arguments":{"prev_value":"Previous emoji status","new_value":"New emoji status"}},"recentMeUrlUser":{"comment":"Recent t.me link to a user","arguments":{"url":"URL","user_id":"User ID"}},"help.recentMeUrls":{"comment":"Recent t.me URLs","arguments":{"urls":"URLs","chats":"Chats","users":"Users"}},"messages.favedStickersNotModified":{"comment":"No new favorited stickers were found","arguments":{"gigagroup":"Is this a broadcast group?"}},"recentMeUrlStickerSet":{"comment":"Recent t.me stickerset installation URL","arguments":{"url":"t.me URL","set":"Stickerset"}},"channels.adminLogResults":{"comment":"Admin log events","arguments":{"events":"Admin log events","chats":"Chats mentioned in events","users":"Users mentioned in events"}},"account.webAuthorizations":{"comment":"Web authorizations","arguments":{"authorizations":"Web authorization list","users":"Users"}},"inputSingleMedia":{"comment":"A single media in an album or grouped media sent with {@link messages.RawSendMultiMediaRequest}.","arguments":{"flags":"Flags, see TL conditional fields","media":"The media","random_id":"Unique client media ID required to prevent message resending","message":"A caption for the media","entities":"Message entities for styled text"}},"webAuthorization":{"comment":"Represents a bot logged in using the Telegram login widget","arguments":{"hash":"Authorization hash","bot_id":"Bot ID","domain":"The domain name of the website on which the user has logged in.","browser":"Browser user-agent","platform":"Platform","date_created":"When was the web session created","date_active":"When was the web session last active","ip":"IP address","region":"Region, determined from IP address"}},"inputMessageReplyTo":{"comment":"Message to which the specified message replies to","arguments":{"id":"ID of the message that replies to the message we need"}},"inputMessagePinned":{"comment":"Pinned message","arguments":{"gigagroup":"Is this a broadcast group?"}},"channelAdminLogEventActionParticipantSubExtend":{"comment":"A paid subscriber has extended their Telegram Star subscription ».","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputMessageCallbackQuery":{"comment":"Used by bots for fetching information about the message that originated a callback query","arguments":{"id":"Message ID","query_id":"Callback query ID"}},"dialogPeerFolder":{"comment":"Peer folder","arguments":{"folder_id":"Peer folder ID, for more info click here"}},"inputDialogPeerFolder":{"comment":"All peers in a peer folder","arguments":{"folder_id":"Peer folder ID, for more info click here"}},"dialogPeer":{"comment":"Peer","arguments":{"peer":"Peer"}},"messages.foundStickerSetsNotModified":{"comment":"No further results were found","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.favedStickers":{"comment":"Favorited stickers","arguments":{"hash":"Hash used for caching, for more info click here","packs":"Emojis associated to stickers","stickers":"Favorited stickers"}},"fileHash":{"comment":"SHA256 Hash of an uploaded file, to be checked for validity after download","arguments":{"offset":"Offset from where to start computing SHA-256 hash","limit":"Length","hash":"SHA-256 Hash of file chunk, to be checked for validity after download"}},"inputClientProxy":{"comment":"Info about an MTProxy used to connect.","arguments":{"address":"Proxy address","port":"Proxy port"}},"help.termsOfServiceUpdateEmpty":{"comment":"No changes were made to telegram's terms of service","arguments":{"expires":"New TOS updates will have to be queried using {@link help.RawGetTermsOfServiceUpdateRequest} in expires seconds"}},"inputDialogPeer":{"comment":"A peer","arguments":{"peer":"Peer"}},"inputSecureFileUploaded":{"comment":"Uploaded secure file, for more info see the passport docs »","arguments":{"id":"Secure file ID","parts":"Secure file part count","md5_checksum":"MD5 hash of encrypted uploaded file, to be checked server-side","file_hash":"File hash","secret":"Secret"}},"help.termsOfServiceUpdate":{"comment":"Info about an update of telegram's terms of service. If the terms of service are declined, then the {@link account.RawDeleteAccountRequest} method should be called with the reason \"Decline ToS update\"","arguments":{"expires":"New TOS updates will have to be queried using {@link help.RawGetTermsOfServiceUpdateRequest} in expires seconds","terms_of_service":"New terms of service"}},"inputSecureFile":{"comment":"Pre-uploaded passport file, for more info see the passport docs »","arguments":{"id":"Secure file ID","access_hash":"Secure file access hash"}},"secureFileEmpty":{"comment":"Empty constructor","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureData":{"comment":"Secure passport data, for more info see the passport docs »","arguments":{"data":"Data","data_hash":"Data hash","secret":"Secret"}},"secureFile":{"comment":"Secure passport file, for more info see the passport docs »","arguments":{"id":"ID","access_hash":"Access hash","size":"File size","dc_id":"DC ID","date":"Date of upload","file_hash":"File hash","secret":"Secret"}},"securePlainPhone":{"comment":"Phone number to use in telegram passport: it must be verified, first ».","arguments":{"phone":"Phone number"}},"messages.foundStickerSets":{"comment":"Found stickersets","arguments":{"hash":"Hash used for caching, for more info click here","sets":"Found stickersets"}},"securePlainEmail":{"comment":"Email address to use in telegram passport: it must be verified, first ».","arguments":{"email":"Email address"}},"secureValueTypePassport":{"comment":"Passport","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValueTypePersonalDetails":{"comment":"Personal details","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValueTypeDriverLicense":{"comment":"Driver's license","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValueTypeAddress":{"comment":"Address","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValueTypeBankStatement":{"comment":"Bank statement","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValueTypePassportRegistration":{"comment":"Internal registration passport","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValueTypeRentalAgreement":{"comment":"Rental agreement","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValueTypeTemporaryRegistration":{"comment":"Temporary registration","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValueTypePhone":{"comment":"Phone","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValueTypeEmail":{"comment":"Email","arguments":{"gigagroup":"Is this a broadcast group?"}},"channelAdminLogEventActionChangePeerColor":{"comment":"The message accent color was changed","arguments":{"prev_value":"Previous accent palette","new_value":"New accent palette"}},"inputSecureValue":{"comment":"Secure value, for more info see the passport docs »","arguments":{"flags":"Flags, see TL conditional fields","type":"Secure passport value type","data":"Encrypted Telegram Passport element data","front_side":"Encrypted passport file with the front side of the document","reverse_side":"Encrypted passport file with the reverse side of the document","selfie":"Encrypted passport file with a selfie of the user holding the document","translation":"Array of encrypted passport files with translated versions of the provided documents","files":"Array of encrypted passport files with photos the of the documents","plain_data":"Plaintext verified passport data"}},"secureValueTypeIdentityCard":{"comment":"Identity card","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValueHash":{"comment":"Secure value hash","arguments":{"type":"Secure value type","hash":"Hash"}},"secureValueErrorFrontSide":{"comment":"Represents an issue with the front side of a document. The error is considered resolved when the file with the front side of the document changes.","arguments":{"type":"One of {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}","file_hash":"File hash","text":"Error message"}},"secureValueTypeInternalPassport":{"comment":"Internal passport","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValueErrorReverseSide":{"comment":"Represents an issue with the reverse side of a document. The error is considered resolved when the file with reverse side of the document changes.","arguments":{"type":"One of {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}","file_hash":"File hash","text":"Error message"}},"secureValueErrorFile":{"comment":"Represents an issue with a document scan. The error is considered resolved when the file with the document scan changes.","arguments":{"type":"One of {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}","file_hash":"File hash","text":"Error message"}},"secureValueErrorSelfie":{"comment":"Represents an issue with the selfie with a document. The error is considered resolved when the file with the selfie changes.","arguments":{"type":"One of {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}","file_hash":"File hash","text":"Error message"}},"secureValueErrorFiles":{"comment":"Represents an issue with a list of scans. The error is considered resolved when the list of files containing the scans changes.","arguments":{"type":"One of {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}","file_hash":"File hash","text":"Error message"}},"secureValueError":{"comment":"Secure value error","arguments":{"type":"Type of element which has the issue","hash":"Hash","text":"Error message"}},"inputMessageID":{"comment":"Message by ID","arguments":{"id":"Message ID"}},"account.authorizationForm":{"comment":"Telegram Passport authorization form","arguments":{"flags":"Flags, see TL conditional fields","required_types":"Required Telegram Passport documents","values":"Already submitted Telegram Passport documents","errors":"Telegram Passport errors","users":"Info about the bot to which the form will be submitted","privacy_policy_url":"URL of the service's privacy policy"}},"secureCredentialsEncrypted":{"comment":"Encrypted credentials required to decrypt telegram passport data.","arguments":{"data":"Encrypted JSON-serialized data with unique user's payload, data hashes and secrets required for EncryptedPassportElement decryption and authentication, as described in decrypting data »","hash":"Data hash for data authentication as described in decrypting data »","secret":"Secret, encrypted with the bot's public RSA key, required for data decryption as described in decrypting data »"}},"secureValueErrorTranslationFiles":{"comment":"Represents an issue with the translated version of a document. The error is considered resolved when a file with the document translation changes.","arguments":{"type":"One of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}","file_hash":"Hash","text":"Error message"}},"secureValueErrorTranslationFile":{"comment":"Represents an issue with one of the files that constitute the translation of a document. The error is considered resolved when the file changes.","arguments":{"type":"One of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeUtilityBill}, {@link RawSecureValueTypeBankStatement}, {@link RawSecureValueTypeRentalAgreement}, {@link RawSecureValueTypePassportRegistration}, {@link RawSecureValueTypeTemporaryRegistration}","file_hash":"File hash","text":"Error message"}},"secureValueTypeUtilityBill":{"comment":"Utility bill","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureValue":{"comment":"Secure value","arguments":{"flags":"Flags, see TL conditional fields","type":"Secure passport value type","data":"Encrypted Telegram Passport element data","front_side":"Encrypted passport file with the front side of the document","reverse_side":"Encrypted passport file with the reverse side of the document","selfie":"Encrypted passport file with a selfie of the user holding the document","translation":"Array of encrypted passport files with translated versions of the provided documents","files":"Array of encrypted passport files with photos the of the documents","plain_data":"Plaintext verified passport data","hash":"Data hash"}},"help.deepLinkInfoEmpty":{"comment":"Deep link info empty","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.sentEmailCode":{"comment":"The sent email code","arguments":{"email_pattern":"The email (to which the code was sent) must match this pattern","length":"The length of the verification code"}},"passwordKdfAlgoUnknown":{"comment":"Unknown KDF (most likely, the client is outdated and does not support the specified KDF algorithm)","arguments":{"gigagroup":"Is this a broadcast group?"}},"savedPhoneContact":{"comment":"Saved contact","arguments":{"phone":"Phone number","first_name":"First name","last_name":"Last name","date":"Date added"}},"passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow":{"comment":"This key derivation algorithm defines that SRP 2FA login must be used","arguments":{"salt1":"One of two salts used by the derivation function (see SRP 2FA login)","salt2":"One of two salts used by the derivation function (see SRP 2FA login)","g":"Base (see SRP 2FA login)","p":"2048-bit modulus (see SRP 2FA login)"}},"securePasswordKdfAlgoUnknown":{"comment":"Unknown KDF algo (most likely the client has to be updated)","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputCheckPasswordEmpty":{"comment":"There is no password","arguments":{"gigagroup":"Is this a broadcast group?"}},"secureSecretSettings":{"comment":"Secure settings","arguments":{"secure_algo":"Secure KDF algo","secure_secret":"Secure secret","secure_secret_id":"Secret ID"}},"secureRequiredType":{"comment":"Required type","arguments":{"flags":"Flags, see TL conditional fields","native_names":"Native names","selfie_required":"Is a selfie required","translation_required":"Is a translation required","type":"Secure value type"}},"account.takeout":{"comment":"Takeout info","arguments":{"id":"Takeout ID"}},"inputCheckPasswordSRP":{"comment":"Constructor for checking the validity of a 2FA SRP password (see SRP)","arguments":{"srp_id":"SRP ID","A":"A parameter (see SRP)","M1":"M1 parameter (see SRP)"}},"securePasswordKdfAlgoSHA512":{"comment":"SHA512 KDF algo","arguments":{"salt":"Salt"}},"help.passportConfigNotModified":{"comment":"Password configuration not modified","arguments":{"gigagroup":"Is this a broadcast group?"}},"jsonObjectValue":{"comment":"JSON key: value pair","arguments":{"key":"Key","value":"Value"}},"jsonNull":{"comment":"null JSON value","arguments":{"gigagroup":"Is this a broadcast group?"}},"jsonNumber":{"comment":"JSON numeric value","arguments":{"value":"Value"}},"jsonBool":{"comment":"JSON boolean value","arguments":{"value":"Value"}},"secureRequiredTypeOneOf":{"comment":"One of","arguments":{"types":"Secure required value types"}},"jsonString":{"comment":"JSON string","arguments":{"value":"Value"}},"jsonArray":{"comment":"JSON array","arguments":{"value":"JSON values"}},"jsonObject":{"comment":"JSON object value","arguments":{"value":"Values"}},"inputAppEvent":{"comment":"Event that occurred in the application.","arguments":{"time":"Client's exact timestamp for the event","type":"Type of event","peer":"Arbitrary numeric value for more convenient selection of certain event types, or events referring to a certain object","data":"Details of the event"}},"help.passportConfig":{"comment":"Telegram passport configuration","arguments":{"hash":"Hash used for caching, for more info click here","countries_langs":"Localization"}},"pageTableRow":{"comment":"Table row","arguments":{"cells":"Table cells"}},"pageCaption":{"comment":"Page caption","arguments":{"text":"Caption","credit":"Credits"}},"pageTableCell":{"comment":"Table cell","arguments":{"flags":"Flags, see TL conditional fields","header":"Is this element part of the column header","align_center":"Horizontally centered block","align_right":"Right-aligned block","valign_middle":"Vertically centered block","valign_bottom":"Block vertically-aligned to the bottom","text":"Content","colspan":"For how many columns should this cell extend","rowspan":"For how many rows should this cell extend"}},"pageListItemBlocks":{"comment":"List item","arguments":{"blocks":"Blocks"}},"page":{"comment":"Instant view page","arguments":{"flags":"Flags, see TL conditional fields","part":"Indicates that not full page preview is available to the client and it will need to fetch full Instant View from the server using {@link messages.RawGetWebPagePreviewRequest}.","rtl":"Whether the page contains RTL text","v2":"Whether this is an IV v2 page","url":"Original page HTTP URL","blocks":"Page elements (like with HTML elements, only as TL constructors)","photos":"Photos in page","documents":"Media in page","views":"View count"}},"pageListOrderedItemText":{"comment":"Ordered list of text items","arguments":{"num":"Number of element within ordered list","text":"Text"}},"pageRelatedArticle":{"comment":"Related article","arguments":{"flags":"Flags, see TL conditional fields","url":"URL of article","webpage_id":"Webpage ID of generated IV preview","title":"Title","description":"Description","photo_id":"ID of preview photo","author":"Author name","published_date":"Date of publication"}},"help.userInfoEmpty":{"comment":"Internal use","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.supportName":{"comment":"Localized name for telegram support","arguments":{"name":"Localized name"}},"pageListItemText":{"comment":"List item","arguments":{"text":"Text"}},"pollAnswerVoters":{"comment":"A poll answer, and how users voted on it","arguments":{"flags":"Flags, see TL conditional fields","chosen":"Whether we have chosen this answer","correct":"For quizzes, whether the option we have chosen is correct","option":"The param that has to be passed to {@link messages.RawSendVoteRequest}.","voters":"How many users voted for this option"}},"pollAnswer":{"comment":"A possible answer of a poll","arguments":{"text":"Textual representation of the answer (only Premium users can use custom emoji entities here).","option":"The param that has to be passed to {@link messages.RawSendVoteRequest}."}},"pollResults":{"comment":"Results of poll","arguments":{"flags":"Flags, see TL conditional fields","min":"Similar to min objects, used for poll constructors that are the same for all users so they don't have the option chosen by the current user (you can use {@link messages.RawGetPollResultsRequest} to get the full poll results).","results":"Poll results","total_voters":"Total number of people that voted in the poll","recent_voters":"IDs of the last users that recently voted in the poll","solution":"Explanation of quiz solution","solution_entities":"Message entities for styled text in quiz solution"}},"secureValueErrorData":{"comment":"Represents an issue in one of the data fields that was provided by the user. The error is considered resolved when the field's value changes.","arguments":{"type":"The section of the user's Telegram Passport which has the error, one of {@link RawSecureValueTypePersonalDetails}, {@link RawSecureValueTypePassport}, {@link RawSecureValueTypeDriverLicense}, {@link RawSecureValueTypeIdentityCard}, {@link RawSecureValueTypeInternalPassport}, {@link RawSecureValueTypeAddress}","data_hash":"Data hash","field":"Name of the data field which has the error","text":"Error message"}},"chatOnlines":{"comment":"Number of online users in a chat","arguments":{"onlines":"Number of online users"}},"chatAdminRights":{"comment":"Represents the rights of an admin in a channel/supergroup.","arguments":{"flags":"Flags, see TL conditional fields","change_info":"If set, allows the admin to modify the description of the channel/supergroup","post_messages":"If set, allows the admin to post messages in the channel","edit_messages":"If set, allows the admin to also edit messages from other admins in the channel","delete_messages":"If set, allows the admin to also delete messages from other admins in the channel","ban_users":"If set, allows the admin to ban users from the channel/supergroup","invite_users":"If set, allows the admin to invite users in the channel/supergroup","pin_messages":"If set, allows the admin to pin messages in the channel/supergroup","add_admins":"If set, allows the admin to add other admins with the same (or more limited) permissions in the channel/supergroup","anonymous":"Whether this admin is anonymous","manage_call":"If set, allows the admin to change group call/livestream settings","other":"Set this flag if none of the other flags are set, but you still want the user to be an admin: if this or any of the other flags are set, the admin can get the chat admin log, get chat statistics, get message statistics in channels, get channel members, see anonymous administrators in supergroups and ignore slow mode.","manage_topics":"If set, allows the admin to create, delete or modify forum topics ».","post_stories":"If set, allows the admin to post stories as the channel.","edit_stories":"If set, allows the admin to edit stories posted by the other admins of the channel.","delete_stories":"If set, allows the admin to delete stories posted by the other admins of the channel."}},"statsURL":{"comment":"URL with chat statistics","arguments":{"url":"Chat statistics"}},"chatBannedRights":{"comment":"Represents the rights of a normal user in a supergroup/channel/chat. In this case, the flags are inverted: if set, a flag does not allow a user to do X.","arguments":{"flags":"Flags, see TL conditional fields","view_messages":"If set, does not allow a user to view messages in a supergroup/channel/chat","send_messages":"If set, does not allow a user to send messages in a supergroup/chat","send_media":"If set, does not allow a user to send any media in a supergroup/chat","send_stickers":"If set, does not allow a user to send stickers in a supergroup/chat","send_gifs":"If set, does not allow a user to send gifs in a supergroup/chat","send_games":"If set, does not allow a user to send games in a supergroup/chat","send_inline":"If set, does not allow a user to use inline bots in a supergroup/chat.","embed_links":"If set, does not allow a user to embed links in the messages of a supergroup/chat","send_polls":"If set, does not allow a user to send polls in a supergroup/chat","change_info":"If set, does not allow any user to change the description of a supergroup/chat","invite_users":"If set, does not allow any user to invite users in a supergroup/chat","pin_messages":"If set, does not allow any user to pin messages in a supergroup/chat","manage_topics":"If set, does not allow any user to create, delete or modify forum topics ».","send_photos":"If set, does not allow a user to send photos in a supergroup/chat.","send_videos":"If set, does not allow a user to send videos in a supergroup/chat.","send_roundvideos":"If set, does not allow a user to send round videos in a supergroup/chat.","send_audios":"If set, does not allow a user to send audio files in a supergroup/chat.","send_voices":"If set, does not allow a user to send voice messages in a supergroup/chat.","send_docs":"If set, does not allow a user to send documents in a supergroup/chat.","send_plain":"If set, does not allow a user to send text messages in a supergroup/chat.","until_date":"Validity of said permissions (it is considered forever any value less then 30 seconds or more then 366 days)."}},"inputWallPaperNoFile":{"comment":"Wallpaper with no file access hash, used for example when deleting (unsave=true) wallpapers using {@link account.RawSaveWallPaperRequest}, specifying just the wallpaper ID.","arguments":{"id":"Wallpaper ID"}},"inputWallPaper":{"comment":"Wallpaper","arguments":{"id":"Wallpaper ID","access_hash":"Access hash"}},"inputWallPaperSlug":{"comment":"Wallpaper by slug (a unique ID, obtained from a wallpaper link »)","arguments":{"slug":"Unique wallpaper ID"}},"account.wallPapers":{"comment":"Installed wallpapers","arguments":{"hash":"Hash used for caching, for more info click here","wallpapers":"Wallpapers"}},"account.wallPapersNotModified":{"comment":"No new wallpapers were found","arguments":{"gigagroup":"Is this a broadcast group?"}},"wallPaperSettings":{"comment":"Wallpaper rendering information.","arguments":{"flags":"Flags, see TL conditional fields","blur":"For image wallpapers »: if set, the JPEG must be downscaled to fit in 450x450 square and then box-blurred with radius 12.","motion":"If set, the background needs to be slightly moved when the device is rotated.","background_color":"Used for solid », gradient » and freeform gradient » fills.","second_background_color":"Used for gradient » and freeform gradient » fills.","third_background_color":"Used for freeform gradient » fills.","fourth_background_color":"Used for freeform gradient » fills.","intensity":"Used for pattern wallpapers ».","rotation":"Clockwise rotation angle of the gradient, in degrees; 0-359. Should be always divisible by 45.","emoticon":"If set, this wallpaper can be used as a channel wallpaper and is represented by the specified UTF-8 emoji."}},"codeSettings":{"comment":"Settings used by telegram servers for sending the confirm code.\n\nExample implementations: telegram for android, tdlib.","arguments":{"flags":"Flags, see TL conditional fields","allow_flashcall":"Whether to allow phone verification via phone calls.","current_number":"Pass true if the phone number is used on the current device. Ignored if allow_flashcall is not set.","allow_app_hash":"If a token that will be included in eventually sent SMSs is required: required in newer versions of android, to use the android SMS receiver APIs","allow_missed_call":"Whether this device supports receiving the code using the {@link auth.RawCodeTypeMissedCall} method","allow_firebase":"Whether Firebase auth is supported","unknown_number":"Set this flag if there is a SIM card in the current device, but it is not possible to check whether the specified phone number matches the SIM's phone number.","logout_tokens":"Previously stored future auth tokens, see the documentation for more info »","token":"Used only by official iOS apps for Firebase auth: device token for apple push.","app_sandbox":"Used only by official iOS apps for firebase auth: whether a sandbox-certificate will be used during transmission of the push notification."}},"help.userInfo":{"comment":"Internal use","arguments":{"message":"Info","entities":"Message entities for styled text","author":"Author","date":"Date"}},"autoDownloadSettings":{"comment":"Autodownload settings","arguments":{"flags":"Flags, see TL conditional fields","disabled":"Disable automatic media downloads?","video_preload_large":"Whether to preload the first seconds of videos larger than the specified limit","audio_preload_next":"Whether to preload the next audio track when you're listening to music","phonecalls_less_data":"Whether to enable data saving mode in phone calls","stories_preload":"Whether to preload stories; in particular, the first {@link RawDocumentAttributeVideo}.preload_prefix_size bytes of story videos should be preloaded.","photo_size_max":"Maximum size of photos to preload","video_size_max":"Maximum size of videos to preload","file_size_max":"Maximum size of other files to preload","video_upload_maxbitrate":"Maximum suggested bitrate for uploading videos","small_queue_active_operations_max":"A limit, specifying the maximum number of files that should be downloaded in parallel from the same DC, for files smaller than 20MB.","large_queue_active_operations_max":"A limit, specifying the maximum number of files that should be downloaded in parallel from the same DC, for files bigger than 20MB."}},"account.autoDownloadSettings":{"comment":"Media autodownload settings","arguments":{"low":"Low data usage preset","medium":"Medium data usage preset","high":"High data usage preset"}},"emojiKeyword":{"comment":"Emoji keyword","arguments":{"keyword":"Keyword","emoticons":"Emojis associated to keyword"}},"emojiKeywordsDifference":{"comment":"Changes to emoji keywords","arguments":{"lang_code":"Language code for keywords","from_version":"Previous emoji keyword list version","version":"Current version of emoji keyword list","keywords":"Emojis associated to keywords"}},"emojiLanguage":{"comment":"Emoji language","arguments":{"lang_code":"Language code"}},"emojiKeywordDeleted":{"comment":"Deleted emoji keyword","arguments":{"keyword":"Keyword","emoticons":"Emojis that were associated to keyword"}},"emojiURL":{"comment":"An HTTP URL which can be used to automatically log in into translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation","arguments":{"url":"An HTTP URL which can be used to automatically log in into translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation"}},"inputFolderPeer":{"comment":"Peer in a folder","arguments":{"peer":"Peer","folder_id":"Peer folder ID, for more info click here"}},"folder":{"comment":"Folder","arguments":{"flags":"Flags, see TL conditional fields","autofill_new_broadcasts":"Automatically add new channels to this folder","autofill_public_groups":"Automatically add joined new public supergroups to this folder","autofill_new_correspondents":"Automatically add new private chats to this folder","id":"Folder ID","title":"Folder title","photo":"Folder picture"}},"urlAuthResultRequest":{"comment":"Details about the authorization request, for more info click here »","arguments":{"flags":"Flags, see TL conditional fields","request_write_access":"Whether the bot would like to send messages to the user","bot":"Username of a bot, which will be used for user authorization. If not specified, the current bot's username will be assumed. The url's domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details.","domain":"The domain name of the website on which the user will log in."}},"folderPeer":{"comment":"Peer in a folder","arguments":{"peer":"Folder peer info","folder_id":"Peer folder ID, for more info click here"}},"urlAuthResultAccepted":{"comment":"Details about an accepted authorization request, for more info click here »","arguments":{"url":"The URL name of the website on which the user has logged in."}},"urlAuthResultDefault":{"comment":"Details about an accepted authorization request, for more info click here »","arguments":{"gigagroup":"Is this a broadcast group?"}},"securePasswordKdfAlgoPBKDF2HMACSHA512iter100000":{"comment":"PBKDF2 with SHA512 and 100000 iterations KDF algo","arguments":{"salt":"Salt"}},"messages.searchCounter":{"comment":"Indicates how many results would be found by a {@link messages.RawSearchRequest} call with the same parameters","arguments":{"flags":"Flags, see TL conditional fields","inexact":"If set, the results may be inexact","filter":"Provided message filter","count":"Number of results that were found server-side"}},"channelLocationEmpty":{"comment":"No location (normal supergroup)","arguments":{"gigagroup":"Is this a broadcast group?"}},"channelLocation":{"comment":"Geographical location of supergroup (geogroups)","arguments":{"geo_point":"Geographical location of supergroup","address":"Textual description of the address"}},"help.deepLinkInfo":{"comment":"Deep link info, see the here for more details","arguments":{"flags":"Flags, see TL conditional fields","update_app":"An update of the app is required to parse this link","message":"Message to show to the user","entities":"Message entities for styled text"}},"theme":{"comment":"Theme","arguments":{"flags":"Flags, see TL conditional fields","creator":"Whether the current user is the creator of this theme","default":"Whether this is the default theme","for_chat":"Whether this theme is meant to be used as a chat theme","id":"Theme ID","access_hash":"Theme access hash","slug":"Unique theme ID","title":"Theme name","document":"Theme","settings":"Theme settings","emoticon":"Theme emoji","installs_count":"Installation count"}},"account.themesNotModified":{"comment":"No new themes were installed","arguments":{"gigagroup":"Is this a broadcast group?"}},"peerLocated":{"comment":"Peer geolocated nearby","arguments":{"peer":"Peer","expires":"Validity period of current data","distance":"Distance from the peer in meters"}},"inputTheme":{"comment":"Theme","arguments":{"id":"ID","access_hash":"Access hash"}},"auth.loginToken":{"comment":"Login token (for QR code login)","arguments":{"expires":"Expiration date of QR code","token":"Token to render in QR code"}},"peerSelfLocated":{"comment":"Current peer","arguments":{"expires":"Expiry of geolocation info for current peer"}},"account.themes":{"comment":"Installed themes","arguments":{"hash":"Hash used for caching, for more info click here","themes":"Themes"}},"inputThemeSlug":{"comment":"Theme by theme ID","arguments":{"slug":"Unique theme ID obtained from a theme deep link »"}},"auth.loginTokenSuccess":{"comment":"Login via token (QR code) succeeded!","arguments":{"authorization":"Authorization info"}},"account.contentSettings":{"comment":"Sensitive content settings","arguments":{"flags":"Flags, see TL conditional fields","sensitive_enabled":"Whether viewing of sensitive (NSFW) content is enabled","sensitive_can_change":"Whether the current client can change the sensitive content settings to view NSFW content"}},"auth.loginTokenMigrateTo":{"comment":"Repeat the query to the specified DC","arguments":{"dc_id":"DC ID","token":"Token to use for login"}},"baseThemeArctic":{"comment":"Arctic theme","arguments":{"gigagroup":"Is this a broadcast group?"}},"baseThemeClassic":{"comment":"Classic theme","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputThemeSettings":{"comment":"Theme settings","arguments":{"flags":"Flags, see TL conditional fields","message_colors_animated":"If set, the freeform gradient fill needs to be animated on every sent message","base_theme":"Default theme on which this theme is based","accent_color":"Accent color, ARGB format","outbox_accent_color":"Accent color of outgoing messages in ARGB format","message_colors":"The fill to be used as a background for outgoing messages, in RGB24 format.
If just one or two equal colors are provided, describes a solid fill of a background.
If two different colors are provided, describes the top and bottom colors of a 0-degree gradient.
If three or four colors are provided, describes a freeform gradient fill of a background.","wallpaper":"{@link RawInputWallPaper} or {@link RawInputWallPaper} when passing wallpaper files for image or pattern wallpapers, {@link RawInputWallPaperNoFile} with id=0 otherwise.","wallpaper_settings":"Wallpaper settings."}},"baseThemeNight":{"comment":"Night theme","arguments":{"gigagroup":"Is this a broadcast group?"}},"themeSettings":{"comment":"Theme settings","arguments":{"flags":"Flags, see TL conditional fields","message_colors_animated":"If set, the freeform gradient fill needs to be animated on every sent message.","base_theme":"Base theme","accent_color":"Accent color, ARGB format","outbox_accent_color":"Accent color of outgoing messages in ARGB format","message_colors":"The fill to be used as a background for outgoing messages, in RGB24 format.
If just one or two equal colors are provided, describes a solid fill of a background.
If two different colors are provided, describes the top and bottom colors of a 0-degree gradient.
If three or four colors are provided, describes a freeform gradient fill of a background.","wallpaper":"Wallpaper"}},"webPageAttributeTheme":{"comment":"Page theme","arguments":{"flags":"Flags, see TL conditional fields","documents":"Theme files","settings":"Theme settings"}},"webPageAttributeStory":{"comment":"Webpage preview of a Telegram story","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer that posted the story","id":"Story ID","story":"May contain the story, if not the story should be fetched when and if needed using {@link stories.RawGetStoriesByIDRequest} with the above id and peer."}},"baseThemeTinted":{"comment":"Tinted theme","arguments":{"gigagroup":"Is this a broadcast group?"}},"bankCardOpenUrl":{"comment":"Credit card info URL provided by the bank","arguments":{"url":"Info URL","name":"Bank name"}},"webPageAttributeStickerSet":{"comment":"Contains info about a stickerset », for a {@link RawWebPage} preview of a stickerset deep link » (the {@link RawWebPage} will have a type of telegram_stickerset).","arguments":{"flags":"Flags, see TL conditional fields","emojis":"Whether this i s a custom emoji stickerset.","text_color":"Whether the color of this TGS custom emoji stickerset should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context.","stickers":"A subset of the stickerset in the stickerset."}},"messages.inactiveChats":{"comment":"Inactive chat list","arguments":{"dates":"When was the chat last active","chats":"Chat list","users":"Users mentioned in the chat list"}},"dialogFilterSuggested":{"comment":"Suggested folders","arguments":{"filter":"Folder info","description":"Folder description"}},"dialogFilter":{"comment":"Dialog filter AKA folder","arguments":{"flags":"Flags, see TL conditional fields","contacts":"Whether to include all contacts in this folder","non_contacts":"Whether to include all non-contacts in this folder","groups":"Whether to include all groups in this folder","broadcasts":"Whether to include all channels in this folder","bots":"Whether to include all bots in this folder","exclude_muted":"Whether to exclude muted chats from this folder","exclude_read":"Whether to exclude read chats from this folder","exclude_archived":"Whether to exclude archived chats from this folder","id":"Folder ID","title":"Folder name (max 12 UTF-8 chars)","emoticon":"Emoji to use as icon for the folder.","color":"A color ID for the folder tag associated to this folder, see here » for more info.","pinned_peers":"Pinned chats, folders can have unlimited pinned chats","include_peers":"Include the following chats in this folder","exclude_peers":"Exclude the following chats from this folder"}},"dialogFilterChatlist":{"comment":"A folder imported using a chat folder deep link ».","arguments":{"flags":"Flags, see TL conditional fields","has_my_invites":"Whether the current user has created some chat folder deep links » to share the folder as well.","id":"ID of the folder","title":"Name of the folder (max 12 UTF-8 chars)","emoticon":"Emoji to use as icon for the folder.","color":"A color ID for the folder tag associated to this folder, see here » for more info.","pinned_peers":"Pinned chats, folders can have unlimited pinned chats","include_peers":"Chats to include in the folder"}},"dialogFilterDefault":{"comment":"Used only when reordering folders to indicate the default (all chats) folder.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.votesList":{"comment":"How users voted in a poll","arguments":{"flags":"Flags, see TL conditional fields","count":"Total number of votes for all options (or only for the chosen option, if provided to {@link messages.RawGetPollVotesRequest})","votes":"Vote info for each user","chats":"Mentioned chats","users":"Info about users that voted in the poll","next_offset":"Offset to use with the next {@link messages.RawGetPollVotesRequest} request, empty string if no more results are available."}},"statsPercentValue":{"comment":"Channel statistics percentage.
\nCompute the percentage simply by doing part * total / 100","arguments":{"part":"Partial value","total":"Total value"}},"statsGraphAsync":{"comment":"This channel statistics graph must be generated asynchronously using {@link stats.RawLoadAsyncGraphRequest} to reduce server load","arguments":{"token":"Token to use for fetching the async graph"}},"statsGraphError":{"comment":"An error occurred while generating the statistics graph","arguments":{"error":"The error"}},"baseThemeDay":{"comment":"Day theme","arguments":{"gigagroup":"Is this a broadcast group?"}},"statsDateRangeDays":{"comment":"Channel statistics date range","arguments":{"min_date":"Initial date","max_date":"Final date"}},"statsGraph":{"comment":"Channel statistics graph","arguments":{"flags":"Flags, see TL conditional fields","json":"Statistics data","zoom_token":"Zoom token"}},"payments.bankCardData":{"comment":"Credit card info, provided by the card's bank(s)","arguments":{"title":"Credit card title","open_urls":"Info URL(s) provided by the card's bank(s)"}},"poll":{"comment":"Poll","arguments":{"id":"ID of the poll","flags":"Flags, see TL conditional fields","closed":"Whether the poll is closed and doesn't accept any more answers","public_voters":"Whether cast votes are publicly visible to all users (non-anonymous poll)","multiple_choice":"Whether multiple options can be chosen as answer","quiz":"Whether this is a quiz (with wrong and correct answers, results shown in the return type)","question":"The question of the poll (only Premium users can use custom emoji entities here).","answers":"The possible answers, vote using {@link messages.RawSendVoteRequest}.","close_period":"Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date.","close_date":"Point in time (UNIX timestamp in seconds) when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future; can't be used together with close_period."}},"videoSizeStickerMarkup":{"comment":"An animated profile picture based on a sticker.","arguments":{"stickerset":"Stickerset","sticker_id":"Sticker ID","background_colors":"1, 2, 3 or 4 RBG-24 colors used to generate a solid (1), gradient (2) or freeform gradient (3, 4) background, similar to how fill wallpapers are generated. The rotation angle for gradient backgrounds is 0."}},"statsAbsValueAndPrev":{"comment":"Statistics value couple; initial and final value for period of time currently in consideration","arguments":{"current":"Current value","previous":"Previous value"}},"help.promoDataEmpty":{"comment":"No PSA/MTProxy info is available","arguments":{"expires":"Re-fetch PSA/MTProxy info after the specified number of seconds"}},"help.promoData":{"comment":"MTProxy/Public Service Announcement information","arguments":{"flags":"Flags, see TL conditional fields","proxy":"MTProxy-related channel","expires":"Expiry of PSA/MTProxy info","peer":"MTProxy/PSA peer","chats":"Chat info","users":"User info","psa_type":"PSA type","psa_message":"PSA message"}},"stats.broadcastStats":{"comment":"Channel statistics.","arguments":{"period":"Period in consideration","followers":"Follower count change for period in consideration","views_per_post":"total_viewcount/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date).","shares_per_post":"total_sharecount/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)","reactions_per_post":"total_reactions/postcount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)","views_per_story":"total_views/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)","shares_per_story":"total_shares/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)","reactions_per_story":"total_reactions/storycount, for posts posted during the period in consideration.
Note that in this case, current refers to the period in consideration (min_date till max_date), and prev refers to the previous period ((min_date - (max_date - min_date)) till min_date)","enabled_notifications":"Percentage of subscribers with enabled notifications","growth_graph":"Channel growth graph (absolute subscriber count)","followers_graph":"Followers growth graph (relative subscriber count)","mute_graph":"Muted users graph (relative)","top_hours_graph":"Views per hour graph (absolute)","interactions_graph":"Interactions graph (absolute)","iv_interactions_graph":"IV interactions graph (absolute)","views_by_source_graph":"Views by source graph (absolute)","new_followers_by_source_graph":"New followers by source graph (absolute)","languages_graph":"Subscriber language graph (pie chart)","reactions_by_emotion_graph":"A graph containing the number of reactions on posts categorized by emotion","story_interactions_graph":"A graph containing the number of story views and shares","story_reactions_by_emotion_graph":"A graph containing the number of reactions on stories categorized by emotion","recent_posts_interactions":"Detailed statistics about number of views and shares of recently sent messages and stories"}},"statsGroupTopPoster":{"comment":"Information about an active user in a supergroup","arguments":{"user_id":"User ID","messages":"Number of messages for statistics period in consideration","avg_chars":"Average number of characters per message"}},"statsGroupTopInviter":{"comment":"Information about an active supergroup inviter","arguments":{"user_id":"User ID","invitations":"Number of invitations for statistics period in consideration"}},"restrictionReason":{"comment":"Restriction reason.\n\nContains the reason why access to a certain object must be restricted. Clients are supposed to deny access to the channel if the platform field is equal to all or to the current platform (ios, android, wp, etc.). Platforms can be concatenated (ios-android, ios-wp), unknown platforms are to be ignored. The text is the error message that should be shown to the user.","arguments":{"platform":"Platform identifier (ios, android, wp, all, etc.), can be concatenated with a dash as separator (android-ios, ios-wp, etc)","reason":"Restriction reason (porno, terms, etc.)","text":"Error message to be shown to the user"}},"stats.megagroupStats":{"comment":"Supergroup statistics","arguments":{"period":"Period in consideration","members":"Member count change for period in consideration","messages":"Message number change for period in consideration","viewers":"Number of users that viewed messages, for range in consideration","posters":"Number of users that posted messages, for range in consideration","growth_graph":"Supergroup growth graph (absolute subscriber count)","members_graph":"Members growth (relative subscriber count)","new_members_by_source_graph":"New members by source graph","languages_graph":"Subscriber language graph (pie chart)","messages_graph":"Message activity graph (stacked bar graph, message type)","actions_graph":"Group activity graph (deleted, modified messages, blocked users)","top_hours_graph":"Activity per hour graph (absolute)","weekdays_graph":"Activity per day of week graph (absolute)","top_posters":"Info about most active group members","top_admins":"Info about most active group admins","top_inviters":"Info about most active group inviters","users":"Info about users mentioned in statistics"}},"help.countryCode":{"comment":"Country code and phone number pattern of a specific country","arguments":{"flags":"Flags, see TL conditional fields","country_code":"ISO country code","prefixes":"Possible phone prefixes","patterns":"Phone patterns: for example, XXX XXX XXX"}},"globalPrivacySettings":{"comment":"Global privacy settings","arguments":{"flags":"Flags, see TL conditional fields","archive_and_mute_new_noncontact_peers":"Whether to archive and mute new chats from non-contacts","keep_archived_unmuted":"Whether unmuted chats will be kept in the Archive chat list when they get a new message.","keep_archived_folders":"Whether unmuted chats that are always included or pinned in a folder, will be kept in the Archive chat list when they get a new message. Ignored if keep_archived_unmuted is set.","hide_read_marks":"If this flag is set, the {@link RawInputPrivacyKeyStatusTimestamp} key will also apply to the ability to use {@link messages.RawGetOutboxReadDateRequest} on messages sent to us.
Meaning, users that cannot see our exact last online date due to the current value of the {@link RawInputPrivacyKeyStatusTimestamp} key will receive a 403 USER_PRIVACY_RESTRICTED error when invoking {@link messages.RawGetOutboxReadDateRequest} to fetch the exact read date of a message they sent to us.
The {@link RawUserFull}.read_dates_private flag will be set for users that have this flag enabled.","new_noncontact_peers_require_premium":"If set, only users that have a premium account, are in our contact list, or already have a private chat with us can write to us; a 403 PRIVACY_PREMIUM_REQUIRED error will be emitted otherwise.
The {@link RawUserFull}.contact_require_premium flag will be set for users that have this flag enabled.
To check whether we can write to a user with this flag enabled, if we haven't yet cached all the required information (for example we don't have the {@link RawUserFull} or history of all users while displaying the chat list in the sharing UI) the {@link users.RawGetIsPremiumRequiredToContactRequest} method may be invoked, passing the list of users currently visible in the UI, returning a list of booleans that directly specify whether we can or cannot write to each user.
Premium users only, non-Premium users will receive a PREMIUM_ACCOUNT_REQUIRED error when trying to enable this flag."}},"pageListOrderedItemBlocks":{"comment":"Ordered list of IV blocks","arguments":{"num":"Number of element within ordered list","blocks":"Item contents"}},"help.countriesList":{"comment":"Name, ISO code, localized name and phone codes/patterns of all available countries","arguments":{"countries":"Name, ISO code, localized name and phone codes/patterns of all available countries","hash":"Hash used for caching, for more info click here"}},"help.countriesListNotModified":{"comment":"The country list has not changed","arguments":{"gigagroup":"Is this a broadcast group?"}},"statsGroupTopAdmin":{"comment":"Information about an active admin in a supergroup","arguments":{"user_id":"User ID","deleted":"Number of deleted messages for statistics period in consideration","kicked":"Number of kicked users for statistics period in consideration","banned":"Number of banned users for statistics period in consideration"}},"messages.messageViews":{"comment":"View, forward counter + info about replies","arguments":{"views":"View, forward counter + info about replies","chats":"Chats mentioned in constructor","users":"Users mentioned in constructor"}},"messages.discussionMessage":{"comment":"Information about a message thread","arguments":{"flags":"Flags, see TL conditional fields","messages":"The messages from which the thread starts. The messages are returned in reverse chronological order (i.e., in order of decreasing message ID).","max_id":"Message ID of latest reply in this thread","read_inbox_max_id":"Message ID of latest read incoming message in this thread","read_outbox_max_id":"Message ID of latest read outgoing message in this thread","unread_count":"Number of unread messages","chats":"Chats mentioned in constructor","users":"Users mentioned in constructor"}},"messageReplyStoryHeader":{"comment":"Represents a reply to a story","arguments":{"peer":"Sender of the story.","story_id":"Story ID"}},"messageViews":{"comment":"View, forward counter + info about replies of a specific message","arguments":{"flags":"Flags, see TL conditional fields","views":"View count of message","forwards":"Forward count of message","replies":"Reply and thread information of message"}},"peerBlocked":{"comment":"Information about a blocked peer","arguments":{"peer_id":"Peer ID","date":"When was the peer blocked"}},"stats.messageStats":{"comment":"Message statistics","arguments":{"views_graph":"Message view graph","reactions_by_emotion_graph":"A graph containing the number of reactions on stories categorized by emotion"}},"messageReplies":{"comment":"Info about the comment section of a channel post, or a simple message thread","arguments":{"flags":"Flags, see TL conditional fields","comments":"Whether this constructor contains information about the comment section of a channel post, or a simple message thread","replies":"Contains the total number of replies in this thread or comment section.","replies_pts":"PTS of the message that started this thread.","recent_repliers":"For channel post comments, contains information about the last few comment posters for a specific thread, to show a small list of commenter profile pictures in client previews.","channel_id":"For channel post comments, contains the ID of the associated discussion supergroup","max_id":"ID of the latest message in this thread or comment section.","read_max_id":"Contains the ID of the latest read message in this thread or comment section."}},"messageReplyHeader":{"comment":"Message replies and thread information","arguments":{"flags":"Flags, see TL conditional fields","reply_to_scheduled":"This is a reply to a scheduled message.","forum_topic":"Whether this message was sent in a forum topic (except for the General topic).","quote":"Whether this message is quoting a part of another message.","reply_to_msg_id":"ID of message to which this message is replying","reply_to_peer_id":"For replies sent in channel discussion threads of which the current user is not a member, the discussion group ID","reply_from":"When replying to a message sent by a certain peer to another chat, contains info about the peer that originally sent the message to that other chat.","reply_media":"When replying to a media sent by a certain peer to another chat, contains the media of the replied-to message.","reply_to_top_id":"ID of the message that started this message thread","quote_text":"Used to quote-reply to only a certain section (specified here) of the original message.","quote_entities":"Message entities for styled text from the quote_text field.","quote_offset":"Offset of the message quote_text within the original message (in UTF-16 code units)."}},"groupCallDiscarded":{"comment":"An ended group call","arguments":{"id":"Group call ID","access_hash":"Group call access hash","duration":"Group call duration"}},"help.country":{"comment":"Name, ISO code, localized name and phone codes/patterns of a specific country","arguments":{"flags":"Flags, see TL conditional fields","hidden":"Whether this country should not be shown in the list","iso2":"ISO code of country","default_name":"Name of the country in the country's language","name":"Name of the country in the user's language, if different from the original name","country_codes":"Phone codes/patterns"}},"groupCall":{"comment":"Info about a group call or livestream","arguments":{"flags":"Flags, see TL conditional fields","join_muted":"Whether the user should be muted upon joining the call","can_change_join_muted":"Whether the current user can change the value of the join_muted flag using {@link phone.RawToggleGroupCallSettingsRequest}","join_date_asc":"Specifies the ordering to use when locally sorting by date and displaying in the UI group call participants.","schedule_start_subscribed":"Whether we subscribed to the scheduled call","can_start_video":"Whether you can start streaming video into the call","record_video_active":"Whether the group call is currently being recorded","rtmp_stream":"Whether RTMP streams are allowed","listeners_hidden":"Whether the listeners list is hidden and cannot be fetched using {@link phone.RawGetGroupParticipantsRequest}. The phone.groupParticipants.count and groupCall.participants_count counters will still include listeners.","id":"Group call ID","access_hash":"Group call access hash","participants_count":"Participant count","title":"Group call title","stream_dc_id":"DC ID to be used for livestream chunks","record_start_date":"When was the recording started","schedule_date":"When is the call scheduled to start","unmuted_video_count":"Number of people currently streaming video into the call","unmuted_video_limit":"Maximum number of people allowed to stream video into the call","version":"Version"}},"phone.groupCall":{"comment":"Contains info about a group call, and partial info about its participants.","arguments":{"call":"Info about the group call","participants":"A partial list of participants.","participants_next_offset":"Next offset to use when fetching the remaining participants using {@link phone.RawGetGroupParticipantsRequest}","chats":"Chats mentioned in the participants vector","users":"Users mentioned in the participants vector"}},"phone.groupParticipants":{"comment":"Info about the participants of a group call or livestream","arguments":{"count":"Number of participants","participants":"List of participants","next_offset":"If not empty, the specified list of participants is partial, and more participants can be fetched specifying this parameter as offset in {@link phone.RawGetGroupParticipantsRequest}.","chats":"Mentioned chats","users":"Mentioned users","version":"Version info"}},"inputGroupCall":{"comment":"Points to a specific group call","arguments":{"id":"Group call ID","access_hash":"Group call access hash"}},"inlineQueryPeerTypeChat":{"comment":"Peer type: chat","arguments":{"gigagroup":"Is this a broadcast group?"}},"groupCallParticipant":{"comment":"Info about a group call participant","arguments":{"flags":"Flags, see TL conditional fields","muted":"Whether the participant is muted","left":"Whether the participant has left","can_self_unmute":"Whether the participant can unmute themselves","just_joined":"Whether the participant has just joined","versioned":"If set, and {@link RawUpdateGroupCallParticipants}.version < locally stored call.version, info about this participant should be ignored. If (...), and {@link RawUpdateGroupCallParticipants}.version > call.version+1, the participant list should be refetched using {@link phone.RawGetGroupParticipantsRequest}.","min":"If not set, the volume and muted_by_you fields can be safely used to overwrite locally cached information; otherwise, volume will contain valid information only if volume_by_admin is set both in the cache and in the received constructor.","muted_by_you":"Whether this participant was muted by the current user","volume_by_admin":"Whether our volume can only changed by an admin","self":"Whether this participant is the current user","video_joined":"Whether this participant is currently broadcasting video","peer":"Peer information","date":"When did this participant join the group call","active_date":"When was this participant last active in the group call","source":"Source ID","volume":"Volume, if not set the volume is set to 100%.","about":"Info about this participant","raise_hand_rating":"Specifies the UI visualization order of peers with raised hands: peers with a higher rating should be showed first in the list.","video":"Info about the video stream the participant is currently broadcasting","presentation":"Info about the screen sharing stream the participant is currently broadcasting"}},"inlineQueryPeerTypeMegagroup":{"comment":"Peer type: supergroup","arguments":{"gigagroup":"Is this a broadcast group?"}},"inlineQueryPeerTypePM":{"comment":"Peer type: private chat","arguments":{"gigagroup":"Is this a broadcast group?"}},"inlineQueryPeerTypeBroadcast":{"comment":"Peer type: channel","arguments":{"gigagroup":"Is this a broadcast group?"}},"inlineQueryPeerTypeBotPM":{"comment":"Peer type: private chat with a bot.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.historyImport":{"comment":"ID of a specific chat import session, click here for more info ».","arguments":{"id":"History import ID"}},"messages.affectedFoundMessages":{"comment":"Messages found and affected by changes","arguments":{"pts":"Event count after generation","pts_count":"Number of events that were generated","offset":"If bigger than zero, the request must be repeated to remove more messages","messages":"Affected message IDs"}},"messages.historyImportParsed":{"comment":"Contains information about a chat export file generated by a foreign chat app, click here for more info.
\nIf neither the pm or group flags are set, the specified chat export was generated from a chat of unknown type.","arguments":{"flags":"Flags, see TL conditional fields","pm":"The chat export file was generated from a private chat.","group":"The chat export file was generated from a group chat.","title":"Title of the chat."}},"videoSize":{"comment":"An animated profile picture in MPEG4 format","arguments":{"flags":"Flags, see TL conditional fields","type":"u for animated profile pictures, and v for trimmed and downscaled video previews","w":"Video width","h":"Video height","size":"File size","video_start_ts":"Timestamp that should be shown as static preview to the user (seconds)"}},"messages.exportedChatInviteReplaced":{"comment":"The specified chat invite was replaced with another one","arguments":{"invite":"The replaced chat invite","new_invite":"The invite that replaces the previous invite","users":"Mentioned users"}},"phone.exportedGroupCallInvite":{"comment":"An invite to a group call or livestream","arguments":{"link":"Invite link"}},"messages.chatAdminsWithInvites":{"comment":"Info about chat invites generated by admins.","arguments":{"admins":"Info about chat invites generated by admins.","users":"Mentioned users"}},"messages.exportedChatInvites":{"comment":"Info about chat invites exported by a certain admin.","arguments":{"count":"Number of invites exported by the admin","invites":"Exported invites","users":"Info about the admin"}},"groupCallParticipantVideoSourceGroup":{"comment":"Describes a group of video synchronization source identifiers","arguments":{"semantics":"SDP semantics","sources":"Source IDs"}},"chatAdminWithInvites":{"comment":"Info about chat invites generated by admins.","arguments":{"admin_id":"The admin","invites_count":"Number of invites generated by the admin","revoked_invites_count":"Number of revoked invites"}},"messages.checkedHistoryImportPeer":{"comment":"Contains a confirmation text to be shown to the user, upon importing chat history, click here for more info ».","arguments":{"confirm_text":"A confirmation text to be shown to the user, upon importing chat history »."}},"stickers.suggestedShortName":{"comment":"A suggested short name for a stickerpack","arguments":{"short_name":"Suggested short name"}},"chatInviteImporter":{"comment":"When and which user joined the chat using a chat invite","arguments":{"flags":"Flags, see TL conditional fields","requested":"Whether this user currently has a pending join request »","via_chatlist":"The participant joined by importing a chat folder deep link ».","user_id":"The user","date":"When did the user join","about":"For users with pending requests, contains bio of the user that requested to join","approved_by":"The administrator that approved the join request » of the user"}},"messages.chatInviteImporters":{"comment":"Info about the users that joined the chat using a specific chat invite","arguments":{"count":"Number of users that joined","importers":"The users that joined","users":"The users that joined"}},"botCommandScopeDefault":{"comment":"The commands will be valid in all dialogs","arguments":{"gigagroup":"Is this a broadcast group?"}},"botCommandScopeUsers":{"comment":"The specified bot commands will only be valid in all private chats with users.","arguments":{"gigagroup":"Is this a broadcast group?"}},"groupCallParticipantVideo":{"comment":"Info about a video stream","arguments":{"flags":"Flags, see TL conditional fields","paused":"Whether the stream is currently paused","endpoint":"Endpoint","source_groups":"Source groups","audio_source":"Audio source ID"}},"botCommandScopePeer":{"comment":"The specified bot commands will be valid only in a specific dialog.","arguments":{"peer":"The dialog"}},"botCommandScopeChats":{"comment":"The specified bot commands will be valid in all groups and supergroups.","arguments":{"gigagroup":"Is this a broadcast group?"}},"botCommandScopeChatAdmins":{"comment":"The specified bot commands will be valid only for chat administrators, in all groups and supergroups.","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.resetPasswordFailedWait":{"comment":"You recently requested a password reset that was canceled, please wait until the specified date before requesting another reset.","arguments":{"retry_date":"Wait until this date before requesting another reset."}},"account.resetPasswordRequestedWait":{"comment":"You successfully requested a password reset, please wait until the specified date before finalizing the reset.","arguments":{"until_date":"Wait until this date before finalizing the reset."}},"botCommandScopePeerAdmins":{"comment":"The specified bot commands will be valid for all admins of the specified group or supergroup.","arguments":{"peer":"The chat"}},"botCommandScopePeerUser":{"comment":"The specified bot commands will be valid only for a specific user in the specified group or supergroup.","arguments":{"peer":"The chat","user_id":"The user"}},"sponsoredMessage":{"comment":"A sponsored message.","arguments":{"flags":"Flags, see TL conditional fields","recommended":"Whether the message needs to be labeled as \"recommended\" instead of \"sponsored\"","can_report":"Whether this message can be reported as specified here ».","random_id":"Message ID","url":"Contains the URL to open when the user clicks on the sponsored message.","title":"Contains the title of the sponsored message.","message":"Sponsored message","entities":"Message entities for styled text in message.","photo":"If set, contains a custom profile photo bubble that should be displayed for the sponsored message, like for messages sent in groups.","color":"If set, the sponsored message should use the message accent color » specified in color.","button_text":"Label of the sponsored message button.","sponsor_info":"If set, contains additional information about the sponsor to be shown along with the message.","additional_info":"If set, contains additional information about the sponsored message to be shown along with the message."}},"account.resetPasswordOk":{"comment":"The 2FA password was reset successfully.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.sponsoredMessages":{"comment":"A set of sponsored messages associated to a channel","arguments":{"flags":"Flags, see TL conditional fields","posts_between":"If set, specifies the minimum number of messages between shown sponsored messages; otherwise, only one sponsored message must be shown after all ordinary messages.","messages":"Sponsored messages","chats":"Chats mentioned in the sponsored messages","users":"Users mentioned in the sponsored messages"}},"searchResultsCalendarPeriod":{"comment":"Information about found messages sent on a specific day, used to split the messages in {@link messages.RawSearchResultsCalendar} constructors by days.\n\nMultiple searchResultsCalendarPeriod constructors are returned in {@link messages.RawSearchResultsCalendar}, each containing information about the first, last and total number of messages matching the filter that were sent on a specific day.","arguments":{"date":"The day this object is referring to.","min_msg_id":"First message ID that was sent on this day.","max_msg_id":"Last message ID that was sent on this day.","count":"All messages that were sent on this day."}},"messages.sponsoredMessagesEmpty":{"comment":"No sponsored messages are available.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.searchResultsCalendar":{"comment":"Information about found messages sent on a specific day","arguments":{"flags":"Flags, see TL conditional fields","inexact":"If set, indicates that the results may be inexact","count":"Total number of results matching query","min_date":"Starting timestamp of attached messages","min_msg_id":"Ending timestamp of attached messages","offset_id_offset":"Indicates the absolute position of messages[0] within the total result set with count count.
This is useful, for example, if we need to display a progress/total counter (like photo 134 of 200, for all media in a chat, we could simply use photo ${offset_id_offset} of ${count}.","periods":"Used to split the messages by days: multiple SearchResultsCalendarPeriod constructors are returned, each containing information about the first, last and total number of messages matching the filter that were sent on a specific day.
This information can be easily used to split the returned messages by day.","messages":"Messages","chats":"Mentioned chats","users":"Mentioned users"}},"searchResultPosition":{"comment":"Information about a message in a specific position","arguments":{"msg_id":"Message ID","date":"When was the message sent","offset":"0-based message position in the full list of suitable messages"}},"users.userFull":{"comment":"Full user information","arguments":{"full_user":"Full user information","chats":"Mentioned chats","users":"Mentioned users"}},"messages.searchResultsPositions":{"comment":"Information about sparse positions of messages","arguments":{"count":"Total number of found messages","positions":"List of message positions"}},"messages.peerSettings":{"comment":"Peer settings","arguments":{"settings":"Peer settings","chats":"Mentioned chats","users":"Mentioned users"}},"channels.sendAsPeers":{"comment":"A list of peers that can be used to send messages in a specific group","arguments":{"peers":"Peers that can be used to send messages to the group","chats":"Mentioned chats","users":"Mentioned users"}},"videoSizeEmojiMarkup":{"comment":"An animated profile picture based on a custom emoji sticker.","arguments":{"emoji_id":"Custom emoji ID: the custom emoji sticker is shown at the center of the profile picture and occupies at most 67% of it.","background_colors":"1, 2, 3 or 4 RBG-24 colors used to generate a solid (1), gradient (2) or freeform gradient (3, 4) background, similar to how fill wallpapers are generated. The rotation angle for gradient backgrounds is 0."}},"availableReaction":{"comment":"Animations associated with a message reaction","arguments":{"flags":"Flags, see TL conditional fields","inactive":"If not set, the reaction can be added to new messages and enabled in chats.","premium":"Whether this reaction can only be used by Telegram Premium users","reaction":"Reaction emoji","title":"Reaction description","static_icon":"Static icon for the reaction","appear_animation":"The animated sticker to show when the user opens the reaction dropdown","select_animation":"The animated sticker to show when the user hovers over the reaction","activate_animation":"The animated sticker to show when the reaction is chosen and activated","effect_animation":"The background effect (still an animated sticker) to play under the activate_animation, when the reaction is chosen and activated","around_animation":"The animation that plays around the button when you press an existing reaction (played together with center_icon).","center_icon":"The animation of the emoji inside the button when you press an existing reaction (played together with around_animation)."}},"inlineQueryPeerTypeSameBotPM":{"comment":"Peer type: private chat with the bot itself","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.availableReactionsNotModified":{"comment":"No new reactions are available","arguments":{"gigagroup":"Is this a broadcast group?"}},"messageReactions":{"comment":"Message reactions »","arguments":{"flags":"Flags, see TL conditional fields","min":"Similar to min objects, used for message reaction » constructors that are the same for all users so they don't have the reactions sent by the current user (you can use {@link messages.RawGetMessagesReactionsRequest} to get the full reaction info).","can_see_list":"Whether {@link messages.RawGetMessageReactionsListRequest} can be used to see how each specific peer reacted to the message","reactions_as_tags":"If set or if there are no reactions, all present and future reactions should be treated as message tags, see here » for more info.","results":"Reactions","recent_reactions":"List of recent peers and their reactions","top_reactors":"Paid Telegram Star reactions leaderboard » for this message."}},"messages.messageReactionsList":{"comment":"List of peers that reacted to a specific message","arguments":{"flags":"Flags, see TL conditional fields","count":"Total number of reactions matching query","reactions":"List of peers that reacted to a specific message","chats":"Mentioned chats","users":"Mentioned users","next_offset":"If set, indicates the next offset to use to load more results by invoking {@link messages.RawGetMessageReactionsListRequest}."}},"messages.availableReactions":{"comment":"Animations and metadata associated with message reactions »","arguments":{"hash":"Hash used for caching, for more info click here","reactions":"Animations and metadata associated with message reactions »"}},"groupCallStreamChannel":{"comment":"Info about an RTMP stream in a group call or livestream","arguments":{"channel":"Channel ID","scale":"Specifies the duration of the video segment to fetch in milliseconds, by bitshifting 1000 to the right scale times: duration_ms := 1000 >> scale.","last_timestamp_ms":"Last seen timestamp to easily start fetching livestream chunks using {@link RawInputGroupCallStream}"}},"messages.exportedChatInvite":{"comment":"Info about a chat invite","arguments":{"invite":"Info about the chat invite","users":"Mentioned users"}},"phone.groupCallStreamChannels":{"comment":"Info about RTMP streams in a group call or livestream","arguments":{"channels":"RTMP streams"}},"attachMenuBotsNotModified":{"comment":"The list of bot mini apps hasn't changed","arguments":{"gigagroup":"Is this a broadcast group?"}},"attachMenuBots":{"comment":"Represents a list of bot mini apps that can be launched from the attachment menu »","arguments":{"hash":"Hash used for caching, for more info click here","bots":"List of bot mini apps that can be launched from the attachment menu »","users":"Info about related users/bots"}},"webViewMessageSent":{"comment":"Info about a sent inline webview message","arguments":{"flags":"Flags, see TL conditional fields","msg_id":"Message ID"}},"webViewResultUrl":{"comment":"Contains the webview URL with appropriate theme and user info parameters added","arguments":{"flags":"Flags, see TL conditional fields","fullsize":"If set, the app must be opened in fullsize mode instead of compact mode.","query_id":"Webview session ID (only returned by inline button mini apps, menu button mini apps, attachment menu mini apps).","url":"Webview URL to open"}},"botMenuButtonDefault":{"comment":"Placeholder bot menu button never returned to users: see the docs for more info.","arguments":{"gigagroup":"Is this a broadcast group?"}},"phone.joinAsPeers":{"comment":"A list of peers that can be used to join a group call, presenting yourself as a specific user/channel.","arguments":{"peers":"Peers","chats":"Chats mentioned in the peers vector","users":"Users mentioned in the peers vector"}},"attachMenuBotIcon":{"comment":"Represents an attachment menu icon for bot mini apps »","arguments":{"flags":"Flags, see TL conditional fields","name":"One of the following values: note that animated icons must be played when the user clicks on the button, activating the bot mini app.

default_static - Default attachment menu icon in SVG format
placeholder_static - Default placeholder for opened Web Apps in SVG format
ios_static - Attachment menu icon in SVG format for the official iOS app
ios_animated - Animated attachment menu icon in TGS format for the official iOS app
android_animated - Animated attachment menu icon in TGS format for the official Android app
macos_animated - Animated attachment menu icon in TGS format for the official native Mac OS app
ios_side_menu_static - Side menu icon in PNG format for the official iOS app
android_side_menu_static - Side menu icon in SVG format for the official android app
macos_side_menu_static - Side menu icon in PNG format for the official native Mac OS app","icon":"The actual icon file.","colors":"Attachment menu icon colors."}},"attachMenuBotsBot":{"comment":"Represents a bot mini app that can be launched from the attachment menu »","arguments":{"bot":"Represents a bot mini app that can be launched from the attachment menu »
","users":"Info about related users and bots"}},"phone.groupCallStreamRtmpUrl":{"comment":"RTMP URL and stream key to be used in streaming software","arguments":{"url":"RTMP URL","key":"Stream key"}},"botMenuButton":{"comment":"Bot menu button that opens a web app when clicked.","arguments":{"text":"Title to be displayed on the menu button instead of 'Menu'","url":"URL of a web app to open when the user clicks on the button"}},"account.savedRingtones":{"comment":"A list of saved notification sounds","arguments":{"hash":"Hash used for caching, for more info click here","ringtones":"Saved notification sounds"}},"auth.loggedOut":{"comment":"Future auth token » to be used on subsequent authorizations","arguments":{"flags":"Flags, see TL conditional fields","future_auth_token":"Future auth token » to be used on subsequent authorizations"}},"account.savedRingtonesNotModified":{"comment":"The notification sound list hasn't changed.","arguments":{"gigagroup":"Is this a broadcast group?"}},"notificationSoundNone":{"comment":"No notification sound should be used","arguments":{"gigagroup":"Is this a broadcast group?"}},"notificationSoundLocal":{"comment":"Indicates a specific local notification sound should be used","arguments":{"title":"Notification sound title","data":"Notification sound identifier (arbitrary data used by the client to identify a specific local notification sound)"}},"attachMenuBot":{"comment":"Represents a bot mini app that can be launched from the attachment/side menu »\n\nAt least one of the show_in_attach_menu or the show_in_side_menu flags will always be set.","arguments":{"flags":"Flags, see TL conditional fields","inactive":"If set, before launching the mini app the client should ask the user to add the mini app to the attachment/side menu, and only if the user accepts, after invoking {@link messages.RawToggleBotInAttachMenuRequest} the app should be opened.","has_settings":"Deprecated flag, can be ignored.","request_write_access":"Whether the bot would like to send messages to the user.","show_in_attach_menu":"Whether, when installed, an attachment menu entry should be shown for the Mini App.","show_in_side_menu":"Whether, when installed, an entry in the main view side menu should be shown for the Mini App.","side_menu_disclaimer_needed":"If inactive if set and the user hasn't previously accepted the third-party mini apps Terms of Service for this bot, when showing the mini app installation prompt, an additional mandatory checkbox to accept the mini apps TOS and a disclaimer indicating that this Mini App is not affiliated to Telegram should be shown.","bot_id":"Bot ID","short_name":"Attachment menu item name","peer_types":"List of dialog types where this attachment menu entry should be shown","icons":"List of platform-specific static icons and animations to use for the attachment menu button"}},"notificationSoundRingtone":{"comment":"A specific previously uploaded notification sound should be used","arguments":{"id":"Document ID of notification sound uploaded using {@link account.RawUploadRingtoneRequest}"}},"notificationSoundDefault":{"comment":"Indicates the default notification sound should be used","arguments":{"gigagroup":"Is this a broadcast group?"}},"botMenuButtonCommands":{"comment":"Bot menu button that opens the bot command list when clicked.","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.savedRingtone":{"comment":"The notification sound was already in MP3 format and was saved without any modification","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.savedRingtoneConverted":{"comment":"The notification sound was not in MP3 format and was successfully converted and saved, use the returned Document to refer to the notification sound from now on","arguments":{"document":"The converted notification sound"}},"attachMenuPeerTypeSameBotPM":{"comment":"The bot attachment menu entry is available in the chat with the bot that offers it","arguments":{"gigagroup":"Is this a broadcast group?"}},"attachMenuPeerTypePM":{"comment":"The bot attachment menu entry is available in private chats with other users (not bots)","arguments":{"gigagroup":"Is this a broadcast group?"}},"attachMenuPeerTypeBroadcast":{"comment":"The bot attachment menu entry is available in channels","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputInvoiceMessage":{"comment":"An invoice contained in a {@link RawMessageMediaInvoice} message or paid media ».","arguments":{"peer":"Chat where the invoice/paid media was sent","msg_id":"Message ID"}},"attachMenuPeerTypeBotPM":{"comment":"The bot attachment menu entry is available in private chats with other bots (excluding the bot that offers the current attachment menu)","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputInvoiceSlug":{"comment":"An invoice slug taken from an invoice deep link or from the premium_invoice_slug app config parameter »","arguments":{"slug":"The invoice slug"}},"inputInvoicePremiumGiftCode":{"comment":"Used if the user wishes to start a channel/supergroup giveaway or send some giftcodes to members of a channel/supergroup, in exchange for boosts.","arguments":{"purpose":"Should be populated with {@link RawInputStorePaymentPremiumGiveaway} for giveaways and {@link RawInputStorePaymentPremiumGiftCode} for gifts.","option":"Should be populated with one of the giveaway options returned by {@link payments.RawGetPremiumGiftCodeOptionsRequest}, see the giveaways » documentation for more info."}},"reactionCount":{"comment":"Reactions","arguments":{"flags":"Flags, see TL conditional fields","chosen_order":"If set, indicates that the current user also sent this reaction.
The integer value indicates when was the reaction added: the bigger the value, the newer the reaction.","reaction":"The reaction.","count":"Number of users that reacted with this emoji."}},"attachMenuBotIconColor":{"comment":"Represents an attachment menu icon color for bot mini apps »","arguments":{"name":"One of the following values:
light_icon - Color of the attachment menu icon (light mode)
light_text - Color of the attachment menu label, once selected (light mode)
dark_icon - Color of the attachment menu icon (dark mode)
dark_text - Color of the attachment menu label, once selected (dark mode)","color":"Color in RGB24 format"}},"inputInvoiceStarGift":{"comment":"Used to buy a Telegram Star Gift, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","hide_name":"If set, your name will be hidden if the destination user decides to display the gift on their profile (they will still see that you sent the gift)","user_id":"Identifier of the user that will receive the gift","gift_id":"Identifier of the gift, from {@link RawStartGift}.id","message":"Optional message, attached with the gift"}},"messagePeerReaction":{"comment":"How a certain peer reacted to the message","arguments":{"flags":"Flags, see TL conditional fields","big":"Whether the specified message reaction » should elicit a bigger and longer reaction","unread":"Whether the reaction wasn't yet marked as read by the current user","my":"Starting from layer 159, {@link messages.RawSendReactionRequest} will send reactions from the peer (user or channel) specified using {@link messages.RawSaveDefaultSendAsRequest}.
If set, this flag indicates that this reaction was sent by us, even if the peer doesn't point to the current account.","peer_id":"Peer that reacted to the message","date":"When was this reaction added","reaction":"Reaction emoji"}},"payments.exportedInvoice":{"comment":"Exported invoice deep link","arguments":{"url":"Exported invoice deep link"}},"inputStorePaymentPremiumSubscription":{"comment":"Info about a Telegram Premium purchase","arguments":{"flags":"Flags, see TL conditional fields","restore":"Pass true if this is a restore of a Telegram Premium purchase; only for the App Store","upgrade":"Pass true if this is an upgrade from a monthly subscription to a yearly subscription; only for App Store"}},"inputStorePaymentGiftPremium":{"comment":"Info about a gifted Telegram Premium purchase","arguments":{"user_id":"The user to which the Telegram Premium subscription was gifted","currency":"Three-letter ISO 4217 currency code","amount":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}},"inputStorePaymentPremiumGiveaway":{"comment":"Used to pay for a giveaway, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","only_new_subscribers":"If set, only new subscribers starting from the giveaway creation date will be able to participate to the giveaway.","winners_are_visible":"If set, giveaway winners are public and will be listed in a {@link RawMessageMediaGiveawayResults} message that will be automatically sent to the channel once the giveaway ends.","boost_peer":"The channel/supergroup starting the giveaway, that the user must join to participate, that will receive the giveaway boosts; see here » for more info on giveaways.","additional_peers":"Additional channels that the user must join to participate to the giveaway can be specified here.","countries_iso2":"The set of users that can participate to the giveaway can be restricted by passing here an explicit whitelist of up to giveaway_countries_max countries, specified as two-letter ISO 3166-1 alpha-2 country codes.","prize_description":"Can contain a textual description of additional giveaway prizes.","random_id":"Random ID to avoid resending the giveaway","until_date":"The end date of the giveaway, must be at most giveaway_period_max seconds in the future; see here » for more info on giveaways.","currency":"Three-letter ISO 4217 currency code","amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}},"messages.transcribedAudio":{"comment":"Transcribed text from a voice message »","arguments":{"flags":"Flags, see TL conditional fields","pending":"Whether the transcription is partial because audio transcription is still in progress, if set the user may receive further {@link RawUpdateTranscribedAudio} updates with the updated transcription.","transcription_id":"Transcription ID","text":"Transcripted text","trial_remains_num":"For non-Premium users, this flag will be set, indicating the remaining transcriptions in the free trial period.","trial_remains_until_date":"For non-Premium users, this flag will be set, indicating the date when the trial_remains_num counter will be reset to the maximum value of transcribe_audio_trial_weekly_number."}},"inputInvoiceStars":{"comment":"Used to top up the Telegram Stars balance of the current account or someone else's account, or to start a Telegram Star giveaway ».","arguments":{"purpose":"An {@link RawInputStorePaymentStarsGiveaway}, {@link RawInputStorePaymentStarsTopup} or {@link RawInputStorePaymentStarsGift}."}},"inputStorePaymentPremiumGiftCode":{"comment":"Used to gift Telegram Premium subscriptions only to some specific subscribers of a channel/supergroup or to some of our contacts, see here » for more info on giveaways and gifts.","arguments":{"flags":"Flags, see TL conditional fields","users":"The users that will receive the Telegram Premium subscriptions.","boost_peer":"If set, the gifts will be sent on behalf of a channel/supergroup we are an admin of, which will also assign some boosts to it. Otherwise, the gift will be sent directly from the currently logged in user, and we will gain some extra boost slots. See here » for more info on giveaways and gifts.","currency":"Three-letter ISO 4217 currency code","amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}},"inputStorePaymentStarsGift":{"comment":"Used to gift Telegram Stars to a friend.","arguments":{"user_id":"The user to which the stars should be gifted.","stars":"Amount of stars to gift","currency":"Three-letter ISO 4217 currency code","amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}},"inputStorePaymentStarsGiveaway":{"comment":"Used to pay for a star giveaway, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","only_new_subscribers":"If set, only new subscribers starting from the giveaway creation date will be able to participate to the giveaway.","winners_are_visible":"If set, giveaway winners are public and will be listed in a {@link RawMessageMediaGiveawayResults} message that will be automatically sent to the channel once the giveaway ends.","stars":"Total number of Telegram Stars being given away (each user will receive stars/users stars).","boost_peer":"The channel/supergroup starting the giveaway, that the user must join to participate, that will receive the giveaway boosts; see here » for more info on giveaways.","additional_peers":"Additional channels that the user must join to participate to the giveaway can be specified here.","countries_iso2":"The set of users that can participate to the giveaway can be restricted by passing here an explicit whitelist of up to giveaway_countries_max countries, specified as two-letter ISO 3166-1 alpha-2 country codes.","prize_description":"Can contain a textual description of additional giveaway prizes.","random_id":"Random ID to avoid resending the giveaway","until_date":"The end date of the giveaway, must be at most giveaway_period_max seconds in the future; see here » for more info on giveaways.","currency":"Three-letter ISO 4217 currency code","amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","users":"Number of winners."}},"inputStorePaymentStarsTopup":{"comment":"Used to top up the Telegram Stars balance of the current account.","arguments":{"stars":"Amount of stars to topup","currency":"Three-letter ISO 4217 currency code","amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}},"paymentFormMethod":{"comment":"Represents an additional payment method","arguments":{"url":"URL to open in a webview to process the payment","title":"Payment method description"}},"emojiStatus":{"comment":"An emoji status","arguments":{"document_id":"Custom emoji document ID"}},"emojiStatusUntil":{"comment":"An emoji status valid until the specified date","arguments":{"document_id":"Custom emoji document ID","until":"This status is valid until this date"}},"account.emojiStatusesNotModified":{"comment":"The server-side list of emoji statuses hasn't changed","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.emojiStatuses":{"comment":"A list of emoji statuses","arguments":{"hash":"Hash used for caching, for more info click here","statuses":"Emoji statuses"}},"reactionEmpty":{"comment":"No reaction","arguments":{"gigagroup":"Is this a broadcast group?"}},"reactionCustomEmoji":{"comment":"Custom emoji message reaction","arguments":{"document_id":"Custom emoji document ID"}},"premiumGiftOption":{"comment":"Telegram Premium gift option","arguments":{"flags":"Flags, see TL conditional fields","months":"Duration of gifted Telegram Premium subscription","currency":"Three-letter ISO 4217 currency code","amount":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","bot_url":"An invoice deep link » to an invoice for in-app payment, using the official Premium bot; may be empty if direct payment isn't available.","store_product":"An identifier for the App Store/Play Store product associated with the Premium gift."}},"reactionEmoji":{"comment":"Normal emoji message reaction","arguments":{"emoticon":"Emoji"}},"reactionPaid":{"comment":"Represents a paid Telegram Star reaction ».","arguments":{"gigagroup":"Is this a broadcast group?"}},"chatReactionsSome":{"comment":"Some reactions are allowed","arguments":{"reactions":"Allowed set of reactions: the reactions_in_chat_max configuration field indicates the maximum number of reactions that can be specified in this field."}},"messages.reactionsNotModified":{"comment":"The server-side list of message reactions hasn't changed","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.reactions":{"comment":"List of message reactions","arguments":{"hash":"Hash used for caching, for more info click here","reactions":"Reactions"}},"emailVerifyPurposeLoginSetup":{"comment":"Email verification purpose: setup login email","arguments":{"phone_number":"Phone number","phone_code_hash":"Phone code hash as specified by the documentation"}},"emailVerifyPurposeLoginChange":{"comment":"Email verification purpose: change login email","arguments":{"gigagroup":"Is this a broadcast group?"}},"emailVerifyPurposePassport":{"comment":"Verify an email for use in telegram passport","arguments":{"gigagroup":"Is this a broadcast group?"}},"emailVerificationApple":{"comment":"Apple ID email verification token","arguments":{"token":"Token"}},"account.emailVerified":{"comment":"The email was verified correctly.","arguments":{"email":"The verified email address."}},"emailVerificationGoogle":{"comment":"Google ID email verification token","arguments":{"token":"Token"}},"account.emailVerifiedLogin":{"comment":"The email was verified correctly, and a login code was just sent to it.","arguments":{"email":"The verified email address.","sent_code":"Info about the sent login code"}},"sendAsPeer":{"comment":"Indicates a peer that can be used to send messages","arguments":{"flags":"Flags, see TL conditional fields","premium_required":"Whether a Telegram Premium account is required to send messages as this peer","peer":"Peer"}},"premiumSubscriptionOption":{"comment":"Describes a Telegram Premium subscription option","arguments":{"flags":"Flags, see TL conditional fields","current":"Whether this subscription option is currently in use.","can_purchase_upgrade":"Whether this subscription option can be used to upgrade the existing Telegram Premium subscription. When upgrading Telegram Premium subscriptions bought through stores, make sure that the store transaction ID is equal to transaction, to avoid upgrading someone else's account, if the client is currently logged into multiple accounts.","transaction":"Identifier of the last in-store transaction for the currently used subscription on the current account.","months":"Duration of subscription in months","currency":"Three-letter ISO 4217 currency code","amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","bot_url":"Deep link used to initiate payment","store_product":"Store product ID, only for official apps"}},"emojiStatusEmpty":{"comment":"No emoji status is set","arguments":{"gigagroup":"Is this a broadcast group?"}},"messageExtendedMediaPreview":{"comment":"Paid media preview for not yet purchased paid media, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","w":"Width","h":"Height","thumb":"Extremely low resolution thumbnail.","video_duration":"Video duration for videos."}},"inputInvoiceChatInviteSubscription":{"comment":"Used to pay for a Telegram Star subscription ».","arguments":{"hash":"The invitation link of the Telegram Star subscription »"}},"messageExtendedMedia":{"comment":"Already purchased paid media, see here » for more info.","arguments":{"media":"The media we purchased."}},"stickerKeyword":{"comment":"Keywords for a certain sticker","arguments":{"document_id":"Sticker ID","keyword":"Keywords"}},"username":{"comment":"Contains information about a username.","arguments":{"flags":"Flags, see TL conditional fields","editable":"Whether the username is editable, meaning it wasn't bought on fragment.","active":"Whether the username is active.","username":"The username."}},"chatReactionsAll":{"comment":"All reactions or all non-custom reactions are allowed","arguments":{"flags":"Flags, see TL conditional fields","allow_custom":"Whether to allow custom reactions"}},"messages.forumTopics":{"comment":"Contains information about multiple forum topics","arguments":{"flags":"Flags, see TL conditional fields","order_by_create_date":"Whether the returned topics are ordered by creation date; if set, pagination by offset_date should use {@link RawForumTopic}.date; otherwise topics are ordered by the last message date, so paginate by the date of the message referenced by {@link RawForumTopic}.top_message.","count":"Total number of topics matching query; may be more than the topics contained in topics, in which case pagination is required.","topics":"Forum topics","messages":"Related messages (contains the messages mentioned by {@link RawForumTopic}.top_message).","chats":"Related chats","users":"Related users","pts":"Event count after generation"}},"forumTopic":{"comment":"Represents a forum topic.","arguments":{"flags":"Flags, see TL conditional fields","my":"Whether the topic was created by the current user","closed":"Whether the topic is closed (no messages can be sent to it)","pinned":"Whether the topic is pinned","short":"Whether this constructor is a reduced version of the full topic information.
If set, only the my, closed, id, date, title, icon_color, icon_emoji_id and from_id parameters will contain valid information.
Reduced info is usually only returned in topic-related admin log events » and in the {@link messages.RawChannelMessages} constructor: if needed, full information can be fetched using {@link channels.RawGetForumTopicsByIDRequest}.","hidden":"Whether the topic is hidden (only valid for the \"General\" topic, id=1)","id":"Topic ID","date":"Topic creation date","title":"Topic title","icon_color":"If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F.","icon_emoji_id":"ID of the custom emoji used as topic icon.","top_message":"ID of the last message that was sent to this topic","read_inbox_max_id":"Position up to which all incoming messages are read.","read_outbox_max_id":"Position up to which all outgoing messages are read.","unread_count":"Number of unread messages","unread_mentions_count":"Number of unread mentions","unread_reactions_count":"Number of unread reactions to messages you sent","from_id":"ID of the peer that created the topic","notify_settings":"Notification settings","draft":"Message draft"}},"help.premiumPromo":{"comment":"Telegram Premium promotion information\n\nNote that the video_sections+videos fields are a list of videos, and the corresponding premium feature identifiers.
\nThey're equivalent to a section => video dictionary, with keys from video_section and values from videos.
\nThe keys in video_sections correspond to a specific feature identifier, and the associated promotional video should be shown when the associated feature row is clicked.","arguments":{"status_text":"Description of the current state of the user's Telegram Premium subscription","status_entities":"Message entities for styled text","video_sections":"A list of premium feature identifiers », associated to each video","videos":"A list of videos","period_options":"Telegram Premium subscription options","users":"Related user information"}},"defaultHistoryTTL":{"comment":"Contains info about the default value of the Time-To-Live setting, applied to all new chats.","arguments":{"period":"Time-To-Live setting applied to all new chats."}},"exportedContactToken":{"comment":"Describes a temporary profile link.","arguments":{"url":"The temporary profile link.","expires":"Its expiration date"}},"emojiGroup":{"comment":"Represents an emoji category.","arguments":{"title":"Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on...","icon_emoji_id":"A single custom emoji used as preview for the category.","emoticons":"A list of UTF-8 emojis, matching the category."}},"requestPeerTypeChat":{"comment":"Choose a chat or supergroup","arguments":{"flags":"Flags, see TL conditional fields","creator":"Whether to allow only choosing chats or supergroups that were created by the current user.","bot_participant":"Whether to allow only choosing chats or supergroups where the bot is a participant.","has_username":"If specified, allows only choosing channels with or without a username, according to the value of Bool.","forum":"If specified, allows only choosing chats or supergroups that are or aren't forums, according to the value of Bool.","user_admin_rights":"If specified, allows only choosing chats or supergroups where the current user is an admin with at least the specified admin rights.","bot_admin_rights":"If specified, allows only choosing chats or supergroups where the bot is an admin with at least the specified admin rights."}},"emojiList":{"comment":"Represents a list of custom emojis.","arguments":{"hash":"Hash used for caching, for more info click here","document_id":"Custom emoji IDs"}},"emojiGroupGreeting":{"comment":"Represents an emoji category, that should be moved to the top of the list when choosing a sticker for a business introduction","arguments":{"title":"Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on...","icon_emoji_id":"A single custom emoji used as preview for the category.","emoticons":"A list of UTF-8 emojis, matching the category."}},"attachMenuPeerTypeChat":{"comment":"The bot attachment menu entry is available in groups and supergroups","arguments":{"gigagroup":"Is this a broadcast group?"}},"chatReactionsNone":{"comment":"No reactions are allowed","arguments":{"gigagroup":"Is this a broadcast group?"}},"emojiListNotModified":{"comment":"The list of custom emojis hasn't changed.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.emojiGroupsNotModified":{"comment":"The list of emoji categories hasn't changed.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.translateResult":{"comment":"Translated text with entities","arguments":{"result":"Text+entities, for each input message."}},"autoSaveSettings":{"comment":"Media autosave settings","arguments":{"flags":"Flags, see TL conditional fields","photos":"Whether photos should be autosaved to the gallery.","videos":"Whether videos should be autosaved to the gallery.","video_max_size":"If set, specifies a size limit for autosavable videos"}},"emailVerificationCode":{"comment":"Email verification code","arguments":{"code":"Received verification code"}},"account.autoSaveSettings":{"comment":"Contains media autosave settings","arguments":{"users_settings":"Default media autosave settings for private chats","chats_settings":"Default media autosave settings for groups and supergroups","broadcasts_settings":"Default media autosave settings for channels","exceptions":"Peer-specific granular autosave settings","chats":"Chats mentioned in the peer-specific granular autosave settings","users":"Users mentioned in the peer-specific granular autosave settings"}},"help.appConfigNotModified":{"comment":"The client configuration parameters haven't changed","arguments":{"gigagroup":"Is this a broadcast group?"}},"inputBotAppID":{"comment":"Used to fetch information about a direct link Mini App by its ID","arguments":{"id":"direct link Mini App ID.","access_hash":"Access hash, obtained from the {@link RawBotApp} constructor."}},"autoSaveException":{"comment":"Peer-specific media autosave settings","arguments":{"peer":"The peer","settings":"Media autosave settings"}},"messages.botApp":{"comment":"Contains information about a direct link Mini App","arguments":{"flags":"Flags, see TL conditional fields","inactive":"Whether the web app was never used by the user, and confirmation must be asked from the user before opening it.","request_write_access":"The bot is asking permission to send messages to the user: if the user agrees, set the write_allowed flag when invoking {@link messages.RawRequestAppWebViewRequest}.","has_settings":"Deprecated flag, can be ignored.","app":"Bot app information"}},"messages.emojiGroups":{"comment":"Represents a list of emoji categories.","arguments":{"hash":"Hash used for caching, for more info click here","groups":"A list of emoji categories."}},"inlineBotWebView":{"comment":"Specifies an inline mode mini app button, shown on top of the inline query results list.","arguments":{"text":"Text of the button","url":"Webapp URL"}},"botApp":{"comment":"Contains information about a direct link Mini App.","arguments":{"flags":"Flags, see TL conditional fields","id":"bot mini app ID","access_hash":"bot mini app access hash","short_name":"bot mini app short name, used to generate Direct Mini App deep links.","title":"bot mini app title.","description":"bot mini app description.","photo":"bot mini app photo.","document":"bot mini app animation.","hash":"Hash to pass to {@link messages.RawGetBotAppRequest}, to avoid refetching bot app info if it hasn't changed."}},"readParticipantDate":{"comment":"Contains info about when a certain participant has read a message","arguments":{"user_id":"User ID","date":"When the user read the message"}},"help.appConfig":{"comment":"Contains various client configuration parameters","arguments":{"hash":"Hash used for caching, for more info click here","config":"Client configuration parameters"}},"textWithEntities":{"comment":"Styled text with message entities","arguments":{"text":"Text","entities":"Message entities for styled text"}},"inputChatlistDialogFilter":{"comment":"Folder ID","arguments":{"filter_id":"Folder ID"}},"chatlists.exportedChatlistInvite":{"comment":"Info about an exported chat folder deep link ».","arguments":{"filter":"Folder ID","invite":"The exported chat folder deep link »."}},"forumTopicDeleted":{"comment":"Represents a deleted forum topic.","arguments":{"id":"The ID of the deleted forum topic."}},"inputBotAppShortName":{"comment":"Used to fetch information about a direct link Mini App by its short name","arguments":{"bot_id":"ID of the bot that owns the bot mini app","short_name":"Short name, obtained from a Direct Mini App deep link"}},"chatlists.exportedInvites":{"comment":"Info about multiple chat folder deep links ».","arguments":{"invites":"The chat folder deep links ».","chats":"Related chat information","users":"Related user information"}},"chatlists.chatlistInvite":{"comment":"Info about a chat folder deep link ».","arguments":{"flags":"Flags, see TL conditional fields","title":"Name of the link","emoticon":"Emoji to use as icon for the folder.","peers":"Supergroups and channels to join","chats":"Related chat information","users":"Related user information"}},"chatlists.chatlistUpdates":{"comment":"Updated information about a chat folder deep link ».","arguments":{"missing_peers":"New peers to join","chats":"Related chat information","users":"Related user information"}},"botAppNotModified":{"comment":"Bot app info hasn't changed.","arguments":{"gigagroup":"Is this a broadcast group?"}},"bots.botInfo":{"comment":"Localized information about a bot.","arguments":{"name":"Bot name","about":"Bot about text","description":"Bot description"}},"requestPeerTypeUser":{"comment":"Choose a user.","arguments":{"flags":"Flags, see TL conditional fields","bot":"Whether to allow choosing only bots.","premium":"Whether to allow choosing only Premium users."}},"emojiGroupPremium":{"comment":"An emoji category, used to select all Premium-only stickers (i.e. those with a Premium effect »)/Premium-only custom emojis (i.e. those where the {@link RawDocumentAttributeCustomEmoji}.free flag is not set)","arguments":{"title":"Category name, i.e. \"Animals\", \"Flags\", \"Faces\" and so on...","icon_emoji_id":"A single custom emoji used as preview for the category."}},"requestPeerTypeBroadcast":{"comment":"Choose a channel","arguments":{"flags":"Flags, see TL conditional fields","creator":"Whether to allow only choosing channels that were created by the current user.","has_username":"If specified, allows only choosing channels with or without a username, according to the value of Bool.","user_admin_rights":"If specified, allows only choosing channels where the current user is an admin with at least the specified admin rights.","bot_admin_rights":"If specified, allows only choosing channels where the bot is an admin with at least the specified admin rights."}},"storyItemSkipped":{"comment":"Represents an active story, whose full information was omitted for space and performance reasons; use {@link stories.RawGetStoriesByIDRequest} to fetch full info about the skipped story when and if needed.","arguments":{"flags":"Flags, see TL conditional fields","close_friends":"Whether this story can only be viewed by our close friends, see here » for more info","id":"Story ID","date":"When was the story posted.","expire_date":"When does the story expire."}},"storyViews":{"comment":"Aggregated view and reaction information of a story.","arguments":{"flags":"Flags, see TL conditional fields","has_viewers":"If set, indicates that the viewers list is currently viewable, and was not yet deleted because the story has expired while the user didn't have a Premium account.","views_count":"View counter of the story","forwards_count":"Forward counter of the story","reactions":"All reactions sent to this story","reactions_count":"Number of reactions added to the story","recent_viewers":"User IDs of some recent viewers of the story"}},"storyItem":{"comment":"Represents a story.","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Whether this story is pinned on the user's profile","public":"Whether this story is public and can be viewed by everyone","close_friends":"Whether this story can only be viewed by our close friends, see here » for more info","min":"Full information about this story was omitted for space and performance reasons; use {@link stories.RawGetStoriesByIDRequest} to fetch full info about this story when and if needed.","noforwards":"Whether this story is protected and thus cannot be forwarded; clients should also prevent users from saving attached media (i.e. videos should only be streamed, photos should be kept in RAM, et cetera).","edited":"Indicates whether the story was edited.","contacts":"Whether this story can only be viewed by our contacts","selected_contacts":"Whether this story can only be viewed by a select list of our contacts","out":"indicates whether we sent this story.","id":"ID of the story.","date":"When was the story posted.","from_id":"Sender of the story.","fwd_from":"For reposted stories », contains info about the original story.","expire_date":"When does the story expire.","caption":"Story caption.","entities":"Message entities for styled text","media":"Story media.","media_areas":"List of media areas, see here » for more info on media areas.","privacy":"Privacy rules indicating who can and can't view this story","views":"View date and reaction information","sent_reaction":"The reaction we sent."}},"stories.allStoriesNotModified":{"comment":"The list of active (or active and hidden) stories has not changed.","arguments":{"flags":"Flags, see TL conditional fields","state":"State to use to ask for updates","stealth_mode":"Current stealth mode information"}},"stories.allStories":{"comment":"Full list of active (or active and hidden) stories.","arguments":{"flags":"Flags, see TL conditional fields","has_more":"Whether more results can be fetched as described here ».","count":"Total number of active (or active and hidden) stories","state":"State to use for pagination","peer_stories":"Stories","chats":"Mentioned chats","users":"Mentioned users","stealth_mode":"Current stealth mode information"}},"messagePeerVote":{"comment":"How a peer voted in a poll","arguments":{"peer":"Peer ID","option":"The option chosen by the peer","date":"When did the peer cast the vote"}},"stories.stories":{"comment":"List of stories","arguments":{"flags":"Flags, see TL conditional fields","count":"Total number of stories that can be fetched","stories":"Stories","pinned_to_top":"IDs of pinned stories.","chats":"Mentioned chats","users":"Mentioned users"}},"storyView":{"comment":"Story view date and reaction information","arguments":{"flags":"Flags, see TL conditional fields","blocked":"Whether we have completely blocked this user, including from viewing more of our stories.","blocked_my_stories_from":"Whether we have blocked this user from viewing more of our stories.","user_id":"The user that viewed the story","date":"When did the user view the story","reaction":"If present, contains the reaction that the user left on the story"}},"inputReplyToStory":{"comment":"Reply to a story.","arguments":{"peer":"Sender of the story","story_id":"ID of the story to reply to."}},"stories.storyViews":{"comment":"Reaction and view counters for a list of stories","arguments":{"views":"View date and reaction information of multiple stories","users":"Mentioned users"}},"mediaAreaCoordinates":{"comment":"Coordinates and size of a clicable rectangular area on top of a story.","arguments":{"flags":"Flags, see TL conditional fields","x":"The abscissa of the rectangle's center, as a percentage of the media width (0-100).","y":"The ordinate of the rectangle's center, as a percentage of the media height (0-100).","w":"The width of the rectangle, as a percentage of the media width (0-100).","h":"The height of the rectangle, as a percentage of the media height (0-100).","rotation":"Clockwise rotation angle of the rectangle, in degrees (0-360).","radius":"The radius of the rectangle corner rounding, as a percentage of the media width."}},"chatlists.chatlistInviteAlready":{"comment":"Updated info about a chat folder deep link » we already imported.","arguments":{"filter_id":"ID of the imported folder","missing_peers":"New peers to be imported","already_peers":"Peers that were already imported","chats":"Related chat information","users":"Related user information"}},"exportedStoryLink":{"comment":"Represents a story deep link.","arguments":{"link":"The story deep link."}},"messagePeerVoteMultiple":{"comment":"How a peer voted in a multiple-choice poll","arguments":{"peer":"Peer ID","options":"Options chosen by the peer","date":"When did the peer cast their votes"}},"storyViewPublicForward":{"comment":"A certain peer has forwarded the story as a message to a public chat or channel.","arguments":{"flags":"Flags, see TL conditional fields","blocked":"Whether we have completely blocked this user, including from viewing more of our stories.","blocked_my_stories_from":"Whether we have blocked this user from viewing more of our stories.","message":"The message with the forwarded story."}},"messagePeerVoteInputOption":{"comment":"How a peer voted in a poll (reduced constructor, returned if an option was provided to {@link messages.RawGetPollVotesRequest})","arguments":{"peer":"The peer that voted for the queried option","date":"When did the peer cast the vote"}},"inputMediaAreaVenue":{"comment":"Represents a location tag attached to a story, with additional venue information.","arguments":{"coordinates":"The size and location of the media area corresponding to the location sticker on top of the story media.","query_id":"The query_id from {@link messages.RawBotResults}, see here » for more info.","result_id":"The id of the chosen result, see here » for more info."}},"mediaAreaVenue":{"comment":"Represents a location tag attached to a story, with additional venue information.","arguments":{"coordinates":"The size and location of the media area corresponding to the location sticker on top of the story media.","geo":"Coordinates of the venue","title":"Venue name","address":"Address","provider":"Venue provider: currently only \"foursquare\" and \"gplaces\" need to be supported.","venue_id":"Venue ID in the provider's database","venue_type":"Venue type in the provider's database"}},"stories.storyViewsList":{"comment":"Reaction and view counters for a story","arguments":{"flags":"Flags, see TL conditional fields","count":"Total number of results that can be fetched","views_count":"Total number of story views","forwards_count":"Total number of story forwards/reposts","reactions_count":"Number of reactions that were added to the story","views":"Story view date and reaction information","chats":"Mentioned chats","users":"Mentioned users","next_offset":"Offset for pagination"}},"exportedChatlistInvite":{"comment":"Exported chat folder deep link ».","arguments":{"flags":"Flags, see TL conditional fields","title":"Name of the link","url":"The chat folder deep link ».","peers":"Peers to import"}},"mediaAreaUrl":{"comment":"Represents a URL media area.","arguments":{"coordinates":"The size and location of the media area corresponding to the URL button on top of the story media.","url":"URL to open when clicked."}},"mediaAreaSuggestedReaction":{"comment":"Represents a reaction bubble.","arguments":{"flags":"Flags, see TL conditional fields","dark":"Whether the reaction bubble has a dark background.","flipped":"Whether the reaction bubble is mirrored (see here » for more info).","coordinates":"The coordinates of the media area corresponding to the reaction button.","reaction":"The reaction that should be sent when this area is clicked."}},"inputMediaAreaChannelPost":{"comment":"Represents a channel post","arguments":{"coordinates":"The size and location of the media area corresponding to the location sticker on top of the story media.","channel":"The channel that posted the message","msg_id":"ID of the channel message"}},"mediaAreaWeather":{"comment":"Represents a weather widget ».","arguments":{"coordinates":"The size and location of the media area corresponding to the widget on top of the story media.","emoji":"Weather emoji, should be rendered as an animated emoji.","temperature_c":"Temperature in degrees Celsius.","color":"ARGB background color."}},"storyViewPublicRepost":{"comment":"A certain peer has reposted the story.","arguments":{"flags":"Flags, see TL conditional fields","blocked":"Whether we have completely blocked this user, including from viewing more of our stories.","blocked_my_stories_from":"Whether we have blocked this user from viewing more of our stories.","peer_id":"The peer that reposted the story.","story":"The reposted story."}},"messages.webPage":{"comment":"Represents an Instant View webpage.","arguments":{"webpage":"The instant view webpage.","chats":"Chats mentioned in the webpage.","users":"Users mentioned in the webpage."}},"premiumGiftCodeOption":{"comment":"Contains info about a giveaway/gift option.","arguments":{"flags":"Flags, see TL conditional fields","users":"Number of users which will be able to activate the gift codes.","months":"Duration in months of each gifted Telegram Premium subscription.","store_product":"Identifier of the store product associated with the option, official apps only.","store_quantity":"Number of times the store product must be paid","currency":"Three-letter ISO 4217 currency code","amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}},"peerStories":{"comment":"Stories associated to a peer","arguments":{"flags":"Flags, see TL conditional fields","peer":"The peer","max_read_id":"If set, contains the ID of the maximum read story","stories":"Stories"}},"mediaAreaGeoPoint":{"comment":"Represents a geolocation tag attached to a story.","arguments":{"flags":"Flags, see TL conditional fields","coordinates":"The size and position of the media area corresponding to the location sticker on top of the story media.","geo":"Coordinates of the geolocation tag.","address":"Optional textual representation of the address."}},"payments.checkedGiftCode":{"comment":"Contains info about a Telegram Premium giftcode link.","arguments":{"flags":"Flags, see TL conditional fields","via_giveaway":"Whether this giftcode was created by a giveaway.","from_id":"The peer that created the gift code.","giveaway_msg_id":"Message ID of the giveaway in the channel specified in from_id.","to_id":"The destination user of the gift.","date":"Creation date of the gift code.","months":"Duration in months of the gifted Telegram Premium subscription.","used_date":"When was the giftcode imported, if it was imported.","chats":"Mentioned chats","users":"Mentioned users"}},"payments.giveawayInfo":{"comment":"Contains info about an ongoing giveaway.\n\nIf neither the participating, joined_too_early_date, admin_disallowed_chat_id or disallowed_country flags are set, the user is not currently participating in the giveaway but could participate by joining all the channels specified in the {@link RawMessageMediaGiveaway}.channels field.","arguments":{"flags":"Flags, see TL conditional fields","participating":"The current user is participating in the giveaway.","preparing_results":"If set, the giveaway has ended and the results are being prepared.","start_date":"When was the giveaway started","joined_too_early_date":"The current user can't participate in the giveaway, because they were already a member of the channel when the giveaway started, and the only_new_subscribers was set when starting the giveaway.","admin_disallowed_chat_id":"If set, the current user can't participate in the giveaway, because they are an administrator in one of the channels (ID specified in this flag) that created the giveaway.","disallowed_country":"If set, the current user can't participate in this giveaway, because their phone number is from the specified disallowed country (specified as a two-letter ISO 3166-1 alpha-2 country code)."}},"mediaAreaChannelPost":{"comment":"Represents a channel post.","arguments":{"coordinates":"The size and location of the media area corresponding to the location sticker on top of the story media.","channel_id":"The channel that posted the message","msg_id":"ID of the channel message"}},"stories.peerStories":{"comment":"Active story list of a specific peer.","arguments":{"stories":"Stories","chats":"Mentioned chats","users":"Mentioned users"}},"prepaidStarsGiveaway":{"comment":"Contains info about a prepaid Telegram Star giveaway ».","arguments":{"id":"Prepaid giveaway ID.","stars":"Number of given away Telegram Stars »","quantity":"Number of giveaway winners","boosts":"Number of boosts the channel will gain by launching the giveaway.","date":"When was the giveaway paid for"}},"payments.giveawayInfoResults":{"comment":"A giveaway has ended.","arguments":{"flags":"Flags, see TL conditional fields","winner":"Whether we're one of the winners of this giveaway.","refunded":"Whether the giveaway was canceled and was fully refunded.","start_date":"Start date of the giveaway","gift_code_slug":"If we're one of the winners of this giveaway, contains the Premium gift code, see here » for more info on the full giveaway flow.","finish_date":"End date of the giveaway. May be bigger than the end date specified in parameters of the giveaway.","winners_count":"Number of winners in the giveaway","activated_count":"Number of winners, which activated their gift codes."}},"myBoost":{"comment":"Contains information about a single boost slot ».","arguments":{"flags":"Flags, see TL conditional fields","slot":"Boost slot ID »","peer":"If set, indicates this slot is currently occupied, i.e. we are boosting this peer.
Note that we can assign multiple boost slots to the same peer.","date":"When (unixtime) we started boosting the peer, 0 otherwise.","expires":"Indicates the (unixtime) expiration date of the boost in peer (0 if peer is not set).","cooldown_until_date":"If peer is set, indicates the (unixtime) date after which this boost can be reassigned to another channel."}},"storyItemDeleted":{"comment":"Represents a previously active story, that was deleted","arguments":{"id":"Story ID"}},"premium.myBoosts":{"comment":"A list of peers we are currently boosting, and how many boost slots we have left.","arguments":{"my_boosts":"Info about boosted peers and remaining boost slots.","chats":"Referenced chats","users":"Referenced users"}},"premium.boostsStatus":{"comment":"Contains info about the current boost status of a peer.","arguments":{"flags":"Flags, see TL conditional fields","my_boost":"Whether we're currently boosting this channel/supergroup, my_boost_slots will also be set.","level":"The current boost level of the channel/supergroup.","current_level_boosts":"The number of boosts acquired so far in the current level.","boosts":"Total number of boosts acquired so far.","gift_boosts":"The number of boosts acquired from created Telegram Premium gift codes and giveaways; only returned to channel/supergroup admins.","next_level_boosts":"Total number of boosts needed to reach the next level; if absent, the next level isn't available.","premium_audience":"Only returned to channel/supergroup admins: contains the approximated number of Premium users subscribed to the channel/supergroup, related to the total number of subscribers.","boost_url":"Boost deep link » that can be used to boost the chat.","prepaid_giveaways":"A list of prepaid giveaways available for the chat; only returned to channel/supergroup admins.","my_boost_slots":"Indicates which of our boost slots we've assigned to this peer (populated if my_boost is set)."}},"premium.boostsList":{"comment":"List of boosts that were applied to a peer by multiple users.","arguments":{"flags":"Flags, see TL conditional fields","count":"Total number of results","boosts":"Boosts","next_offset":"Offset that can be used for pagination.","users":"Mentioned users"}},"storyFwdHeader":{"comment":"Contains info about the original poster of a reposted story.","arguments":{"flags":"Flags, see TL conditional fields","modified":"Whether the story media was modified before reposting it (for example by overlaying a round video with a reaction).","from":"Peer that originally posted the story; will be empty for stories forwarded from a user with forwards privacy enabled, in which case from_name will be set, instead.","from_name":"Will be set for stories forwarded from a user with forwards privacy enabled, in which case from will also be empty.","story_id":", contains the story ID"}},"postInteractionCountersStory":{"comment":"Interaction counters for a story.","arguments":{"story_id":"Story ID","views":"Number of views","forwards":"Number of forwards and reposts to public chats and channels","reactions":"Number of reactions"}},"stats.storyStats":{"comment":"Contains statistics about a story.","arguments":{"views_graph":"A graph containing the number of story views and shares","reactions_by_emotion_graph":"A bar graph containing the number of story reactions categorized by \"emotion\" (i.e. Positive, Negative, Other, etc...)"}},"publicForwardMessage":{"comment":"Contains info about a forward of a story as a message.","arguments":{"message":"Info about the message with the reposted story."}},"prepaidGiveaway":{"comment":"Contains info about a prepaid giveaway ».","arguments":{"id":"Prepaid giveaway ID.","months":"Duration in months of each gifted Telegram Premium subscription.","quantity":"Number of given away Telegram Premium subscriptions.","date":"Payment date."}},"stats.publicForwards":{"comment":"Contains info about the forwards of a story as a message to public chats and reposts by public channels.","arguments":{"flags":"Flags, see TL conditional fields","count":"Total number of results","forwards":"Info about the forwards of a story.","next_offset":"Offset used for pagination.","chats":"Mentioned chats","users":"Mentioned users"}},"inputReplyToMessage":{"comment":"Reply to a message.","arguments":{"flags":"Flags, see TL conditional fields","reply_to_msg_id":"The message ID to reply to.","top_msg_id":"This field must contain the topic ID only when replying to messages in forum topics different from the \"General\" topic (i.e. reply_to_msg_id is set and reply_to_msg_id != topicID and topicID != 1).
If the replied-to message is deleted before the method finishes execution, the value in this field will be used to send the message to the correct topic, instead of the \"General\" topic.","reply_to_peer_id":"Used to reply to messages sent to another chat (specified here), can only be used for non-protected chats and messages.","quote_text":"Used to quote-reply to only a certain section (specified here) of the original message. The maximum UTF-8 length for quotes is specified in the quote_length_max config key.","quote_entities":"Message entities for styled text from the quote_text field.","quote_offset":"Offset of the message quote_text within the original message (in UTF-16 code units)."}},"peerColor":{"comment":"Represents a color palette ».","arguments":{"flags":"Flags, see TL conditional fields","color":"Color palette ID, see here » for more info; if not set, the default palette should be used.","background_emoji_id":"Optional custom emoji ID used to generate the pattern."}},"publicForwardStory":{"comment":"Contains info about a forward of a story as a repost by a public channel.","arguments":{"peer":"The channel that reposted the story.","story":"The reposted story (may be different from the original story)."}},"help.peerColorSet":{"comment":"Represents a color palette that can be used in message accents ».","arguments":{"colors":"A list of 1-3 colors in RGB format, describing the accent color."}},"boost":{"comment":"Info about one or more boosts applied by a specific user.","arguments":{"flags":"Flags, see TL conditional fields","gift":"Whether this boost was applied because the channel/supergroup directly gifted a subscription to the user.","giveaway":"Whether this boost was applied because the user was chosen in a giveaway started by the channel/supergroup.","unclaimed":"If set, the user hasn't yet invoked {@link payments.RawApplyGiftCodeRequest} to claim a subscription gifted directly or in a giveaway by the channel.","id":"Unique ID for this set of boosts.","user_id":"ID of the user that applied the boost.","giveaway_msg_id":"The message ID of the giveaway","date":"When was the boost applied","expires":"When does the boost expire","used_gift_slug":"The created Telegram Premium gift code, only set if either gift or giveaway are set AND it is either a gift code for the currently logged in user or if it was already claimed.","multiplier":"If set, this boost counts as multiplier boosts, otherwise it counts as a single boost."}},"help.peerColorOption":{"comment":"Contains info about a color palette ».","arguments":{"flags":"Flags, see TL conditional fields","hidden":"Whether this palette should not be displayed as an option to the user when choosing a palette to apply to profile pages or message accents.","color_id":"Palette ID.","colors":"Light mode palette.
Will be empty for IDs 0 to 6 inclusive, in which case a palette containing a single color from the following colors should be used: red, orange, violet, green, cyan, blue, pink for indexes 0 to 6 (i.e. the same colors used for randomized fallback message accent colors).","dark_colors":"Dark mode palette. Optional, defaults to the palette in colors (or the autogenerated palette for IDs 0 to 6) if absent.","channel_min_level":"Channels can use this palette only after reaching at least the boost level specified in this field.","group_min_level":"Supergroups can use this palette only after reaching at least the boost level specified in this field."}},"storyReaction":{"comment":"How a certain peer reacted to a story","arguments":{"peer_id":"The peer","date":"Reaction date","reaction":"The reaction"}},"help.peerColorsNotModified":{"comment":"The list of color palettes has not changed.","arguments":{"gigagroup":"Is this a broadcast group?"}},"storyReactionPublicForward":{"comment":"A certain peer has forwarded the story as a message to a public chat or channel.","arguments":{"message":"The message with the forwarded story."}},"help.peerColors":{"comment":"Contains info about multiple color palettes ».","arguments":{"hash":"Hash used for caching, for more info click here","colors":"Usable color palettes."}},"storyReactionPublicRepost":{"comment":"A certain peer has reposted the story.","arguments":{"peer_id":"The peer that reposted the story.","story":"The reposted story."}},"stories.storyReactionsList":{"comment":"List of peers that reacted to or intercated with a specific story","arguments":{"flags":"Flags, see TL conditional fields","count":"Total number of reactions matching query","reactions":"List of peers that reacted to or interacted with a specific story","chats":"Mentioned chats","users":"Mentioned users","next_offset":"If set, indicates the next offset to use to load more results by invoking {@link stories.RawGetStoryReactionsListRequest}."}},"messages.savedDialogsSlice":{"comment":"Incomplete list of saved message dialogs » with messages and auxiliary data.","arguments":{"count":"Total number of saved message dialogs","dialogs":"List of saved message dialogs","messages":"List of last messages from dialogs","chats":"Mentioned chats","users":"Mentioned users"}},"savedDialog":{"comment":"Represents a saved dialog ».","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Is the dialog pinned","peer":"The dialog","top_message":"The latest message ID"}},"messages.savedDialogsNotModified":{"comment":"The saved dialogs haven't changed","arguments":{"count":"Number of saved dialogs found server-side by the query"}},"help.peerColorProfileSet":{"comment":"Represents a color palette that can be used in profile pages ».","arguments":{"palette_colors":"A list of 1-2 colors in RGB format, shown in the color palette settings to describe the current palette.","bg_colors":"A list of 1-2 colors in RGB format describing the colors used to generate the actual background used in the profile page.","story_colors":"A list of 2 colors in RGB format describing the colors of the gradient used for the unread active story indicator around the profile photo."}},"savedReactionTag":{"comment":"Info about a saved message reaction tag ».","arguments":{"flags":"Flags, see TL conditional fields","reaction":"Reaction associated to the tag.","title":"Custom tag name assigned by the user (max 12 UTF-8 chars).","count":"Number of messages tagged with this tag."}},"messages.savedDialogs":{"comment":"Represents some saved message dialogs ».","arguments":{"dialogs":"Saved message dialogs ».","messages":"List of last messages from each saved dialog","chats":"Mentioned chats","users":"Mentioned users"}},"outboxReadDate":{"comment":"Exact read date of a private message we sent to another user.","arguments":{"date":"UNIX timestamp with the read date."}},"messages.savedReactionTags":{"comment":"List of reaction tag » names assigned by the user.","arguments":{"tags":"Saved reaction tags.","hash":"Hash used for caching, for more info click here"}},"storiesStealthMode":{"comment":"Information about the current stealth mode session.","arguments":{"flags":"Flags, see TL conditional fields","active_until_date":"The date up to which stealth mode will be active.","cooldown_until_date":"The date starting from which the user will be allowed to re-enable stealth mode again."}},"messages.savedReactionTagsNotModified":{"comment":"The list of reaction tag » names assigned by the user hasn't changed.","arguments":{"gigagroup":"Is this a broadcast group?"}},"smsjobs.eligibleToJoin":{"comment":"SMS jobs eligibility","arguments":{"terms_url":"Terms of service URL","monthly_sent_sms":"Monthly sent SMSes"}},"smsjobs.status":{"comment":"Status","arguments":{"flags":"Flags, see TL conditional fields","allow_international":"Allow international numbers","recent_sent":"Recently sent","recent_since":"Since","recent_remains":"Remaining","total_sent":"Total sent","total_since":"Total since","last_gift_slug":"Last gift deep link","terms_url":"Terms of service URL"}},"businessWeeklyOpen":{"comment":"A time interval, indicating the opening hours of a business.\n\nNote that opening hours specified by the user must be appropriately validated and transformed before uploading them to the server, as specified here ».","arguments":{"start_minute":"Start minute in minutes of the week, 0 to 7*24*60 inclusively.","end_minute":"End minute in minutes of the week, 1 to 8*24*60 inclusively (8 and not 7 because this allows to specify intervals that, for example, start on Sunday 21:00 and end on Monday 04:00 (6*24*60+21*60 to 7*24*60+4*60) without passing an invalid end_minute < start_minute). See here » for more info."}},"businessWorkHours":{"comment":"Specifies a set of Telegram Business opening hours.","arguments":{"flags":"Flags, see TL conditional fields","open_now":"Ignored if set while invoking {@link account.RawUpdateBusinessWorkHoursRequest}, only returned by the server in {@link RawUserFull}.business_work_hours, indicating whether the business is currently open according to the current time and the values in weekly_open and timezone.","timezone_id":"An ID of one of the timezones returned by {@link help.RawGetTimezonesListRequest}.
The timezone ID is contained {@link RawTimezone}.id, a human-readable, localized name of the timezone is available in {@link RawTimezone}.name and the {@link RawTimezone}.utc_offset field contains the UTC offset in seconds, which may be displayed in hh:mm format by the client together with the human-readable name (i.e. $name UTC -01:00).","weekly_open":"A list of time intervals (max 28) represented by {@link RawBusinessWeeklyOpen}, indicating the opening hours of their business."}},"businessAwayMessageScheduleAlways":{"comment":"Always send Telegram Business away messages to users writing to us in private.","arguments":{"gigagroup":"Is this a broadcast group?"}},"businessLocation":{"comment":"Represents the location of a Telegram Business ».","arguments":{"flags":"Flags, see TL conditional fields","geo_point":"Geographical coordinates (optional).","address":"Textual description of the address (mandatory)."}},"businessAwayMessageScheduleCustom":{"comment":"Send Telegram Business away messages to users writing to us in private in the specified time span.","arguments":{"start_date":"Start date (UNIX timestamp).","end_date":"End date (UNIX timestamp)."}},"businessAwayMessageScheduleOutsideWorkHours":{"comment":"Send Telegram Business away messages to users writing to us in private outside of the configured Telegram Business working hours.","arguments":{"gigagroup":"Is this a broadcast group?"}},"businessRecipients":{"comment":"Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.","arguments":{"flags":"Flags, see TL conditional fields","existing_chats":"All existing private chats.","new_chats":"All new private chats.","contacts":"All private chats with contacts.","non_contacts":"All private chats with non-contacts.","exclude_selected":"If set, inverts the selection.","users":"Only private chats with the specified users."}},"postInteractionCountersMessage":{"comment":"Interaction counters for a message.","arguments":{"msg_id":"Message ID","views":"Number of views","forwards":"Number of forwards to public channels","reactions":"Number of reactions"}},"inputBusinessGreetingMessage":{"comment":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","arguments":{"shortcut_id":"ID of a quick reply shorcut, containing the greeting messages to send, see here » for more info.","recipients":"Allowed recipients for the greeting messages.","no_activity_days":"The number of days after which a private chat will be considered as inactive; currently, must be one of 7, 14, 21, or 28."}},"businessGreetingMessage":{"comment":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","arguments":{"shortcut_id":"ID of a quick reply shorcut, containing the greeting messages to send, see here » for more info.","recipients":"Allowed recipients for the greeting messages.","no_activity_days":"The number of days after which a private chat will be considered as inactive; currently, must be one of 7, 14, 21, or 28."}},"inputBusinessAwayMessage":{"comment":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","arguments":{"flags":"Flags, see TL conditional fields","offline_only":"If set, the messages will not be sent if the account was online in the last 10 minutes.","shortcut_id":"ID of a quick reply shorcut, containing the away messages to send, see here » for more info.","schedule":"Specifies when should the away messages be sent.","recipients":"Allowed recipients for the away messages."}},"timezone":{"comment":"Timezone information.","arguments":{"id":"Unique timezone ID.","name":"Human-readable and localized timezone name.","utc_offset":"UTC offset in seconds, which may be displayed in hh:mm format by the client together with the human-readable name (i.e. $name UTC -01:00)."}},"quickReply":{"comment":"A quick reply shortcut.","arguments":{"shortcut_id":"Unique shortcut ID.","shortcut":"Shortcut name.","top_message":"ID of the last message in the shortcut.","count":"Total number of messages in the shortcut."}},"inputBusinessRecipients":{"comment":"Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.","arguments":{"flags":"Flags, see TL conditional fields","existing_chats":"All existing private chats.","new_chats":"All new private chats.","contacts":"All private chats with contacts.","non_contacts":"All private chats with non-contacts.","exclude_selected":"If set, inverts the selection.","users":"Only private chats with the specified users."}},"help.timezonesListNotModified":{"comment":"The timezone list has not changed.","arguments":{"gigagroup":"Is this a broadcast group?"}},"businessAwayMessage":{"comment":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","arguments":{"flags":"Flags, see TL conditional fields","offline_only":"If set, the messages will not be sent if the account was online in the last 10 minutes.","shortcut_id":"ID of a quick reply shorcut, containing the away messages to send, see here » for more info.","schedule":"Specifies when should the away messages be sent.","recipients":"Allowed recipients for the away messages."}},"inputQuickReplyShortcutId":{"comment":"Selects a quick reply shortcut by its numeric ID.","arguments":{"shortcut_id":"Shortcut ID."}},"inputQuickReplyShortcut":{"comment":"Selects a quick reply shortcut by name.","arguments":{"shortcut":"Shortcut name."}},"messages.quickRepliesNotModified":{"comment":"Info about quick reply shortcuts » hasn't changed.","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.quickReplies":{"comment":"Info about quick reply shortcuts ».","arguments":{"quick_replies":"Quick reply shortcuts.","messages":"Messages mentioned in quick_replies.","chats":"Mentioned chats","users":"Mentioned users"}},"connectedBot":{"comment":"Contains info about a connected business bot ».","arguments":{"flags":"Flags, see TL conditional fields","can_reply":"Whether the the bot can reply to messages it receives through the connection","bot_id":"ID of the connected bot","recipients":"Specifies the private chats that a connected business bot » may receive messages and interact with.
"}},"messages.dialogFilters":{"comment":"Folder and folder tags information","arguments":{"flags":"Flags, see TL conditional fields","tags_enabled":"Whether folder tags are enabled.","filters":"Folders."}},"birthday":{"comment":"Birthday information for a user.\n\nAlso used to invite users to gift Telegram Premium subscriptions » to other users with birthdays within a +1/-1 day time range, related to the current day.","arguments":{"flags":"Flags, see TL conditional fields","day":"Birth day","month":"Birth month","year":"(Optional) birth year."}},"inputBusinessIntro":{"comment":"Telegram Business introduction ».","arguments":{"flags":"Flags, see TL conditional fields","title":"Title of the introduction message","description":"Profile introduction","sticker":"Optional introduction sticker."}},"fragment.collectibleInfo":{"comment":"Info about a fragment collectible.","arguments":{"purchase_date":"Purchase date (unixtime)","currency":"Three-letter ISO 4217 currency code for amount","amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","crypto_currency":"Cryptocurrency name.","crypto_amount":"Price, in the smallest units of the cryptocurrency.","url":"Fragment URL with more info about the collectible"}},"botBusinessConnection":{"comment":"Contains info about a bot business connection.","arguments":{"flags":"Flags, see TL conditional fields","can_reply":"Whether the bot can reply on behalf of the user to messages it receives through the business connection","disabled":"Whether this business connection is currently disabled","connection_id":"Business connection ID, used to identify messages coming from the connection and to reply to them as specified here ».","user_id":"ID of the user that the bot is connected to via this connection.","dc_id":"ID of the datacenter where to send queries wrapped in a {@link RawInvokeWithBusinessConnectionRequest} as specified here ».","date":"When was the connection created."}},"inputBusinessBotRecipients":{"comment":"Specifies the private chats that a connected business bot » may interact with.","arguments":{"flags":"Flags, see TL conditional fields","existing_chats":"Selects all existing private chats.","new_chats":"Selects all new private chats.","contacts":"Selects all private chats with contacts.","non_contacts":"Selects all private chats with non-contacts.","exclude_selected":"If set, then all private chats except the ones selected by existing_chats, new_chats, contacts, non_contacts and users are chosen.
Note that if this flag is set, any values passed in exclude_users will be merged and moved into users by the server.","users":"Explicitly selected private chats.","exclude_users":"Identifiers of private chats that are always excluded."}},"inputCollectibleUsername":{"comment":"Represents a username fragment collectible","arguments":{"username":"Username"}},"businessBotRecipients":{"comment":"Specifies the private chats that a connected business bot » may receive messages and interact with.","arguments":{"flags":"Flags, see TL conditional fields","existing_chats":"Selects all existing private chats.","new_chats":"Selects all new private chats.","contacts":"Selects all private chats with contacts.","non_contacts":"Selects all private chats with non-contacts.","exclude_selected":"If set, then all private chats except the ones selected by existing_chats, new_chats, contacts, non_contacts and users are chosen.
Note that if this flag is set, any values passed in exclude_users will be merged and moved into users by the server, thus exclude_users will always be empty.","users":"Explicitly selected private chats.","exclude_users":"Identifiers of private chats that are always excluded."}},"messages.invitedUsers":{"comment":"Contains info about successfully or unsuccessfully invited » users.","arguments":{"updates":"List of updates about successfully invited users (and eventually info about the created group)","missing_invitees":"A list of users that could not be invited, along with the reason why they couldn't be invited."}},"inputCollectiblePhone":{"comment":"Represents a phone number fragment collectible","arguments":{"phone":"Phone number"}},"smsJob":{"comment":"Info about an SMS job.","arguments":{"job_id":"Job ID","phone_number":"Destination phone number","text":"Text"}},"contactBirthday":{"comment":"Birthday information of a contact.","arguments":{"contact_id":"User ID.","birthday":"Birthday information."}},"inputBusinessChatLink":{"comment":"Contains info about a business chat deep link » to be created by the current account.","arguments":{"flags":"Flags, see TL conditional fields","message":"Message to pre-fill in the message input field.","entities":"Message entities for styled text","title":"Human-readable name of the link, to simplify management in the UI (only visible to the creator of the link)."}},"requestedPeerChat":{"comment":"Info about a chat, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen chat, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.","arguments":{"flags":"Flags, see TL conditional fields","chat_id":"Chat ID.","title":"Chat title.","photo":"Chat photo."}},"businessChatLink":{"comment":"Contains info about a business chat deep link » created by the current account.","arguments":{"flags":"Flags, see TL conditional fields","link":"Business chat deep link.","message":"Message to pre-fill in the message input field.","entities":"Message entities for styled text","title":"Human-readable name of the link, to simplify management in the UI (only visible to the creator of the link).","views":"Number of times the link was resolved (clicked/scanned/etc...)."}},"requestedPeerUser":{"comment":"Info about a user, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen user, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.","arguments":{"flags":"Flags, see TL conditional fields","user_id":"User ID.","first_name":"First name.","last_name":"Last name.","username":"Username.","photo":"Profile photo."}},"messages.myStickers":{"comment":"The list of stickersets owned by the current account ».","arguments":{"count":"Total number of owned stickersets.","sets":"Stickersets"}},"contacts.contactBirthdays":{"comment":"Birthday information of our contacts.","arguments":{"contacts":"Birthday info","users":"User information"}},"requestedPeerChannel":{"comment":"Info about a channel/supergroup, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.\n\nAll fields except the ID are optional, and will be populated if present on the chosen channel/supergroup, according to the parameters of the requesting {@link RawInputKeyboardButtonRequestPeer}.","arguments":{"flags":"Flags, see TL conditional fields","channel_id":"Channel/supergroup ID.","title":"Channel/supergroup title.","username":"Channel/supergroup username.","photo":"Channel/supergroup photo."}},"sponsoredMessageReportOption":{"comment":"A report option for a sponsored message ».","arguments":{"text":"Localized description of the option.","option":"Option identifier to pass to {@link channels.RawReportSponsoredMessageRequest}."}},"account.resolvedBusinessChatLinks":{"comment":"Contains info about a single resolved business chat deep link ».","arguments":{"flags":"Flags, see TL conditional fields","peer":"Destination peer","message":"Message to pre-fill in the message input field.","entities":"Message entities for styled text","chats":"Mentioned chats","users":"Mentioned users"}},"channels.sponsoredMessageReportResultChooseOption":{"comment":"The user must choose a report option from the localized options available in options, and after selection, {@link channels.RawReportSponsoredMessageRequest} must be invoked again, passing the option's option field to the option param of the method.","arguments":{"title":"Title of the option selection popup.","options":"Localized list of options."}},"channels.sponsoredMessageReportResultReported":{"comment":"The sponsored message was reported successfully.","arguments":{"gigagroup":"Is this a broadcast group?"}},"channels.sponsoredMessageReportResultAdsHidden":{"comment":"Sponsored messages were hidden for the user in all chats.","arguments":{"gigagroup":"Is this a broadcast group?"}},"broadcastRevenueTransactionProceeds":{"comment":"Describes earnings from sponsored messages in a channel in some time frame, see here » for more info.","arguments":{"amount":"Amount in the smallest unit of the cryptocurrency.","from_date":"Start unixtime for the timeframe.","to_date":"End unixtime for the timeframe."}},"stats.broadcastRevenueStats":{"comment":"Channel revenue ad statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in the smallest unit of the chosen cryptocurrency (currently nanotons for TONs, so to obtain a value in USD divide the chosen amount by 10^9, and then divide by usd_rate).","arguments":{"top_hours_graph":"Ad impressions graph","revenue_graph":"Ad revenue graph (in the smallest unit of the cryptocurrency in which revenue is calculated)","balances":"Current balance, current withdrawable balance and overall revenue","usd_rate":"Current conversion rate of the cryptocurrency (not in the smallest unit) in which revenue is calculated to USD"}},"broadcastRevenueTransactionRefund":{"comment":"Describes a refund for failed withdrawal of ad earnings »","arguments":{"amount":"Amount refunded.","date":"Date of refund.","provider":"Payment provider name."}},"stats.broadcastRevenueTransactions":{"comment":"Channel ad revenue transactions ».","arguments":{"count":"Total number of transactions.","transactions":"Transactions"}},"reactionNotificationsFromContacts":{"comment":"Receive notifications about reactions made only by our contacts.","arguments":{"gigagroup":"Is this a broadcast group?"}},"reactionsNotifySettings":{"comment":"Reaction notification settings, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","messages_notify_from":"Message reaction notification settings, if not set completely disables notifications/updates about message reactions.","stories_notify_from":"Story reaction notification settings, if not set completely disables notifications/updates about reactions to stories.","sound":"Notification sound for reactions »","show_previews":"If false, push notifications » about message/story reactions will only be of type REACT_HIDDEN/REACT_STORY_HIDDEN, without any information about the reacted-to story or the reaction itself."}},"broadcastRevenueTransactionWithdrawal":{"comment":"Describes a withdrawal of ad earnings »","arguments":{"flags":"Flags, see TL conditional fields","pending":"Whether the withdrawal is currently pending","failed":"Whether the withdrawal has failed","amount":"Amount withdrawn","date":"Withdrawal date","provider":"Payment provider name","transaction_date":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain the point in time (UNIX timestamp in seconds) when the withdrawal was completed successfully.","transaction_url":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain a URL where the withdrawal transaction can be viewed."}},"stats.broadcastRevenueWithdrawalUrl":{"comment":"Contains the URL to use to withdraw channel ad revenue.","arguments":{"url":"A unique URL to a Fragment page where the user will be able to specify and submit the address of the TON wallet where the funds will be sent."}},"messages.availableEffects":{"comment":"The full list of usable animated message effects ».","arguments":{"hash":"Hash used for caching, for more info click here","effects":"Message effects","documents":"Documents specified in the effects constructors."}},"starsTransactionPeerUnsupported":{"comment":"Describes a Telegram Star transaction that cannot be described using the current layer.","arguments":{"gigagroup":"Is this a broadcast group?"}},"starsTransactionPeerPlayMarket":{"comment":"Describes a Telegram Star transaction with the Play Store, used when purchasing Telegram Stars through the Play Store.","arguments":{"gigagroup":"Is this a broadcast group?"}},"missingInvitee":{"comment":"Info about why a specific user could not be invited ».","arguments":{"flags":"Flags, see TL conditional fields","premium_would_allow_invite":"If set, we could not add the user only because the current account needs to purchase a Telegram Premium subscription to complete the operation.","premium_required_for_pm":"If set, we could not add the user because of their privacy settings, and additionally, the current account needs to purchase a Telegram Premium subscription to directly share an invite link with the user via a private message.","user_id":"ID of the user. If neither of the flags below are set, we could not add the user because of their privacy settings, and we can create and directly share an invite link with them using a normal message, instead."}},"starsTransactionPeerAppStore":{"comment":"Describes a Telegram Star transaction with the App Store, used when purchasing Telegram Stars through the App Store.","arguments":{"gigagroup":"Is this a broadcast group?"}},"starsTransactionPeerPremiumBot":{"comment":"Describes a Telegram Star transaction made using @PremiumBot (i.e. using the {@link RawInputInvoiceStars} flow described here »).","arguments":{"gigagroup":"Is this a broadcast group?"}},"reactionNotificationsFromAll":{"comment":"Receive notifications about reactions made by any user.","arguments":{"gigagroup":"Is this a broadcast group?"}},"starsTransactionPeerAds":{"comment":"Describes a Telegram Star transaction used to pay for Telegram ads as specified here ».","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.timezonesList":{"comment":"Timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».","arguments":{"timezones":"Timezones","hash":"Hash used for caching, for more info click here"}},"starsTransactionPeer":{"comment":"Describes a Telegram Star transaction with another peer.","arguments":{"peer":"The peer."}},"starsTopupOption":{"comment":"Telegram Stars topup option.","arguments":{"flags":"Flags, see TL conditional fields","extended":"If set, the option must only be shown in the full list of topup options.","stars":"Amount of Telegram stars.","store_product":"Identifier of the store product associated with the option, official apps only.","currency":"Three-letter ISO 4217 currency code","amount":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}},"availableEffect":{"comment":"Represents a message effect ».\n\nAll long IDs except for id are {@link RawDocument}.ids from the containing {@link messages.RawAvailableEffects} constructor.\n\nSee here » for more info on how to use following fields.","arguments":{"flags":"Flags, see TL conditional fields","premium_required":"Whether a Premium subscription is required to use this effect.","id":"Unique effect ID.","emoticon":"Emoji corresponding to the effect, to be used as icon for the effect if static_icon_id is not set.","static_icon_id":"ID of the document containing the static icon (WEBP) of the effect.","effect_sticker_id":"Contains the preview animation (TGS format »), used for the effect selection menu.","effect_animation_id":"If set, contains the actual animated effect (TGS format »). If not set, the animated effect must be set equal to the premium animated sticker effect associated to the animated sticker specified in effect_sticker_id (always different from the preview animation, fetched thanks to the {@link RawVideoSize} of type f as specified here »)."}},"starsTransactionPeerAPI":{"comment":"Describes a Telegram Star transaction used to pay for paid API usage, such as paid bot broadcasts.","arguments":{"gigagroup":"Is this a broadcast group?"}},"starsTransactionPeerFragment":{"comment":"Describes a Telegram Star transaction with Fragment, used when purchasing Telegram Stars through Fragment.","arguments":{"gigagroup":"Is this a broadcast group?"}},"businessIntro":{"comment":"Telegram Business introduction ».","arguments":{"flags":"Flags, see TL conditional fields","title":"Title of the introduction message (max intro_title_length_limit » UTF-8 characters).","description":"Profile introduction (max intro_description_length_limit » UTF-8 characters).","sticker":"Optional introduction sticker."}},"factCheck":{"comment":"Represents a fact-check » created by an independent fact-checker.","arguments":{"flags":"Flags, see TL conditional fields","need_check":"If set, the country/text fields will not be set, and the fact check must be fetched manually by the client (if it isn't already cached with the key specified in hash) using bundled {@link messages.RawGetFactCheckRequest} requests, when the message with the factcheck scrolls into view.","country":"A two-letter ISO 3166-1 alpha-2 country code of the country for which the fact-check should be shown.","text":"The fact-check.","hash":"Hash used for caching, for more info click here"}},"geoPointAddress":{"comment":"Address optionally associated to a {@link RawGeoPoint}.","arguments":{"flags":"Flags, see TL conditional fields","country_iso2":"Two-letter ISO 3166-1 alpha-2 country code","state":"State","city":"City","street":"Street"}},"foundStory":{"comment":"A story found using global story search ».","arguments":{"peer":"The peer that posted the story.","story":"The story."}},"stories.foundStories":{"comment":"Stories found using global story search ».","arguments":{"flags":"Flags, see TL conditional fields","count":"Total number of results found for the query.","stories":"Matching stories.","next_offset":"Offset used to fetch the next page, if not set this is the final page.","chats":"Mentioned chats","users":"Mentioned users"}},"starsRevenueStatus":{"comment":"Describes Telegram Star revenue balances ».","arguments":{"flags":"Flags, see TL conditional fields","withdrawal_enabled":"If set, the user may withdraw up to available_balance stars.","current_balance":"Amount of not-yet-withdrawn Telegram Stars.","available_balance":"Amount of withdrawable Telegram Stars.","overall_revenue":"Total amount of earned Telegram Stars.","next_withdrawal_at":"Unixtime indicating when will withdrawal be available to the user. If not set, withdrawal can be started now."}},"starsTransaction":{"comment":"Represents a Telegram Stars transaction ».","arguments":{"flags":"Flags, see TL conditional fields","refund":"Whether this transaction is a refund.","pending":"The transaction is currently pending.","failed":"This transaction has failed.","gift":"This transaction was a gift from the user in peer.peer.","reaction":"This transaction is a paid reaction ».","id":"Transaction ID.","stars":"Amount of Stars (negative for outgoing transactions).","date":"Date of the transaction (unixtime).","peer":"Source of the incoming transaction, or its recipient for outgoing transactions.","title":"For transactions with bots, title of the bought product.","description":"For transactions with bots, description of the bought product.","photo":"For transactions with bots, photo of the bought product.","transaction_date":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain the point in time (UNIX timestamp in seconds) when the withdrawal was completed successfully.","transaction_url":"If neither pending nor failed are set, the transaction was completed successfully, and this field will contain a URL where the withdrawal transaction can be viewed.","bot_payload":"Bot specified invoice payload (i.e. the payload passed to {@link RawInputMediaInvoice} when creating the invoice).","msg_id":"For paid media transactions », message ID of the paid media posted to peer.peer (can point to a deleted message; either way, extended_media will always contain the bought media).","extended_media":"The purchased paid media ».","subscription_period":"The number of seconds between consecutive Telegram Star debiting for Telegram Star subscriptions ».","stargift":"This transaction indicates a purchase or a sale (conversion back to Stars) of a gift ».","floodskip_number":"This transaction is payment for paid bot broadcasts.
Paid broadcasts are only allowed if the allow_paid_floodskip parameter of {@link messages.RawSendMessageRequest} and other message sending methods is set while trying to broadcast more than 30 messages per second to bot users.
The integer value returned by this flag indicates the number of billed API calls."}},"payments.starsStatus":{"comment":"Info about the current Telegram Star subscriptions, balance and transaction history ».","arguments":{"flags":"Flags, see TL conditional fields","balance":"Current Telegram Star balance.","subscriptions":"Info about current Telegram Star subscriptions, only returned when invoking {@link payments.RawGetStarsTransactionsRequest} and {@link payments.RawGetStarsSubscriptionsRequest}.","subscriptions_next_offset":"Offset for pagination of subscriptions: only usable with {@link payments.RawGetStarsSubscriptionsRequest}, returned when invoking {@link payments.RawGetStarsTransactionsRequest} and {@link payments.RawGetStarsSubscriptionsRequest}.","subscriptions_missing_balance":"The number of Telegram Stars the user should buy to be able to extend expired subscriptions soon (i.e. the current balance is not enough to extend all expired subscriptions).","history":"List of Telegram Star transactions (partial if next_offset is set).","next_offset":"Offset to use to fetch more transactions from the transaction history using {@link payments.RawGetStarsTransactionsRequest}.","chats":"Chats mentioned in history.","users":"Users mentioned in history."}},"payments.starsRevenueStats":{"comment":"Star revenue statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in Stars.","arguments":{"revenue_graph":"Star revenue graph (number of earned stars)","status":"Current balance, current withdrawable balance and overall earned Telegram Stars","usd_rate":"Current conversion rate of Telegram Stars to USD"}},"account.businessChatLinks":{"comment":"Contains info about business chat deep links » created by the current account.","arguments":{"links":"Links","chats":"Mentioned chats","users":"Mentioned users"}},"payments.starsRevenueAdsAccountUrl":{"comment":"Contains a URL leading to a page where the user will be able to place ads for the channel/bot, paying using Telegram Stars.","arguments":{"url":"URL to open."}},"starsGiftOption":{"comment":"Telegram Stars gift option.","arguments":{"flags":"Flags, see TL conditional fields","extended":"If set, the option must only be shown in the full list of topup options.","stars":"Amount of Telegram stars.","store_product":"Identifier of the store product associated with the option, official apps only.","currency":"Three-letter ISO 4217 currency code","amount":"Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."}},"inputStarsTransaction":{"comment":"Used to fetch info about a Telegram Star transaction ».","arguments":{"flags":"Flags, see TL conditional fields","refund":"If set, fetches info about the refund transaction for this transaction.","id":"Transaction ID."}},"starsGiveawayOption":{"comment":"Contains info about a Telegram Star giveaway option.","arguments":{"flags":"Flags, see TL conditional fields","extended":"If set, this option must only be shown in the full list of giveaway options (i.e. they must be added to the list only when the user clicks on the expand button).","default":"If set, this option must be pre-selected by default in the option list.","stars":"The number of Telegram Stars that will be distributed among winners","yearly_boosts":"Number of times the chat will be boosted for one year if the {@link RawInputStorePaymentStarsGiveaway}.boost_peer flag is populated","store_product":"Identifier of the store product associated with the option, official apps only.","currency":"Three-letter ISO 4217 currency code","amount":"Total price in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).","winners":"Allowed options for the number of giveaway winners."}},"starsSubscription":{"comment":"Represents a Telegram Star subscription ».","arguments":{"flags":"Flags, see TL conditional fields","canceled":"Whether this subscription was cancelled.","can_refulfill":"Whether we left the associated private channel, but we can still rejoin it using {@link payments.RawFulfillStarsSubscriptionRequest} because the current subscription period hasn't expired yet.","missing_balance":"Whether this subscription has expired because there are not enough stars on the user's balance to extend it.","id":"Subscription ID.","peer":"Identifier of the associated private chat.","until_date":"Expiration date of the current subscription period.","pricing":"Pricing of the subscription in Telegram Stars.","chat_invite_hash":"Invitation link, used to renew the subscription after cancellation or expiration."}},"botPreviewMedia":{"comment":"Represents a Main Mini App preview media, see here » for more info.","arguments":{"date":"When was this media last updated.","media":"The actual photo/video."}},"messageReactor":{"comment":"Info about a user in the paid Star reactions leaderboard for a message.","arguments":{"flags":"Flags, see TL conditional fields","top":"If set, the reactor is one of the most active reactors; may be unset if the reactor is the current user.","my":"If set, this reactor is the current user.","anonymous":"If set, the reactor is anonymous.","peer_id":"Identifier of the peer that reacted: may be unset for anonymous reactors different from the current user (i.e. if the current user sent an anonymous reaction anonymous will be set but this field will also be set).","count":"The number of sent Telegram Stars."}},"bots.previewInfo":{"comment":"Contains info about Main Mini App previews, see here » for more info.","arguments":{"media":"All preview medias for the language code passed to {@link bots.RawGetPreviewInfoRequest}.","lang_codes":"All available language codes for which preview medias were uploaded (regardless of the language code passed to {@link bots.RawGetPreviewInfoRequest})."}},"payments.starsRevenueWithdrawalUrl":{"comment":"Contains the URL to use to withdraw Telegram Star revenue.","arguments":{"url":"Contains the URL to use to withdraw Telegram Star revenue."}},"account.connectedBots":{"comment":"Info about currently connected business bots.","arguments":{"connected_bots":"Info about the connected bots","users":"Bot information"}},"starGift":{"comment":"Represents a star gift, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","limited":"Whether this is a limited-supply gift.","sold_out":"Whether this gift sold out and cannot be bought anymore.","id":"Identifier of the gift","sticker":"Sticker that represents the gift.","stars":"Price of the gift in Telegram Stars.","availability_remains":"For limited-supply gifts: the remaining number of gifts that may be bought.","availability_total":"For limited-supply gifts: the total number of gifts that was available in the initial supply.","convert_stars":"The receiver of this gift may convert it to this many Telegram Stars, instead of displaying it on their profile page.
convert_stars will be equal to stars only if the gift was bought using recently bought Telegram Stars, otherwise it will be less than stars.","first_sale_date":"For sold out gifts only: when was the gift first bought.","last_sale_date":"For sold out gifts only: when was the gift last bought."}},"payments.starGifts":{"comment":"Available gifts ».","arguments":{"hash":"Hash used for caching, for more info click here","gifts":"List of available gifts."}},"starsGiveawayWinnersOption":{"arguments":{"flags":"Flags, see TL conditional fields","default":"If set, this option must be pre-selected by default in the option list.","users":"The number of users that will be randomly chosen as winners.","per_user_stars":"The number of Telegram Stars each winner will receive."},"comment":""},"broadcastRevenueBalances":{"comment":"Describes channel ad revenue balances ».\n\nNote that all balances are in the smallest unit of the chosen cryptocurrency (currently nanotons for TONs, so to obtain a value in USD divide the chosen amount by 10^9, and then divide by usd_rate).","arguments":{"flags":"Flags, see TL conditional fields","withdrawal_enabled":"If set, the available balance can be withdrawn ».","current_balance":"Amount of not-yet-withdrawn cryptocurrency.","available_balance":"Amount of withdrawable cryptocurrency, out of the currently available balance (available_balance <= current_balance).","overall_revenue":"Total amount of earned cryptocurrency."}},"payments.userStarGifts":{"comment":"Gifts displayed on a user's profile.","arguments":{"flags":"Flags, see TL conditional fields","count":"Total number of gifts displayed on the profile.","gifts":"The gifts.","next_offset":"Offset for pagination.","users":"Users mentioned in the gifts vector."}},"bots.popularAppBots":{"comment":"Popular Main Mini Apps, to be used in the apps tab of global search ».","arguments":{"flags":"Flags, see TL conditional fields","next_offset":"Offset for pagination.","users":"The bots associated to each Main Mini App, see here » for more info."}},"userStarGift":{"comment":"Represents a gift, displayed on a user's profile page.","arguments":{"flags":"Flags, see TL conditional fields","name_hidden":"If set, from_id will not be visible to users (it will still be visible to the receiver of the gift).","unsaved":"If set, indicates this is a gift sent by from_id, received by the current user and currently hidden from our profile page.","from_id":"Sender of the gift (may be empty for anonymous senders; will always be set if this gift was sent to us).","date":"When was this gift sent.","gift":"The gift.","message":"Message attached to the gift by the sender.","msg_id":"Only visible to the receiver of the gift, contains the ID of the {@link RawMessageService} with the {@link RawMessageActionStarGift} in the chat with from_id.","convert_stars":"The receiver of this gift may convert it to this many Telegram Stars, instead of displaying it on their profile page.
convert_stars will be equal to the buying price of the gift only if the gift was bought using recently bought Telegram Stars, otherwise it will be less than stars."}},"starsSubscriptionPricing":{"comment":"Pricing of a Telegram Star subscription ».","arguments":{"period":"The user should pay amount stars every period seconds to gain and maintain access to the channel.
Currently the only allowed subscription period is 30*24*60*60, i.e. the user will be debited amount stars every month.","amount":"Price of the subscription in Telegram Stars."}},"messages.availableEffectsNotModified":{"comment":"The full list of usable animated message effects » hasn't changed.","arguments":{"gigagroup":"Is this a broadcast group?"}},"reportResultChooseOption":{"comment":"The user must choose one of the following options, and then {@link messages.RawReportRequest} must be re-invoked, passing the option's option identifier to {@link messages.RawReportRequest}.option.","arguments":{"title":"Title of the option popup","options":"Available options, rendered as menu entries."}},"reportResultReported":{"comment":"The report was sent successfully, no further actions are required.","arguments":{"gigagroup":"Is this a broadcast group?"}},"reportResultAddComment":{"comment":"The user should enter an additional comment for the moderators, and then {@link messages.RawReportRequest} must be re-invoked, passing the comment to {@link messages.RawReportRequest}.message.","arguments":{"flags":"Flags, see TL conditional fields","optional":"Whether this step can be skipped by the user, passing an empty message to {@link messages.RawReportRequest}, or if a non-empty message is mandatory.","option":"The {@link messages.RawReportRequest} method must be re-invoked, passing this option to option"}},"messageReportOption":{"comment":"Report menu option","arguments":{"text":"Option title","option":"Option identifier: if the user selects this option, re-invoke {@link messages.RawReportRequest}, passing this option to option"}},"payments.starGiftsNotModified":{"comment":"The list of available gifts » hasn't changed.","arguments":{"gigagroup":"Is this a broadcast group?"}}},"methods":{"invokeAfterMsgs":{"comment":"Invokes a query after a successful completion of previous queries","arguments":{"msg_ids":"List of messages on which a current query depends","query":"The query itself"},"available":"both"},"invokeWithLayer":{"comment":"Invoke the specified query using the specified API layer","arguments":{"layer":"The layer to use","query":"The query"},"throws":[{"code":400,"name":"AUTH_BYTES_INVALID","comment":"The provided authorization is invalid."},{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"CONNECTION_API_ID_INVALID","comment":"The provided API id is invalid."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."}],"available":"both"},"invokeAfterMsg":{"comment":"Invokes a query after successful completion of one of the previous queries.","arguments":{"msg_id":"Message identifier on which a current query depends","query":"The query itself"},"available":"both"},"invokeWithBusinessConnection":{"comment":"Invoke a method using a Telegram Business Bot connection, see here » for more info, including a list of the methods that can be wrapped in this constructor.\n\nMake sure to always send queries wrapped in a invokeWithBusinessConnection to the datacenter ID, specified in the dc_id field of the {@link RawBotBusinessConnection} that is being used.","arguments":{"connection_id":"Business connection ID.","query":"The actual query."},"available":"both"},"invokeWithGooglePlayIntegrity":{"comment":"Official clients only, invoke with Google Play Integrity token.","arguments":{"nonce":"Nonce.","token":"Token.","query":"Query."},"available":"both"},"invokeWithTakeout":{"comment":"Invoke a method within a takeout session, see here » for more info.","arguments":{"takeout_id":"Takeout session ID »","query":"Query"},"available":"both"},"invokeWithApnsSecret":{"comment":"Official clients only, invoke with Apple push verification.","arguments":{"nonce":"Nonce.","secret":"Secret.","query":"Query."},"available":"both"},"auth.signUp":{"comment":"Registers a validated phone number in the system.","arguments":{"flags":"Flags, see TL conditional fields","no_joined_notifications":"If set, users on Telegram that have already added phone_number to their contacts will not receive signup notifications about this user.","phone_number":"Phone number in the international format","phone_code_hash":"SMS-message ID","first_name":"New user first name","last_name":"New user last name"},"throws":[{"code":400,"name":"FIRSTNAME_INVALID","comment":"The first name is invalid."},{"code":400,"name":"LASTNAME_INVALID","comment":"The last name is invalid."},{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_CODE_INVALID","comment":"The provided phone code is invalid."},{"code":400,"name":"PHONE_NUMBER_FLOOD","comment":"You asked for the code too many times."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_OCCUPIED","comment":"The phone number is already in use."}],"available":"user"},"auth.resetAuthorizations":{"comment":"Terminates all user's authorized sessions except for the current one.\n\nAfter calling this method it is necessary to reregister the current device using the method {@link account.RawRegisterDeviceRequest}","throws":[{"code":406,"name":"FRESH_RESET_AUTHORISATION_FORBIDDEN","comment":"You can't logout other sessions if less than 24 hours have passed since you logged on the current session."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"auth.logOut":{"comment":"Logs out the user.","available":"both","arguments":{"gigagroup":"Is this a broadcast group?"}},"invokeWithoutUpdates":{"comment":"Invoke a request without subscribing the used connection for updates (this is enabled by default for file queries).","arguments":{"query":"The query"},"available":"both"},"auth.exportAuthorization":{"comment":"Returns data for copying authorization to another data-center.","arguments":{"dc_id":"Number of a target data-center"},"throws":[{"code":400,"name":"DC_ID_INVALID","comment":"The provided DC ID is invalid."}],"available":"both"},"auth.bindTempAuthKey":{"comment":"Binds a temporary authorization key temp_auth_key_id to the permanent authorization key perm_auth_key_id. Each permanent key may only be bound to one temporary key at a time, binding a new temporary key overwrites the previous one.\n\nFor more information, see Perfect Forward Secrecy.","arguments":{"perm_auth_key_id":"Permanent auth_key_id to bind to","nonce":"Random long from Binding message contents","expires_at":"UNIX timestamp in seconds to invalidate temporary key, see Binding message contents","encrypted_message":"See Generating encrypted_message"},"throws":[{"code":400,"name":"ENCRYPTED_MESSAGE_INVALID","comment":"Encrypted message invalid."},{"code":400,"name":"TEMP_AUTH_KEY_ALREADY_BOUND","comment":"The passed temporary key is already bound to another perm_auth_key_id."},{"code":400,"name":"TEMP_AUTH_KEY_EMPTY","comment":"No temporary auth key provided."}],"available":"both"},"auth.signIn":{"comment":"Signs in a user with a validated phone number.","arguments":{"flags":"Flags, see TL conditional fields","phone_number":"Phone number in the international format","phone_code_hash":"SMS-message ID, obtained from {@link auth.RawSendCodeRequest}","phone_code":"Valid numerical code from the SMS-message","email_verification":"Email verification code or token"},"throws":[{"code":500,"name":"AUTH_RESTART","comment":"Restart the authorization process."},{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_CODE_INVALID","comment":"The provided phone code is invalid."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_UNOCCUPIED","comment":"The phone number is not yet being used."},{"code":500,"name":"SIGN_IN_FAILED","comment":"Failure while signing in."},{"code":406,"name":"UPDATE_APP_TO_LOGIN","comment":"Please update your client to login."}],"available":"user"},"auth.importAuthorization":{"comment":"Logs in a user using a key transmitted from their native data-center.","arguments":{"id":"User ID","bytes":"Authorization key"},"throws":[{"code":400,"name":"AUTH_BYTES_INVALID","comment":"The provided authorization is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},"auth.importBotAuthorization":{"comment":"Login as a bot","arguments":{"flags":"Reserved for future use","api_id":"Application identifier (see. App configuration)","api_hash":"Application identifier hash (see. App configuration)","bot_auth_token":"Bot token (see bots)"},"throws":[{"code":400,"name":"ACCESS_TOKEN_EXPIRED","comment":"Access token expired."},{"code":400,"name":"ACCESS_TOKEN_INVALID","comment":"Access token invalid."},{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."},{"code":400,"name":"API_ID_PUBLISHED_FLOOD","comment":"This API id was published somewhere, you can't use it now."}],"available":"both"},"auth.resendCode":{"comment":"Resend the login code via another medium, the phone code type is determined by the return value of the previous auth.sendCode/auth.resendCode: see login for more info.","arguments":{"flags":"Flags, see TL conditional fields","phone_number":"The phone number","phone_code_hash":"The phone code hash obtained from {@link auth.RawSendCodeRequest}","reason":"Official clients only, used if the device integrity verification failed, and no secret could be obtained to invoke {@link auth.RawRequestFirebaseSmsRequest}: in this case, the device integrity verification failure reason must be passed here."},"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_CODE_HASH_EMPTY","comment":"phone_code_hash is missing."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":406,"name":"SEND_CODE_UNAVAILABLE","comment":"Returned when all available options for this type of number were already used (e.g. flash-call, then SMS, then this error might be returned to trigger a second resend)."}],"available":"user"},"auth.requestPasswordRecovery":{"comment":"Request recovery code of a 2FA password, only for accounts with a recovery email configured.","throws":[{"code":400,"name":"PASSWORD_EMPTY","comment":"The provided password is empty."},{"code":400,"name":"PASSWORD_RECOVERY_NA","comment":"No email was set, can't recover password via email."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"auth.checkPassword":{"comment":"Try logging to an account protected by a 2FA password.","arguments":{"password":"The account's password (see SRP)"},"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"SRP_ID_INVALID","comment":"Invalid SRP ID provided."},{"code":400,"name":"SRP_PASSWORD_CHANGED","comment":"Password has changed."}],"available":"user"},"auth.recoverPassword":{"comment":"Reset the 2FA password using the recovery code sent using {@link auth.RawRequestPasswordRecoveryRequest}.","arguments":{"flags":"Flags, see TL conditional fields","code":"Code received via email","new_settings":"New password"},"throws":[{"code":400,"name":"CODE_EMPTY","comment":"The provided code is empty."},{"code":400,"name":"NEW_SETTINGS_INVALID","comment":"The new password settings are invalid."}],"available":"user"},"auth.cancelCode":{"comment":"Cancel the login verification code","arguments":{"phone_number":"Phone number","phone_code_hash":"Phone code hash from {@link auth.RawSendCodeRequest}"},"throws":[{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},"auth.dropTempAuthKeys":{"comment":"Delete all temporary authorization keys except for the ones specified","arguments":{"except_auth_keys":"The auth keys that shouldn't be dropped."},"available":"both"},"auth.sendCode":{"comment":"Send the verification code for login","arguments":{"phone_number":"Phone number in international format","api_id":"Application identifier (see App configuration)","api_hash":"Application secret hash (see App configuration)","settings":"Settings for the code type to send"},"throws":[{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."},{"code":400,"name":"API_ID_PUBLISHED_FLOOD","comment":"This API id was published somewhere, you can't use it now."},{"code":500,"name":"AUTH_RESTART","comment":"Restart the authorization process."},{"code":400,"name":"PHONE_NUMBER_APP_SIGNUP_FORBIDDEN","comment":"You can't sign up using this app."},{"code":400,"name":"PHONE_NUMBER_BANNED","comment":"The provided phone number is banned from telegram."},{"code":400,"name":"PHONE_NUMBER_FLOOD","comment":"You asked for the code too many times."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":406,"name":"PHONE_PASSWORD_FLOOD","comment":"You have tried logging in too many times."},{"code":400,"name":"PHONE_PASSWORD_PROTECTED","comment":"This phone is password protected."},{"code":400,"name":"SMS_CODE_CREATE_FAILED","comment":"An error occurred while creating the SMS code."},{"code":406,"name":"UPDATE_APP_TO_LOGIN","comment":"Please update your client to login."}],"available":"user"},"invokeWithMessagesRange":{"comment":"Invoke with the given message range","arguments":{"range":"Message range","query":"Query"},"available":"both"},"auth.importLoginToken":{"comment":"Login using a redirected login token, generated in case of DC mismatch during QR code login.\n\nFor more info, see login via QR code.","arguments":{"token":"Login token"},"throws":[{"code":400,"name":"AUTH_TOKEN_ALREADY_ACCEPTED","comment":"The specified auth token was already accepted."},{"code":400,"name":"AUTH_TOKEN_EXPIRED","comment":"The authorization token has expired."},{"code":400,"name":"AUTH_TOKEN_INVALID","comment":"The specified auth token is invalid."},{"code":400,"name":"AUTH_TOKEN_INVALIDX","comment":"The specified auth token is invalid."}],"available":"user"},"auth.acceptLoginToken":{"comment":"Accept QR code login token, logging in the app that generated it.\n\nReturns info about the new session.\n\nFor more info, see login via QR code.","arguments":{"token":"Login token embedded in QR code, for more info, see login via QR code."},"throws":[{"code":400,"name":"AUTH_TOKEN_ALREADY_ACCEPTED","comment":"The specified auth token was already accepted."},{"code":400,"name":"AUTH_TOKEN_EXCEPTION","comment":"An error occurred while importing the auth token."},{"code":400,"name":"AUTH_TOKEN_EXPIRED","comment":"The authorization token has expired."},{"code":400,"name":"AUTH_TOKEN_INVALIDX","comment":"The specified auth token is invalid."}],"available":"user"},"auth.checkRecoveryPassword":{"comment":"Check if the 2FA recovery code sent using {@link auth.RawRequestPasswordRecoveryRequest} is valid, before passing it to {@link auth.RawRecoverPasswordRequest}.","arguments":{"code":"Code received via email"},"throws":[{"code":400,"name":"CODE_EMPTY","comment":"The provided code is empty."},{"code":400,"name":"PASSWORD_RECOVERY_EXPIRED","comment":"The recovery code has expired."}],"available":"user"},"auth.resetLoginEmail":{"comment":"Reset the login email ».","arguments":{"phone_number":"Phone number of the account","phone_code_hash":"Phone code hash, obtained as described in the documentation »"},"throws":[{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"TASK_ALREADY_EXISTS","comment":"An email reset was already requested."}],"available":"user"},"account.registerDevice":{"comment":"Register device to receive PUSH notifications","arguments":{"flags":"Flags, see TL conditional fields","no_muted":"Avoid receiving (silent and invisible background) notifications. Useful to save battery.","token_type":"Device token type, see PUSH updates for the possible values.","token":"Device token, see PUSH updates for the possible values.","app_sandbox":"If true is transmitted, a sandbox-certificate will be used during transmission.","secret":"For FCM and APNS VoIP, optional encryption key used to encrypt push notifications","other_uids":"List of user identifiers of other users currently using the client"},"throws":[{"code":400,"name":"TOKEN_EMPTY","comment":"The specified token is empty."},{"code":400,"name":"TOKEN_INVALID","comment":"The provided token is invalid."},{"code":400,"name":"TOKEN_TYPE_INVALID","comment":"The specified token type is invalid."},{"code":400,"name":"WEBPUSH_AUTH_INVALID","comment":"The specified web push authentication secret is invalid."},{"code":400,"name":"WEBPUSH_KEY_INVALID","comment":"The specified web push elliptic curve Diffie-Hellman public key is invalid."},{"code":400,"name":"WEBPUSH_TOKEN_INVALID","comment":"The specified web push token is invalid."}],"available":"user"},"auth.importWebTokenAuthorization":{"comment":"Login by importing an authorization token","arguments":{"api_id":"API ID","api_hash":"API hash","web_auth_token":"The authorization token"},"throws":[{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."}],"available":"user"},"account.unregisterDevice":{"comment":"Deletes a device by its token, stops sending PUSH-notifications to it.","arguments":{"token_type":"Device token type, see PUSH updates for the possible values.","token":"Device token, see PUSH updates for the possible values.","other_uids":"List of user identifiers of other users currently using the client"},"throws":[{"code":400,"name":"TOKEN_INVALID","comment":"The provided token is invalid."}],"available":"user"},"account.getNotifySettings":{"comment":"Gets current notification settings for a given user/group, from all users/all groups.","arguments":{"peer":"Notification source"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"auth.exportLoginToken":{"comment":"Generate a login token, for login via QR code.
\nThe generated login token should be encoded using base64url, then shown as a tg://login?token=base64encodedtoken deep link » in the QR code.\n\nFor more info, see login via QR code.","arguments":{"api_id":"Application identifier (see. App configuration)","api_hash":"Application identifier hash (see. App configuration)","except_ids":"List of already logged-in user IDs, to prevent logging in twice with the same user"},"throws":[{"code":400,"name":"API_ID_INVALID","comment":"API ID invalid."},{"code":400,"name":"API_ID_PUBLISHED_FLOOD","comment":"This API id was published somewhere, you can't use it now."}],"available":"user"},"account.getWallPapers":{"comment":"Returns a list of available wallpapers.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"account.updateStatus":{"comment":"Updates online user status.","arguments":{"offline":"If true is transmitted, user status will change to {@link RawUserStatusOffline}."},"available":"user"},"account.reportPeer":{"comment":"Report a peer for violation of telegram's Terms of Service","arguments":{"peer":"The peer to report","reason":"The reason why this peer is being reported","message":"Comment for report moderation"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"account.updateUsername":{"comment":"Changes username for the current user.","arguments":{"username":"username or empty string if username is to be removed
Accepted characters: a-z (case-insensitive), 0-9 and underscores.
Length: 5-32 characters."},"throws":[{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},"account.checkUsername":{"comment":"Validates a username and checks availability.","arguments":{"username":"username
Accepted characters: A-z (case-insensitive), 0-9 and underscores.
Length: 5-32 characters."},"throws":[{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},"account.sendChangePhoneCode":{"comment":"Verify a new phone number to associate to the current account","arguments":{"phone_number":"New phone number","settings":"Phone code settings"},"throws":[{"code":406,"name":"FRESH_CHANGE_PHONE_FORBIDDEN","comment":"You can't change phone number right after logging in, please wait at least 24 hours."},{"code":400,"name":"PHONE_NUMBER_BANNED","comment":"The provided phone number is banned from telegram."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_OCCUPIED","comment":"The phone number is already in use."}],"available":"user"},"account.setAccountTTL":{"comment":"Set account self-destruction period","arguments":{"ttl":"Time to live in days"},"throws":[{"code":400,"name":"TTL_DAYS_INVALID","comment":"The provided TTL is invalid."}],"available":"user"},"account.deleteAccount":{"comment":"Delete the user's account from the telegram servers.\n\nCan also be used to delete the account of a user that provided the login code, but forgot the 2FA password and no recovery method is configured, see here » for more info on password recovery, and here » for more info on account deletion.","arguments":{"flags":"Flags, see TL conditional fields","reason":"Why is the account being deleted, can be empty","password":"2FA password: this field can be omitted even for accounts with 2FA enabled: in this case account account deletion will be delayed by 7 days as specified in the docs »"},"throws":[{"code":420,"name":"2FA_CONFIRM_WAIT_%d","comment":"Since this account is active and protected by a 2FA password, we will delete it in 1 week for security purposes. You can cancel this process at any time, you'll be able to reset your account in %d seconds."}],"available":"user"},"account.setPrivacy":{"comment":"Change privacy settings of current account","arguments":{"key":"New privacy rule","rules":"Peers to which the privacy rule will apply."},"throws":[{"code":400,"name":"PRIVACY_KEY_INVALID","comment":"The privacy key is invalid."},{"code":400,"name":"PRIVACY_TOO_LONG","comment":"Too many privacy rules were specified, the current limit is 1000."},{"code":400,"name":"PRIVACY_VALUE_INVALID","comment":"The specified privacy rule combination is invalid."}],"available":"user"},"account.resetNotifySettings":{"comment":"Resets all notification settings from users and groups.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.getPrivacy":{"comment":"Get privacy settings of current account","arguments":{"key":"Peer category whose privacy settings should be fetched"},"throws":[{"code":400,"name":"PRIVACY_KEY_INVALID","comment":"The privacy key is invalid."}],"available":"user"},"account.changePhone":{"comment":"Change the phone number of the current account","arguments":{"phone_number":"New phone number","phone_code_hash":"Phone code hash received when calling {@link account.RawSendChangePhoneCodeRequest}","phone_code":"Phone code received when calling {@link account.RawSendChangePhoneCodeRequest}"},"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":406,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."},{"code":400,"name":"PHONE_NUMBER_OCCUPIED","comment":"The phone number is already in use."}],"available":"user"},"account.updateDeviceLocked":{"comment":"When client-side passcode lock feature is enabled, will not show message texts in incoming PUSH notifications.","arguments":{"period":"Inactivity period after which to start hiding message texts in PUSH notifications."},"available":"user"},"account.getAuthorizations":{"comment":"Get logged-in sessions","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"auth.reportMissingCode":{"comment":"Official apps only, reports that the SMS authentication code wasn't delivered.","arguments":{"phone_number":"Phone number where we were supposed to receive the code","phone_code_hash":"The phone code hash obtained from {@link auth.RawSendCodeRequest}","mnc":"MNC of the current network operator."},"throws":[{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},"account.resetAuthorization":{"comment":"Log out an active authorized session by its hash","arguments":{"hash":"Session hash"},"throws":[{"code":406,"name":"FRESH_RESET_AUTHORISATION_FORBIDDEN","comment":"You can't logout other sessions if less than 24 hours have passed since you logged on the current session."},{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},"account.confirmPhone":{"comment":"Confirm a phone number to cancel account deletion, for more info click here »","arguments":{"phone_code_hash":"Phone code hash, for more info click here »","phone_code":"SMS code, for more info click here »"},"throws":[{"code":400,"name":"CODE_HASH_INVALID","comment":"Code hash invalid."},{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."}],"available":"user"},"account.getWebAuthorizations":{"comment":"Get web login widget authorizations","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.getPassword":{"comment":"Obtain configuration for two-factor authorization with password","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.getAccountTTL":{"comment":"Get days to live of account","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.resetWebAuthorization":{"comment":"Log out an active web telegram login session","arguments":{"hash":"{@link RawWebAuthorization} hash"},"throws":[{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},"account.resetWebAuthorizations":{"comment":"Reset all active web telegram login sessions","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.updatePasswordSettings":{"comment":"Set a new 2FA password","arguments":{"password":"The old password (see SRP)","new_settings":"The new password (see SRP)"},"throws":[{"code":400,"name":"EMAIL_INVALID","comment":"The specified email is invalid."},{"code":400,"name":"EMAIL_UNCONFIRMED","comment":"Email unconfirmed."},{"code":400,"name":"EMAIL_UNCONFIRMED_%d","comment":"The provided email isn't confirmed, %d is the length of the verification code that was just sent to the email: use {@link account.RawVerifyEmailRequest} to enter the received verification code and enable the recovery email."},{"code":400,"name":"NEW_SALT_INVALID","comment":"The new salt is invalid."},{"code":400,"name":"NEW_SETTINGS_EMPTY","comment":"No password is set on the current account, and no new password was specified in new_settings."},{"code":400,"name":"NEW_SETTINGS_INVALID","comment":"The new password settings are invalid."},{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"SRP_ID_INVALID","comment":"Invalid SRP ID provided."},{"code":400,"name":"SRP_PASSWORD_CHANGED","comment":"Password has changed."}],"available":"user"},"account.getAllSecureValues":{"comment":"Get all saved Telegram Passport documents, for more info see the passport docs »","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.getSecureValue":{"comment":"Get saved Telegram Passport document, for more info see the passport docs »","arguments":{"types":"Requested value types"},"available":"user"},"account.saveSecureValue":{"comment":"Securely save Telegram Passport document, for more info see the passport docs »","arguments":{"value":"Secure value, for more info see the passport docs »","secure_secret_id":"Passport secret hash, for more info see the passport docs »"},"throws":[{"code":400,"name":"PASSWORD_REQUIRED","comment":"A 2FA password must be configured to use Telegram Passport."},{"code":400,"name":"SECURE_SECRET_REQUIRED","comment":"A secure secret is required."}],"available":"user"},"account.updateProfile":{"comment":"Updates user profile.","arguments":{"flags":"Flags, see TL conditional fields","first_name":"New user first name","last_name":"New user last name","about":"New bio"},"throws":[{"code":400,"name":"ABOUT_TOO_LONG","comment":"About string too long."},{"code":400,"name":"FIRSTNAME_INVALID","comment":"The first name is invalid."}],"available":"user"},"account.deleteSecureValue":{"comment":"Delete stored Telegram Passport documents, for more info see the passport docs »","arguments":{"types":"Document types to delete"},"available":"user"},"account.getAuthorizationForm":{"comment":"Returns a Telegram Passport authorization form for sharing data with a service","arguments":{"bot_id":"User identifier of the service's bot","scope":"Telegram Passport element types requested by the service","public_key":"Service's public key"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"PUBLIC_KEY_REQUIRED","comment":"A public key is required."}],"available":"user"},"account.sendVerifyPhoneCode":{"comment":"Send the verification phone code for telegram passport.","arguments":{"phone_number":"The phone number to verify","settings":"Phone code settings"},"throws":[{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},"account.verifyEmail":{"comment":"Verify an email address.","arguments":{"purpose":"Verification purpose","verification":"Email verification code or token"},"throws":[{"code":400,"name":"EMAIL_INVALID","comment":"The specified email is invalid."},{"code":400,"name":"EMAIL_NOT_ALLOWED","comment":"The specified email cannot be used to complete the operation."},{"code":400,"name":"EMAIL_VERIFY_EXPIRED","comment":"The verification email has expired."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},"account.verifyPhone":{"comment":"Verify a phone number for telegram passport.","arguments":{"phone_number":"Phone number","phone_code_hash":"Phone code hash received from the call to {@link account.RawSendVerifyPhoneCodeRequest}","phone_code":"Code received after the call to {@link account.RawSendVerifyPhoneCodeRequest}"},"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_CODE_EXPIRED","comment":"The phone code you provided has expired."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},"account.acceptAuthorization":{"comment":"Sends a Telegram Passport authorization form, effectively sharing data with the service","arguments":{"bot_id":"Bot ID","scope":"Telegram Passport element types requested by the service","public_key":"Service's public key","value_hashes":"Types of values sent and their hashes","credentials":"Encrypted values"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"PUBLIC_KEY_REQUIRED","comment":"A public key is required."}],"available":"user"},"account.sendVerifyEmailCode":{"comment":"Send an email verification code.","arguments":{"purpose":"Verification purpose.","email":"The email where to send the code."},"throws":[{"code":400,"name":"EMAIL_INVALID","comment":"The specified email is invalid."},{"code":400,"name":"EMAIL_NOT_ALLOWED","comment":"The specified email cannot be used to complete the operation."},{"code":400,"name":"EMAIL_NOT_SETUP","comment":"In order to change the login email with emailVerifyPurposeLoginChange, an existing login email must already be set using emailVerifyPurposeLoginSetup."},{"code":400,"name":"PHONE_HASH_EXPIRED","comment":"An invalid or expired phone_code_hash was provided."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},"initConnection":{"comment":"Initialize connection","arguments":{"flags":"Flags, see TL conditional fields","api_id":"Application identifier (see. App configuration)","device_model":"Device model","system_version":"Operation system version","app_version":"Application version","system_lang_code":"Code for the language used on the device's OS, ISO 639-1 standard","lang_pack":"Platform identifier (i.e. android, tdesktop, etc).","lang_code":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link.","proxy":"Info about an MTProto proxy","params":"Additional initConnection parameters.
For now, only the tz_offset field is supported, for specifying the timezone offset in seconds.","query":"The query itself"},"throws":[{"code":400,"name":"CONNECTION_LAYER_INVALID","comment":"Layer invalid."}],"available":"both"},"account.getTmpPassword":{"comment":"Get temporary payment password","arguments":{"password":"SRP password parameters","period":"Time during which the temporary password will be valid, in seconds; should be between 60 and 86400"},"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"TMP_PASSWORD_DISABLED","comment":"The temporary password is disabled."}],"available":"user"},"account.finishTakeoutSession":{"comment":"Terminate a takeout session, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","success":"Data exported successfully"},"throws":[{"code":403,"name":"TAKEOUT_REQUIRED","comment":"A takeout session needs to be initialized first, see here » for more info."}],"available":"user"},"auth.requestFirebaseSms":{"comment":"Request an SMS code via Firebase.","arguments":{"flags":"Flags, see TL conditional fields","phone_number":"Phone number","phone_code_hash":"Phone code hash returned by {@link auth.RawSendCodeRequest}","safety_net_token":"On Android, a JWS object obtained as described in the auth documentation »","play_integrity_token":"On Android, an object obtained as described in the auth documentation »","ios_push_secret":"Secret token received via an apple push notification"},"throws":[{"code":400,"name":"PHONE_CODE_EMPTY","comment":"phone_code is missing."},{"code":400,"name":"PHONE_NUMBER_INVALID","comment":"The phone number is invalid."}],"available":"user"},"account.initTakeoutSession":{"comment":"Initialize a takeout session, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","contacts":"Whether to export contacts","message_users":"Whether to export messages in private chats","message_chats":"Whether to export messages in basic groups","message_megagroups":"Whether to export messages in supergroups","message_channels":"Whether to export messages in channels","files":"Whether to export files","file_max_size":"Maximum size of files to export"},"throws":[{"code":420,"name":"TAKEOUT_INIT_DELAY_%d","comment":"Sorry, for security reasons, you will be able to begin downloading your data in %d seconds. We have notified all your devices about the export request to make sure it's authorized and to give you time to react if it's not."}],"available":"user"},"account.cancelPasswordEmail":{"comment":"Cancel the code that was sent to verify an email to use as 2FA recovery method.","throws":[{"code":400,"name":"EMAIL_HASH_EXPIRED","comment":"Email hash expired."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.getContactSignUpNotification":{"comment":"Whether the user will receive notifications when contacts sign up","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.setContactSignUpNotification":{"comment":"Toggle contact sign up notifications","arguments":{"silent":"Whether to disable contact sign up notifications"},"available":"user"},"account.getWallPaper":{"comment":"Get info about a certain wallpaper","arguments":{"wallpaper":"The wallpaper to get info about"},"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},"account.resendPasswordEmail":{"comment":"Resend the code to verify an email to use as 2FA recovery method.","throws":[{"code":400,"name":"EMAIL_HASH_EXPIRED","comment":"Email hash expired."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.resetWallPapers":{"comment":"Delete all installed wallpapers, reverting to the default wallpaper set.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.installWallPaper":{"comment":"Install wallpaper","arguments":{"wallpaper":"Wallpaper to install","settings":"Wallpaper settings"},"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},"account.getPasswordSettings":{"comment":"Get private info associated to the password info (recovery email, telegram passport info & so on)","arguments":{"password":"The password (see SRP)"},"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."}],"available":"user"},"account.saveAutoDownloadSettings":{"comment":"Change media autodownload settings","arguments":{"flags":"Flags, see TL conditional fields","low":"Whether to save media in the low data usage preset","high":"Whether to save media in the high data usage preset","settings":"Media autodownload settings"},"available":"user"},"account.uploadTheme":{"comment":"Upload theme","arguments":{"flags":"Flags, see TL conditional fields","file":"Previously uploaded theme file with platform-specific colors for UI components, can be left unset when creating themes that only modify the wallpaper or accent colors.","thumb":"Thumbnail","file_name":"File name","mime_type":"MIME type, must be application/x-tgtheme-{format}, where format depends on the client"},"throws":[{"code":400,"name":"THEME_FILE_INVALID","comment":"Invalid theme file provided."},{"code":400,"name":"THEME_MIME_INVALID","comment":"The theme's MIME type is invalid."}],"available":"user"},"account.installTheme":{"comment":"Install a theme","arguments":{"flags":"Flags, see TL conditional fields","dark":"Whether to install the dark version","theme":"Theme to install","format":"Theme format, a string that identifies the theming engines supported by the client","base_theme":"Indicates a basic theme provided by all clients"},"available":"user"},"account.saveTheme":{"comment":"Save a theme","arguments":{"theme":"Theme to save","unsave":"Unsave"},"throws":[{"code":400,"name":"THEME_INVALID","comment":"Invalid theme provided."}],"available":"user"},"account.updateTheme":{"comment":"Update theme","arguments":{"flags":"Flags, see TL conditional fields","format":"Theme format, a string that identifies the theming engines supported by the client","theme":"Theme to update","slug":"Unique theme ID","title":"Theme name","document":"Theme file","settings":"Theme settings"},"throws":[{"code":400,"name":"THEME_INVALID","comment":"Invalid theme provided."}],"available":"user"},"account.createTheme":{"comment":"Create a theme","arguments":{"flags":"Flags, see TL conditional fields","slug":"Unique theme ID used to generate theme deep links, can be empty to autogenerate a random ID.","title":"Theme name","document":"Theme file","settings":"Theme settings, multiple values can be provided for the different base themes (day/night mode, etc)."},"throws":[{"code":400,"name":"THEME_MIME_INVALID","comment":"The theme's MIME type is invalid."},{"code":400,"name":"THEME_TITLE_INVALID","comment":"The specified theme title is invalid."}],"available":"user"},"account.getTheme":{"comment":"Get theme information","arguments":{"format":"Theme format, a string that identifies the theming engines supported by the client","theme":"Theme"},"throws":[{"code":400,"name":"THEME_FORMAT_INVALID","comment":"Invalid theme format provided."},{"code":400,"name":"THEME_INVALID","comment":"Invalid theme provided."}],"available":"user"},"account.updateNotifySettings":{"comment":"Edits notification settings from a given user/group, from all users/all groups.","arguments":{"peer":"Notification source","settings":"Notification settings"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SETTINGS_INVALID","comment":"Invalid settings were provided."}],"available":"user"},"account.uploadWallPaper":{"comment":"Create and upload a new wallpaper","arguments":{"flags":"Flags, see TL conditional fields","for_chat":"Set this flag when uploading wallpapers to be passed to {@link messages.RawSetChatWallPaperRequest}.","file":"The JPG/PNG wallpaper","mime_type":"MIME type of uploaded wallpaper","settings":"Wallpaper settings"},"throws":[{"code":400,"name":"WALLPAPER_FILE_INVALID","comment":"The specified wallpaper file is invalid."},{"code":400,"name":"WALLPAPER_MIME_INVALID","comment":"The specified wallpaper MIME type is invalid."}],"available":"user"},"account.sendConfirmPhoneCode":{"comment":"Send confirmation code to cancel account deletion, for more info click here »","arguments":{"hash":"The hash from the service notification, for more info click here »","settings":"Phone code settings"},"throws":[{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},"account.getAutoDownloadSettings":{"comment":"Get media autodownload settings","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.getThemes":{"comment":"Get installed themes","arguments":{"format":"Theme format, a string that identifies the theming engines supported by the client","hash":"Hash used for caching, for more info click here."},"available":"user"},"account.getGlobalPrivacySettings":{"comment":"Get global privacy settings","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.declinePasswordReset":{"comment":"Abort a pending 2FA password reset, see here for more info »","throws":[{"code":400,"name":"RESET_REQUEST_MISSING","comment":"No password reset is in progress."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.resetPassword":{"comment":"Initiate a 2FA password reset: can only be used if the user is already logged-in, see here for more info »","throws":[{"code":400,"name":"PASSWORD_EMPTY","comment":"The provided password is empty."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.getMultiWallPapers":{"comment":"Get info about multiple wallpapers","arguments":{"wallpapers":"Wallpapers to fetch info about"},"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},"account.getChatThemes":{"comment":"Get all available chat themes ».","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"account.getSavedRingtones":{"comment":"Fetch saved notification sounds","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"account.saveWallPaper":{"comment":"Install/uninstall wallpaper","arguments":{"wallpaper":"Wallpaper to install or uninstall","unsave":"Uninstall wallpaper?","settings":"Wallpaper settings"},"throws":[{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."}],"available":"user"},"account.getNotifyExceptions":{"comment":"Returns list of chats with non-default notification settings","arguments":{"flags":"Flags, see TL conditional fields","compare_sound":"If set, chats with non-default sound will be returned","compare_stories":"If set, chats with non-default notification settings for stories will be returned","peer":"If specified, only chats of the specified category will be returned"},"available":"user"},"account.uploadRingtone":{"comment":"Upload notification sound, use {@link account.RawSaveRingtoneRequest} to convert it and add it to the list of saved notification sounds.","arguments":{"file":"Notification sound","file_name":"File name","mime_type":"MIME type of file"},"throws":[{"code":400,"name":"RINGTONE_MIME_INVALID","comment":"The MIME type for the ringtone is invalid."}],"available":"user"},"account.clearRecentEmojiStatuses":{"comment":"Clears list of recently used emoji statuses","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.reportProfilePhoto":{"comment":"Report a profile photo of a dialog","arguments":{"peer":"The dialog","photo_id":"Dialog photo ID","reason":"Report reason","message":"Comment for report moderation"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"account.changeAuthorizationSettings":{"comment":"Change settings related to a session.","arguments":{"flags":"Flags, see TL conditional fields","confirmed":"If set, confirms a newly logged in session ».","hash":"Session ID from the {@link RawAuthorization} constructor, fetchable using {@link account.RawGetAuthorizationsRequest}","encrypted_requests_disabled":"Whether to enable or disable receiving encrypted chats: if the flag is not set, the previous setting is not changed","call_requests_disabled":"Whether to enable or disable receiving calls: if the flag is not set, the previous setting is not changed"},"throws":[{"code":400,"name":"HASH_INVALID","comment":"The provided hash is invalid."}],"available":"user"},"account.getRecentEmojiStatuses":{"comment":"Get recently used emoji statuses","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"account.getDefaultEmojiStatuses":{"comment":"Get a list of default suggested emoji statuses","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"account.confirmPasswordEmail":{"comment":"Verify an email to use as 2FA recovery method.","arguments":{"code":"The phone code that was received after setting a recovery email"},"throws":[{"code":400,"name":"CODE_INVALID","comment":"Code invalid."},{"code":400,"name":"EMAIL_HASH_EXPIRED","comment":"Email hash expired."}],"available":"user"},"account.setGlobalPrivacySettings":{"comment":"Set global privacy settings","arguments":{"settings":"Global privacy settings"},"throws":[{"code":400,"name":"AUTOARCHIVE_NOT_AVAILABLE","comment":"The autoarchive setting is not available at this time: please check the value of the autoarchive_setting_available field in client config » before calling this method."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},"account.reorderUsernames":{"comment":"Reorder usernames associated with the currently logged-in user.","arguments":{"order":"The new order for active usernames. All active usernames must be specified."},"throws":[{"code":400,"name":"ORDER_INVALID","comment":"The specified username order is invalid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},"account.getDefaultGroupPhotoEmojis":{"comment":"Get a set of suggested custom emoji stickers that can be used as group picture","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"account.getAutoSaveSettings":{"comment":"Get autosave settings","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.saveAutoSaveSettings":{"comment":"Modify autosave settings","arguments":{"flags":"Flags, see TL conditional fields","users":"Whether the new settings should affect all private chats","chats":"Whether the new settings should affect all groups","broadcasts":"Whether the new settings should affect all channels","peer":"Whether the new settings should affect a specific peer","settings":"The new autosave settings"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"account.getDefaultProfilePhotoEmojis":{"comment":"Get a set of suggested custom emoji stickers that can be used as profile picture","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"account.invalidateSignInCodes":{"comment":"Invalidate the specified login codes, see here » for more info.","arguments":{"codes":"The login codes to invalidate."},"available":"user"},"account.getChannelDefaultEmojiStatuses":{"comment":"Get a list of default suggested channel emoji statuses.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"account.toggleUsername":{"comment":"Activate or deactivate a purchased fragment.com username associated to the currently logged-in user.","arguments":{"username":"Username","active":"Whether to activate or deactivate it"},"throws":[{"code":400,"name":"USERNAMES_ACTIVE_TOO_MUCH","comment":"The maximum number of active usernames was reached."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},"account.updateBusinessLocation":{"comment":"Businesses » may advertise their location using this method, see here » for more info.\n\nTo remove business location information invoke the method without setting any of the parameters.","arguments":{"flags":"Flags, see TL conditional fields","geo_point":"Optional, contains a set of geographical coordinates.","address":"Mandatory when setting/updating the location, contains a textual description of the address (max 96 UTF-8 chars)."},"available":"user"},"account.getChannelRestrictedStatusEmojis":{"comment":"Returns fetch the full list of custom emoji IDs » that cannot be used in channel emoji statuses ».","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"account.updateColor":{"comment":"Update the accent color and background custom emoji » of the current account.","arguments":{"flags":"Flags, see TL conditional fields","for_profile":"Whether to change the accent color emoji pattern of the profile page; otherwise, the accent color and emoji pattern of messages will be changed.","color":"ID of the accent color palette » to use (not RGB24, see here » for more info).","background_emoji_id":"Custom emoji ID used in the accent color pattern."},"throws":[{"code":400,"name":"COLOR_INVALID","comment":"The specified color palette ID was invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},"account.updateBusinessWorkHours":{"comment":"Specify a set of Telegram Business opening hours.
\nThis info will be contained in {@link RawUserFull}.business_work_hours.\n\nTo remove all opening hours, invoke the method without setting the business_work_hours field.\n\nNote that the opening hours specified by the user must be appropriately validated and transformed before invoking the method, as specified here ».","arguments":{"flags":"Flags, see TL conditional fields","business_work_hours":"Opening hours (optional, if not set removes all opening hours)."},"throws":[{"code":400,"name":"BUSINESS_WORK_HOURS_EMPTY","comment":"No work hours were specified."},{"code":400,"name":"BUSINESS_WORK_HOURS_PERIOD_INVALID","comment":"The specified work hours are invalid, see here » for the exact requirements."},{"code":400,"name":"TIMEZONE_INVALID","comment":"The specified timezone does not exist."}],"available":"user"},"account.setContentSettings":{"comment":"Set sensitive content settings (for viewing or hiding NSFW content)","arguments":{"flags":"Flags, see TL conditional fields","sensitive_enabled":"Enable NSFW content"},"throws":[{"code":403,"name":"SENSITIVE_CHANGE_FORBIDDEN","comment":"You can't change your sensitive content settings."}],"available":"user"},"account.updateBusinessGreetingMessage":{"comment":"Set a list of Telegram Business greeting messages.","arguments":{"flags":"Flags, see TL conditional fields","message":"Greeting message configuration and contents."},"available":"user"},"account.getContentSettings":{"comment":"Get sensitive content settings","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.getDefaultBackgroundEmojis":{"comment":"Get a set of suggested custom emoji stickers that can be used in an accent color pattern.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"account.getConnectedBots":{"comment":"List all currently connected business bots »","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.updateBusinessAwayMessage":{"comment":"Set a list of Telegram Business away messages.","arguments":{"flags":"Flags, see TL conditional fields","message":"Away message configuration and contents."},"available":"user"},"account.updateConnectedBot":{"comment":"Connect a business bot » to the current account, or to change the current connection settings.","arguments":{"flags":"Flags, see TL conditional fields","can_reply":"Whether the bot can reply to messages it receives from us, on behalf of us using the business connection.","deleted":"Whether to fully disconnect the bot from the current account.","bot":"The bot to connect or disconnect","recipients":"Configuration for the business connection"},"throws":[{"code":400,"name":"BOT_BUSINESS_MISSING","comment":"The specified bot is not a business bot (the {@link RawUser}.bot_business flag is not set)."},{"code":400,"name":"BUSINESS_RECIPIENTS_EMPTY","comment":"You didn't set any flag in inputBusinessBotRecipients, thus the bot cannot work with any peer."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},"account.updateBusinessIntro":{"comment":"Set or remove the Telegram Business introduction ».","arguments":{"flags":"Flags, see TL conditional fields","intro":"Telegram Business introduction, to remove it call the method without setting this flag."},"available":"user"},"account.disablePeerConnectedBot":{"comment":"Permanently disconnect a specific chat from all business bots » (equivalent to specifying it in recipients.exclude_users during initial configuration with {@link account.RawUpdateConnectedBotRequest}); to reconnect of a chat disconnected using this method the user must reconnect the entire bot by invoking {@link account.RawUpdateConnectedBotRequest}.","arguments":{"peer":"The chat to disconnect"},"throws":[{"code":400,"name":"BOT_ALREADY_DISABLED","comment":"The connected business bot was already disabled for the specified peer."},{"code":400,"name":"BOT_NOT_CONNECTED_YET","comment":"No business bot is connected to the currently logged in user."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"account.editBusinessChatLink":{"comment":"Edit a created business chat deep link ».","arguments":{"slug":"Slug of the link, obtained as specified here ».","link":"New link information."},"throws":[{"code":400,"name":"CHATLINK_SLUG_EMPTY","comment":"The specified slug is empty."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},"account.createBusinessChatLink":{"comment":"Create a business chat deep link ».","arguments":{"link":"Info about the link to create."},"throws":[{"code":400,"name":"CHATLINKS_TOO_MUCH","comment":"Too many business chat links were created, please delete some older links."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},"account.updateBirthday":{"comment":"Update our birthday, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","birthday":"Birthday."},"throws":[{"code":400,"name":"BIRTHDAY_INVALID","comment":"An invalid age was specified, must be between 0 and 150 years."}],"available":"user"},"account.deleteBusinessChatLink":{"comment":"Delete a business chat deep link ».","arguments":{"slug":"Slug of the link, obtained as specified here »."},"throws":[{"code":400,"name":"CHATLINK_SLUG_EMPTY","comment":"The specified slug is empty."},{"code":400,"name":"CHATLINK_SLUG_EXPIRED","comment":"The specified business chat link has expired."}],"available":"user"},"account.setAuthorizationTTL":{"comment":"Set time-to-live of current session","arguments":{"authorization_ttl_days":"Time-to-live of current session in days"},"throws":[{"code":406,"name":"FRESH_RESET_AUTHORISATION_FORBIDDEN","comment":"You can't logout other sessions if less than 24 hours have passed since you logged on the current session."},{"code":400,"name":"TTL_DAYS_INVALID","comment":"The provided TTL is invalid."}],"available":"user"},"account.saveRingtone":{"comment":"Save or remove saved notification sound.\n\nIf the notification sound is already in MP3 format, {@link account.RawSavedRingtone} will be returned.
\nOtherwise, it will be automatically converted and a {@link account.RawSavedRingtoneConverted} will be returned, containing a new {@link RawDocument} object that should be used to refer to the ringtone from now on (ie when deleting it using the unsave parameter, or when downloading it).","arguments":{"id":"Notification sound uploaded using {@link account.RawUploadRingtoneRequest}","unsave":"Whether to add or delete the notification sound"},"throws":[{"code":400,"name":"RINGTONE_INVALID","comment":"The specified ringtone is invalid."}],"available":"user"},"account.resolveBusinessChatLink":{"comment":"Resolve a business chat deep link ».","arguments":{"slug":"Slug of the link, obtained as specified here »."},"throws":[{"code":400,"name":"CHATLINK_SLUG_EMPTY","comment":"The specified slug is empty."},{"code":400,"name":"CHATLINK_SLUG_EXPIRED","comment":"The specified business chat link has expired."}],"available":"user"},"account.setReactionsNotifySettings":{"comment":"Change the reaction notification settings ».","arguments":{"settings":"New reaction notification settings."},"available":"user"},"account.getReactionsNotifySettings":{"comment":"Get the current reaction notification settings ».","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.getBusinessChatLinks":{"comment":"List all created business chat deep links ».","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"account.getBotBusinessConnection":{"comment":"Bots may invoke this method to re-fetch the {@link RawUpdateBotBusinessConnect} constructor associated with a specific business connection_id, see here » for more info on connected business bots.
\nThis is needed for example for freshly logged in bots that are receiving some {@link RawUpdateBotNewBusinessMessage}, etc. updates because some users have already connected to the bot before it could login.
\nIn this case, the bot is receiving messages from the business connection, but it hasn't cached the associated {@link RawUpdateBotBusinessConnect} with info about the connection (can it reply to messages? etc.) yet, and cannot receive the old ones because they were sent when the bot wasn't logged into the session yet.
\nThis method can be used to fetch info about a not-yet-cached business connection, and should not be invoked if the info is already cached or to fetch changes, as eventual changes will automatically be sent as new {@link RawUpdateBotBusinessConnect} updates to the bot using the usual update delivery methods ».","arguments":{"connection_id":"Business connection ID »."},"throws":[{"code":400,"name":"CONNECTION_ID_INVALID","comment":"The specified connection ID is invalid."}],"available":"both"},"users.getFullUser":{"comment":"Returns extended user info by ID.","arguments":{"id":"User ID"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},"account.deleteAutoSaveExceptions":{"comment":"Clear all peer-specific autosave settings.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"contacts.getStatuses":{"comment":"Use this method to obtain the online statuses of all contacts with an accessible Telegram account.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"contacts.deleteContacts":{"comment":"Deletes several contacts from the list.","arguments":{"id":"User ID list"},"available":"user"},"contacts.importContacts":{"comment":"Imports contacts: saves a full list on the server, adds already registered contacts to the contact list, returns added contacts and their info.\n\nUse {@link contacts.RawAddContactRequest} to add Telegram contacts without actually using their phone number.","arguments":{"contacts":"List of contacts to import"},"available":"user"},"contacts.block":{"comment":"Adds a peer to a blocklist, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","my_stories_from":"Whether the peer should be added to the story blocklist; if not set, the peer will be added to the main blocklist, see here » for more info.","id":"Peer"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"users.setSecureValueErrors":{"comment":"Notify the user that the sent passport data contains some errors The user will not be able to re-submit their Passport data to you until the errors are fixed (the contents of the field for which you returned the error must change).\n\nUse this if the data submitted by the user doesn't satisfy the standards your service requires for any reason. For example, if a birthday date seems invalid, a submitted document is blurry, a scan shows evidence of tampering, etc. Supply some details in the error message to make sure the user knows how to correct the issues.","arguments":{"id":"The user","errors":"Errors"},"throws":[{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"bot"},"contacts.deleteByPhones":{"comment":"Delete contacts by phone number","arguments":{"phones":"Phone numbers"},"available":"user"},"account.updatePersonalChannel":{"comment":"Associate (or remove) a personal channel », that will be listed on our personal profile page ».\n\nChanging it will emit an {@link RawUpdateUser} update.","arguments":{"channel":"The channel, pass {@link RawInputChannelEmpty} to remove it."},"available":"user"},"users.getIsPremiumRequiredToContact":{"comment":"Check whether we can write to the specified user (this method can only be called by non-Premium users), see here » for more info on the full flow.","arguments":{"id":"Users to fetch info about."},"available":"user"},"contacts.unblock":{"comment":"Deletes a peer from a blocklist, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","my_stories_from":"Whether the peer should be removed from the story blocklist; if not set, the peer will be removed from the main blocklist, see here » for more info.","id":"Peer"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"contacts.getContactIDs":{"comment":"Get the telegram IDs of all contacts.
\nReturns an array of Telegram user IDs for all contacts (0 if a contact does not have an associated Telegram account or have hidden their account using privacy settings).","arguments":{"hash":"Hash used for caching, for more info click here"},"available":"user"},"account.updateEmojiStatus":{"comment":"Set an emoji status","arguments":{"emoji_status":"Emoji status to set"},"throws":[{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."}],"available":"user"},"contacts.getContacts":{"comment":"Returns the current user's contact list.","arguments":{"hash":"Hash used for caching, for more info click here.
Note that the hash is computed using the usual algorithm, passing to the algorithm first the previously returned {@link contacts.RawContacts}.saved_count field, then max 100000 sorted user IDs from the contact list, including the ID of the currently logged in user if it is saved as a contact.
Example: tdlib implementation."},"available":"user"},"contacts.getBlocked":{"comment":"Returns the list of blocked users.","arguments":{"flags":"Flags, see TL conditional fields","my_stories_from":"Whether to fetch the story blocklist; if not set, will fetch the main blocklist. See here » for differences between the two.","offset":"The number of list elements to be skipped","limit":"The number of list elements to be returned"},"available":"user"},"contacts.search":{"comment":"Returns users found by username substring.","arguments":{"q":"Target substring","limit":"Maximum number of users to be returned"},"throws":[{"code":400,"name":"QUERY_TOO_SHORT","comment":"The query string is too short."},{"code":400,"name":"SEARCH_QUERY_EMPTY","comment":"The search query is empty."}],"available":"user"},"contacts.resolveUsername":{"comment":"Resolve a @username to get peer info","arguments":{"username":"@username to resolve"},"throws":[{"code":400,"name":"CONNECTION_LAYER_INVALID","comment":"Layer invalid."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_OCCUPIED","comment":"The provided username is not occupied."}],"available":"both"},"contacts.resetTopPeerRating":{"comment":"Reset rating of top peer","arguments":{"category":"Top peer category","peer":"Peer whose rating should be reset"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"contacts.toggleTopPeers":{"comment":"Enable/disable top peers","arguments":{"enabled":"Enable/disable"},"available":"user"},"contacts.resetSaved":{"comment":"Removes all contacts without an associated Telegram account.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"contacts.getSaved":{"comment":"Get all contacts, requires a takeout session, see here » for more info.","throws":[{"code":400,"name":"TAKEOUT_INVALID","comment":"The specified takeout ID is invalid."},{"code":403,"name":"TAKEOUT_REQUIRED","comment":"A takeout session needs to be initialized first, see here » for more info."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"contacts.blockFromReplies":{"comment":"Stop getting notifications about discussion replies of a certain user in @replies","arguments":{"flags":"Flags, see TL conditional fields","delete_message":"Whether to delete the specified message as well","delete_history":"Whether to delete all @replies messages from this user as well","report_spam":"Whether to also report this user for spam","msg_id":"ID of the message in the @replies chat"},"throws":[{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},"contacts.acceptContact":{"comment":"If the add contact action bar is active, add that user as contact","arguments":{"id":"The user to add as contact"},"throws":[{"code":400,"name":"CONTACT_ADD_MISSING","comment":"Contact to add is missing."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"CONTACT_REQ_MISSING","comment":"Missing contact request."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},"contacts.exportContactToken":{"comment":"Generates a temporary profile link for the currently logged-in user.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"contacts.importContactToken":{"comment":"Obtain user info from a temporary profile link.","arguments":{"token":"The token extracted from the temporary profile link."},"throws":[{"code":400,"name":"IMPORT_TOKEN_INVALID","comment":"The specified token is invalid."}],"available":"user"},"contacts.addContact":{"comment":"Add an existing telegram user as contact.\n\nUse {@link contacts.RawImportContactsRequest} to add contacts by phone number, without knowing their Telegram ID.","arguments":{"flags":"Flags, see TL conditional fields","add_phone_privacy_exception":"Allow the other user to see our phone number?","id":"Telegram ID of the other user","first_name":"First name","last_name":"Last name","phone":"User's phone number, may be omitted to simply add the user to the contact list, without a phone number."},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CONTACT_ID_INVALID","comment":"The provided contact ID is invalid."},{"code":400,"name":"CONTACT_NAME_EMPTY","comment":"Contact name empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},"contacts.resolvePhone":{"comment":"Resolve a phone number to get user info, if their privacy settings allow it.","arguments":{"phone":"Phone number in international format, possibly obtained from a phone number deep link."},"throws":[{"code":400,"name":"PHONE_NOT_OCCUPIED","comment":"No user is associated to the specified phone number."}],"available":"user"},"contacts.setBlocked":{"comment":"Replace the contents of an entire blocklist, see here for more info ».","arguments":{"flags":"Flags, see TL conditional fields","my_stories_from":"Whether to edit the story blocklist; if not set, will edit the main blocklist. See here » for differences between the two.","id":"Full content of the blocklist.","limit":"Maximum number of results to return, see pagination"},"available":"user"},"contacts.editCloseFriends":{"comment":"Edit the close friends list, see here » for more info.","arguments":{"id":"Full list of user IDs of close friends, see here for more info."},"available":"user"},"account.toggleSponsoredMessages":{"comment":"Disable or re-enable Telegram ads for the current Premium account.\n\nUseful for business owners that may want to launch and view their own Telegram ads via the Telegram ad platform ».","arguments":{"enabled":"Enable or disable ads."},"available":"user"},"messages.getMessages":{"comment":"Returns the list of messages by their IDs.","arguments":{"id":"Message ID list"},"available":"both"},"contacts.getBirthdays":{"comment":"Fetch all users with birthdays that fall within +1/-1 days, relative to the current day: this method should be invoked by clients every 6-8 hours, and if the result is non-empty, it should be used to appropriately update locally cached birthday information in {@link RawUser}.birthday.\n\nSee here » for more info.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"contacts.getLocated":{"comment":"Get users and geochats near you, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","background":"While the geolocation of the current user is public, clients should update it in the background every half-an-hour or so, while setting this flag.
Do this only if the new location is more than 1 KM away from the previous one, or if the previous location is unknown.","geo_point":"Geolocation","self_expires":"If set, the geolocation of the current user will be public for the specified number of seconds; pass 0x7fffffff to disable expiry, 0 to make the current geolocation private; if the flag isn't set, no changes will be applied."},"throws":[{"code":406,"name":"BUSINESS_ADDRESS_ACTIVE","comment":"The user is currently advertising a Business Location, the location may only be changed (or removed) using {@link account.RawUpdateBusinessLocationRequest}. ."},{"code":400,"name":"GEO_POINT_INVALID","comment":"Invalid geoposition provided."},{"code":406,"name":"USERPIC_PRIVACY_REQUIRED","comment":"You need to disable privacy settings for your profile picture in order to make your geolocation public."},{"code":406,"name":"USERPIC_UPLOAD_REQUIRED","comment":"You must have a profile picture to publish your geolocation."}],"available":"user"},"messages.readHistory":{"comment":"Marks message history as read.","arguments":{"peer":"Target user or group","max_id":"If a positive value is passed, only messages with identifiers less or equal than the given one will be read"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getHistory":{"comment":"Returns the conversation history with one interlocutor / within a chat","arguments":{"peer":"Target peer","offset_id":"Only return messages starting from the specified message ID","offset_date":"Only return messages sent before the specified date","add_offset":"Number of list elements to be skipped, negative values are also accepted.","limit":"Number of results to return","max_id":"If a positive value was transferred, the method will return only messages with IDs less than max_id","min_id":"If a positive value was transferred, the method will return only messages with IDs more than min_id","hash":"Result hash"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TAKEOUT_INVALID","comment":"The specified takeout ID is invalid."}],"available":"user"},"messages.receivedMessages":{"comment":"Confirms receipt of messages by a client, cancels PUSH-notification sending.","arguments":{"max_id":"Maximum message ID available in a client."},"available":"user"},"messages.deleteMessages":{"comment":"Deletes messages by their identifiers.","arguments":{"flags":"Flags, see TL conditional fields","revoke":"Whether to delete messages for all participants of the chat","id":"Message ID list"},"throws":[{"code":403,"name":"MESSAGE_DELETE_FORBIDDEN","comment":"You can't delete one of the messages you tried to delete, most likely because it is a service message."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."}],"available":"both"},"messages.deleteHistory":{"comment":"Deletes communication history.","arguments":{"flags":"Flags, see TL conditional fields","just_clear":"Just clear history for the current user, without actually removing messages for every chat user","revoke":"Whether to delete the message history for all chat participants","peer":"User or chat, communication history of which will be deleted","max_id":"Maximum ID of message to delete","min_date":"Delete all messages newer than this UNIX timestamp","max_date":"Delete all messages older than this UNIX timestamp"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_REVOKE_DATE_UNSUPPORTED","comment":"min_date and max_date are not available for using with non-user peers."},{"code":400,"name":"MAX_DATE_INVALID","comment":"The specified maximum date is invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MIN_DATE_INVALID","comment":"The specified minimum date is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.forwardMessages":{"comment":"Forwards messages by their IDs.","arguments":{"flags":"Flags, see TL conditional fields","silent":"Whether to send messages silently (no notification will be triggered on the destination clients)","background":"Whether to send the message in background","with_my_score":"When forwarding games, whether to include your score in the game","drop_author":"Whether to forward messages without quoting the original author","drop_media_captions":"Whether to strip captions from media","noforwards":"Only for bots, disallows further re-forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled","allow_paid_floodskip":"Bots only: if set, allows sending up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance.","from_peer":"Source of messages","id":"IDs of messages","random_id":"Random ID to prevent resending of messages","to_peer":"Destination peer","top_msg_id":"Destination forum topic","schedule_date":"Scheduled message date for scheduled messages","send_as":"Forward the messages as the specified peer","quick_reply_shortcut":"Add the messages to the specified quick reply shortcut », instead."},"throws":[{"code":400,"name":"BROADCAST_PUBLIC_VOTERS_FORBIDDEN","comment":"You can't forward polls with public voters."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":406,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_AUDIOS_FORBIDDEN","comment":"You can't send audio messages in this chat."},{"code":403,"name":"CHAT_SEND_DOCS_FORBIDDEN","comment":"You can't send documents in this chat."},{"code":403,"name":"CHAT_SEND_GAME_FORBIDDEN","comment":"You can't send a game to this chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_SEND_POLL_FORBIDDEN","comment":"You can't send polls in this chat."},{"code":403,"name":"CHAT_SEND_STICKERS_FORBIDDEN","comment":"You can't send stickers in this chat."},{"code":403,"name":"CHAT_SEND_VIDEOS_FORBIDDEN","comment":"You can't send videos in this chat."},{"code":403,"name":"CHAT_SEND_VOICES_FORBIDDEN","comment":"You can't send voice recordings in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"GROUPED_MEDIA_INVALID","comment":"Invalid grouped media."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MESSAGE_IDS_EMPTY","comment":"No message ids were provided."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":406,"name":"PAYMENT_UNSUPPORTED","comment":"A detailed description of the error will be received separately as described here »."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":406,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":400,"name":"QUIZ_ANSWER_MISSING","comment":"You can forward a quiz while hiding the original author only after choosing an option in the quiz."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"RANDOM_ID_INVALID","comment":"A provided random ID is invalid."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"SCHEDULE_BOT_NOT_ALLOWED","comment":"Bots cannot schedule messages."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":400,"name":"SLOWMODE_MULTI_MSGS_DISABLED","comment":"Slowmode is enabled, you cannot forward multiple messages to this group."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":406,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":406,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."},{"code":403,"name":"VOICE_MESSAGES_FORBIDDEN","comment":"This user's privacy settings forbid you from sending voice messages."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"both"},"messages.reportSpam":{"comment":"Report a new incoming chat for spam, if the {@link RawPeerSettings} of the chat allow us to do that","arguments":{"peer":"Peer to report"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getDialogs":{"comment":"Returns the current user dialog list.","arguments":{"flags":"Flags, see TL conditional fields","exclude_pinned":"Exclude pinned dialogs","folder_id":"Peer folder ID, for more info click here","offset_date":"Offsets for pagination, for more info click here","offset_id":"Offsets for pagination, for more info click here (top_message ID used for pagination)","offset_peer":"Offset peer for pagination","limit":"Number of list elements to be returned","hash":"Hash used for caching, for more info click here"},"throws":[{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."},{"code":400,"name":"OFFSET_PEER_ID_INVALID","comment":"The provided offset peer is invalid."}],"available":"user"},"messages.report":{"comment":"Report a message in a chat for violation of telegram's Terms of Service","arguments":{"peer":"Peer","id":"IDs of messages to report","option":"Menu option, intially empty","message":"Comment for report moderation"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getPeerSettings":{"comment":"Get peer settings","arguments":{"peer":"The peer"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getChats":{"comment":"Returns chat basic info on their IDs.","arguments":{"id":"List of chat IDs"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},"messages.getFullChat":{"comment":"Get full info about a basic group.","arguments":{"chat_id":"Basic group ID."},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},"messages.editChatPhoto":{"comment":"Changes chat photo and sends a service message on it","arguments":{"chat_id":"Chat ID","photo":"Photo to be set"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."}],"available":"both"},"messages.editChatTitle":{"comment":"Changes chat name and sends a service message on it.","arguments":{"chat_id":"Chat ID","title":"New chat name, different from the old one"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},"messages.sendMedia":{"comment":"Send a media","arguments":{"flags":"Flags, see TL conditional fields","silent":"Send message silently (no notification should be triggered)","background":"Send message in background","clear_draft":"Clear the draft","noforwards":"Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled","update_stickersets_order":"Whether to move used stickersets to top, see here for more info on this flag »","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","allow_paid_floodskip":"Bots only: if set, allows sending up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance.","peer":"Destination","reply_to":"If set, indicates that the message should be sent in reply to the specified message or story.","media":"Attached media","message":"Caption","random_id":"Random ID to avoid resending the same message","reply_markup":"Reply markup for bot keyboards","entities":"Message entities for styled text","schedule_date":"Scheduled message date for scheduled messages","send_as":"Send this message as the specified peer","quick_reply_shortcut":"Add the message to the specified quick reply shortcut », instead.","effect":"Specifies a message effect » to use for the message."},"throws":[{"code":400,"name":"BOT_GAMES_DISABLED","comment":"Games can't be sent to channels."},{"code":400,"name":"BOT_PAYMENTS_DISABLED","comment":"Please enable bot payments in botfather before calling this method."},{"code":400,"name":"BROADCAST_PUBLIC_VOTERS_FORBIDDEN","comment":"You can't forward polls with public voters."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_POS_INVALID","comment":"The position of one of the keyboard buttons is invalid (i.e. a Game or Pay button not in the first position, and so on...)."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_AUDIOS_FORBIDDEN","comment":"You can't send audio messages in this chat."},{"code":403,"name":"CHAT_SEND_DOCS_FORBIDDEN","comment":"You can't send documents in this chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_SEND_POLL_FORBIDDEN","comment":"You can't send polls in this chat."},{"code":403,"name":"CHAT_SEND_ROUNDVIDEOS_FORBIDDEN","comment":"You can't send round videos to this chat."},{"code":403,"name":"CHAT_SEND_STICKERS_FORBIDDEN","comment":"You can't send stickers in this chat."},{"code":403,"name":"CHAT_SEND_VIDEOS_FORBIDDEN","comment":"You can't send videos in this chat."},{"code":403,"name":"CHAT_SEND_VOICES_FORBIDDEN","comment":"You can't send voice recordings in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"CURRENCY_TOTAL_AMOUNT_INVALID","comment":"The total amount of all prices is invalid."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"EMOTICON_INVALID","comment":"The specified emoji is invalid."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"EXTERNAL_URL_INVALID","comment":"External URL invalid."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_PART_LENGTH_INVALID","comment":"The length of a file part is invalid."},{"code":400,"name":"FILE_REFERENCE_EMPTY","comment":"An empty file reference was specified."},{"code":400,"name":"FILE_REFERENCE_EXPIRED","comment":"File reference expired, it must be refetched as described in the documentation."},{"code":400,"name":"GAME_BOT_INVALID","comment":"Bots can't send another bot's game."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"INPUT_FILE_INVALID","comment":"The specified InputFile is invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MD5_CHECKSUM_INVALID","comment":"The MD5 checksums do not match."},{"code":400,"name":"MEDIA_CAPTION_TOO_LONG","comment":"The caption is too long."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PAYMENT_PROVIDER_INVALID","comment":"The specified payment provider is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID_DIMENSIONS","comment":"The photo dimensions are invalid."},{"code":400,"name":"PHOTO_SAVE_FILE_INVALID","comment":"Internal issues, try again later."},{"code":400,"name":"POLL_ANSWERS_INVALID","comment":"Invalid poll answers were provided."},{"code":400,"name":"POLL_ANSWER_INVALID","comment":"One of the poll answers is not acceptable."},{"code":400,"name":"POLL_OPTION_DUPLICATE","comment":"Duplicate poll options provided."},{"code":400,"name":"POLL_OPTION_INVALID","comment":"Invalid poll option provided."},{"code":400,"name":"POLL_QUESTION_INVALID","comment":"One of the poll questions is not acceptable."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":403,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":400,"name":"QUIZ_CORRECT_ANSWERS_EMPTY","comment":"No correct quiz answer was specified."},{"code":400,"name":"QUIZ_CORRECT_ANSWERS_TOO_MUCH","comment":"You specified too many correct answers in a quiz, quizzes can only have one right answer!"},{"code":400,"name":"QUIZ_CORRECT_ANSWER_INVALID","comment":"An invalid value was provided to the correct_answers field."},{"code":400,"name":"QUIZ_MULTIPLE_INVALID","comment":"Quizzes can't have the multiple_choice flag set!"},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"REPLY_MARKUP_BUY_EMPTY","comment":"Reply markup for buy button empty."},{"code":400,"name":"REPLY_MARKUP_GAME_EMPTY","comment":"A game message is being edited, but the newly provided keyboard doesn't have a keyboardButtonGame button."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"REPLY_MARKUP_TOO_LONG","comment":"The specified reply_markup is too long."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"SCHEDULE_BOT_NOT_ALLOWED","comment":"Bots cannot schedule messages."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."},{"code":406,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":406,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"TTL_MEDIA_INVALID","comment":"Invalid media Time To Live was provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."},{"code":400,"name":"VIDEO_CONTENT_TYPE_INVALID","comment":"The video's content type is invalid."},{"code":400,"name":"VOICE_MESSAGES_FORBIDDEN","comment":"This user's privacy settings forbid you from sending voice messages."},{"code":400,"name":"WEBDOCUMENT_MIME_INVALID","comment":"Invalid webdocument mime type provided."},{"code":400,"name":"WEBPAGE_CURL_FAILED","comment":"Failure while fetching the webpage with cURL."},{"code":400,"name":"WEBPAGE_MEDIA_EMPTY","comment":"Webpage media empty."},{"code":400,"name":"WEBPAGE_NOT_FOUND","comment":"A preview for the specified webpage url could not be generated."},{"code":400,"name":"WEBPAGE_URL_INVALID","comment":"The specified webpage url is invalid."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"both"},"messages.deleteChatUser":{"comment":"Deletes a user from a chat and sends a service message on it.","arguments":{"flags":"Flags, see TL conditional fields","revoke_history":"Remove the entire chat history of the specified user in this chat.","chat_id":"Chat ID","user_id":"User ID to be deleted"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},"account.toggleConnectedBotPaused":{"comment":"Pause or unpause a specific chat, temporarily disconnecting it from all business bots ».","arguments":{"peer":"The chat to pause","paused":"Whether to pause or unpause the chat"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.addChatUser":{"comment":"Adds a user to a chat and sends a service message on it.","arguments":{"chat_id":"Chat ID","user_id":"User ID to be added","fwd_limit":"Number of last messages to be forwarded"},"throws":[{"code":400,"name":"BOT_GROUPS_BLOCKED","comment":"This bot can't be added to groups."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":403,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},"messages.createChat":{"comment":"Creates a new chat.","arguments":{"flags":"Flags, see TL conditional fields","users":"List of user IDs to be invited","title":"Chat name","ttl_period":"Time-to-live of all messages that will be sent in the chat: once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well. You can use {@link messages.RawSetDefaultHistoryTTLRequest} to edit this value later."},"throws":[{"code":500,"name":"CHAT_ID_GENERATE_FAILED","comment":"Failure while generating the chat ID."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."},{"code":400,"name":"USERS_TOO_FEW","comment":"Not enough users (to create a chat, for example)."},{"code":406,"name":"USER_RESTRICTED","comment":"You're spamreported, you can't create channels or chats."}],"available":"user"},"messages.acceptEncryption":{"comment":"Confirms creation of a secret chat","arguments":{"peer":"Secret chat ID","g_b":"B = g ^ b mod p, see Wikipedia","key_fingerprint":"64-bit fingerprint of the received key"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"ENCRYPTION_ALREADY_ACCEPTED","comment":"Secret chat already accepted."},{"code":400,"name":"ENCRYPTION_ALREADY_DECLINED","comment":"The secret chat was already declined."}],"available":"user"},"messages.requestEncryption":{"comment":"Sends a request to start a secret chat to the user.","arguments":{"user_id":"User ID","random_id":"Unique client request ID required to prevent resending. This also doubles as the chat ID.","g_a":"A = g ^ a mod p, see Wikipedia"},"throws":[{"code":400,"name":"DH_G_A_INVALID","comment":"g_a invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},"messages.setEncryptedTyping":{"comment":"Send typing event by the current user to a secret chat.","arguments":{"peer":"Secret chat ID","typing":"Typing.
Possible values:
true, if the user started typing and more than 5 seconds have passed since the last request
false, if the user stopped typing"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."}],"available":"user"},"messages.getDhConfig":{"comment":"Returns configuration parameters for Diffie-Hellman key generation. Can also return a random sequence of bytes of required length.","arguments":{"version":"Value of the version parameter from {@link messages.RawDhConfig}, available at the client","random_length":"Length of the required random sequence"},"throws":[{"code":400,"name":"RANDOM_LENGTH_INVALID","comment":"Random length invalid."}],"available":"user"},"messages.sendEncrypted":{"comment":"Sends a text message to a secret chat.","arguments":{"flags":"Flags, see TL conditional fields","silent":"Send encrypted message without a notification","peer":"Secret chat ID","random_id":"Unique client message ID, necessary to avoid message resending","data":"TL-serialization of DecryptedMessage type, encrypted with a key that was created during chat initialization"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"DATA_TOO_LONG","comment":"Data too long."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."}],"available":"user"},"messages.sendMessage":{"comment":"Sends a message to a chat","arguments":{"flags":"Flags, see TL conditional fields","no_webpage":"Set this flag to disable generation of the webpage preview","silent":"Send this message silently (no notifications for the receivers)","background":"Send this message as background message","clear_draft":"Clear the draft field","noforwards":"Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled","update_stickersets_order":"Whether to move used stickersets to top, see here for more info on this flag »","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","allow_paid_floodskip":"Bots only: if set, allows sending up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance.","peer":"The destination where the message will be sent","reply_to":"If set, indicates that the message should be sent in reply to the specified message or story.
Also used to quote other messages.","message":"The message","random_id":"Unique client message ID required to prevent message resending","reply_markup":"Reply markup for sending bot buttons","entities":"Message entities for sending styled text","schedule_date":"Scheduled message date for scheduled messages","send_as":"Send this message as the specified peer","quick_reply_shortcut":"Add the message to the specified quick reply shortcut », instead.","effect":"Specifies a message effect » to use for the message."},"throws":[{"code":400,"name":"ADMIN_RIGHTS_EMPTY","comment":"The chatAdminRights constructor passed in keyboardButtonRequestPeer.peer_type.user_admin_rights has no rights set (i.e. flags is 0)."},{"code":400,"name":"BOT_DOMAIN_INVALID","comment":"Bot domain invalid."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BUSINESS_PEER_INVALID","comment":"Messages can't be set to the specified peer through the current business connection."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"BUTTON_USER_INVALID","comment":"The user_id passed to inputKeyboardButtonUserProfile is invalid!"},{"code":400,"name":"BUTTON_USER_PRIVACY_RESTRICTED","comment":"The privacy setting of the user specified in a {@link RawInputKeyboardButtonUserProfile} button do not allow creating such a button."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":400,"name":"ENTITIES_TOO_LONG","comment":"You provided too many styled message entities."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"ENTITY_MENTION_USER_INVALID","comment":"You mentioned an invalid user."},{"code":400,"name":"FROM_MESSAGE_BOT_DISABLED","comment":"Bots can't use fromMessage min constructors."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":406,"name":"PAYMENT_UNSUPPORTED","comment":"A detailed description of the error will be received separately as described here »."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PINNED_DIALOGS_TOO_MUCH","comment":"Too many pinned dialogs."},{"code":400,"name":"POLL_OPTION_INVALID","comment":"Invalid poll option provided."},{"code":406,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":400,"name":"QUOTE_TEXT_INVALID","comment":"The specified reply_to.quote_text field is invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"REPLY_MARKUP_TOO_LONG","comment":"The specified reply_markup is too long."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"REPLY_MESSAGE_ID_INVALID","comment":"The specified reply-to message ID is invalid."},{"code":400,"name":"REPLY_TO_INVALID","comment":"The specified reply_to field is invalid."},{"code":400,"name":"REPLY_TO_USER_INVALID","comment":"The replied-to user is invalid."},{"code":400,"name":"SCHEDULE_BOT_NOT_ALLOWED","comment":"Bots cannot schedule messages."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_STATUS_PRIVATE","comment":"Can't schedule until user is online, if the user's last seen timestamp is hidden by their privacy settings."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."},{"code":406,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":406,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."},{"code":400,"name":"WC_CONVERT_URL_INVALID","comment":"WC convert URL invalid."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"both"},"messages.search":{"comment":"Search for messages.","arguments":{"flags":"Flags, see TL conditional fields","peer":"User or chat, histories with which are searched, or {@link RawInputPeerEmpty} constructor to search in all private chats and normal groups (not channels) ». Use {@link messages.RawSearchGlobalRequest} to search globally in all chats, groups, supergroups and channels.","q":"Text search request","from_id":"Only return messages sent by the specified user ID","saved_peer_id":"Search within the saved message dialog » with this ID.","saved_reaction":"You may search for saved messages tagged » with one or more reactions using this flag.","top_msg_id":"Thread ID","filter":"Filter to return only specified message types","min_date":"If a positive value was transferred, only messages with a sending date bigger than the transferred one will be returned","max_date":"If a positive value was transferred, only messages with a sending date smaller than the transferred one will be returned","offset_id":"Only return messages starting from the specified message ID","add_offset":"Additional offset","limit":"Number of results to return","max_id":"Maximum message ID to return","min_id":"Minimum message ID to return","hash":"Hash"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"FROM_PEER_INVALID","comment":"The specified from_id is invalid."},{"code":400,"name":"INPUT_FILTER_INVALID","comment":"The specified filter is invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PEER_ID_NOT_SUPPORTED","comment":"The provided peer ID is not supported."},{"code":400,"name":"SEARCH_QUERY_EMPTY","comment":"The search query is empty."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},"users.getUsers":{"comment":"Returns basic user info according to their identifiers.","arguments":{"id":"List of user identifiers"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"FROM_MESSAGE_BOT_DISABLED","comment":"Bots can't use fromMessage min constructors."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},"messages.sendEncryptedService":{"comment":"Sends a service message to a secret chat.","arguments":{"peer":"Secret chat ID","random_id":"Unique client message ID required to prevent message resending","data":"TL-serialization of DecryptedMessage type, encrypted with a key generated during chat initialization"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":400,"name":"ENCRYPTION_ID_INVALID","comment":"The provided secret chat ID is invalid."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":403,"name":"USER_DELETED","comment":"You can't send this secret message because the other participant deleted their account."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."}],"available":"user"},"messages.getStickers":{"comment":"Get stickers by emoji","arguments":{"emoticon":"The emoji","hash":"Hash used for caching, for more info click here."},"throws":[{"code":400,"name":"EMOTICON_EMPTY","comment":"The emoji is empty."}],"available":"user"},"messages.sendEncryptedFile":{"comment":"Sends a message with a file attachment to a secret chat","arguments":{"flags":"Flags, see TL conditional fields","silent":"Whether to send the file without triggering a notification","peer":"Secret chat ID","random_id":"Unique client message ID necessary to prevent message resending","data":"TL-serialization of DecryptedMessage type, encrypted with a key generated during chat initialization","file":"File attachment for the secret chat"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"DATA_TOO_LONG","comment":"Data too long."},{"code":400,"name":"ENCRYPTION_DECLINED","comment":"The secret chat was declined."},{"code":400,"name":"FILE_EMTPY","comment":"An empty file was provided."},{"code":400,"name":"MD5_CHECKSUM_INVALID","comment":"The MD5 checksums do not match."},{"code":400,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."}],"available":"user"},"messages.getStickerSet":{"comment":"Get info about a stickerset","arguments":{"stickerset":"Stickerset","hash":"Hash used for caching, for more info click here"},"throws":[{"code":400,"name":"EMOTICON_STICKERPACK_MISSING","comment":"inputStickerSetDice.emoji cannot be empty."},{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"both"},"contacts.getTopPeers":{"comment":"Get most used peers","arguments":{"flags":"Flags, see TL conditional fields","correspondents":"Users we've chatted most frequently with","bots_pm":"Most used bots","bots_inline":"Most used inline bots","phone_calls":"Most frequently called users","forward_users":"Users to which the users often forwards messages to","forward_chats":"Chats to which the users often forwards messages to","groups":"Often-opened groups and supergroups","channels":"Most frequently visited channels","bots_app":"Most frequently used Main Mini Bot Apps.","offset":"Offset for pagination","limit":"Maximum number of results to return, see pagination","hash":"Hash used for caching, for more info click here"},"throws":[{"code":400,"name":"TYPES_EMPTY","comment":"No top peer type was provided."}],"available":"user"},"messages.setTyping":{"comment":"Sends a current user typing event (see SendMessageAction for all event types) to a conversation partner or group.","arguments":{"flags":"Flags, see TL conditional fields","peer":"Target user or group","top_msg_id":"Topic ID","action":"Type of action"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":400,"name":"USER_IS_BOT","comment":"Bots can't send messages to other bots."}],"available":"both"},"messages.getWebPagePreview":{"comment":"Get preview of webpage","arguments":{"flags":"Flags, see TL conditional fields","message":"Message from which to extract the preview","entities":"Message entities for styled text"},"throws":[{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."}],"available":"user"},"messages.getAllStickers":{"comment":"Get all installed stickers","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.installStickerSet":{"comment":"Install a stickerset","arguments":{"stickerset":"Stickerset to install","archived":"Whether to archive stickerset"},"throws":[{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"user"},"messages.importChatInvite":{"comment":"Import a chat invite and join a private chat/supergroup/channel","arguments":{"hash":"hash from a chat invite deep link"},"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"INVITE_HASH_EMPTY","comment":"The invite hash is empty."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_HASH_INVALID","comment":"The invite hash is invalid."},{"code":400,"name":"INVITE_REQUEST_SENT","comment":"You have successfully requested to join this chat or channel."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":400,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."}],"available":"user"},"messages.uninstallStickerSet":{"comment":"Uninstall a stickerset","arguments":{"stickerset":"The stickerset to uninstall"},"throws":[{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"user"},"messages.getMessagesViews":{"comment":"Get and increase the view counter of a message sent or forwarded from a channel","arguments":{"peer":"Peer where the message was found","id":"ID of message","increment":"Whether to mark the message as viewed and increment the view counter"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.reportEncryptedSpam":{"comment":"Report a secret chat for spam","arguments":{"peer":"The secret chat to report"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."}],"available":"user"},"messages.startBot":{"comment":"Start a conversation with a bot using a deep linking parameter","arguments":{"bot":"The bot","peer":"The chat where to start the bot, can be the bot's private chat or a group","random_id":"Random ID to avoid resending the same message","start_param":"Deep linking parameter"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"START_PARAM_EMPTY","comment":"The start parameter is empty."},{"code":400,"name":"START_PARAM_INVALID","comment":"Start parameter invalid."},{"code":400,"name":"START_PARAM_TOO_LONG","comment":"Start parameter is too long."}],"available":"user"},"messages.checkChatInvite":{"comment":"Check the validity of a chat invite link and get basic info about it","arguments":{"hash":"Invite hash from chat invite deep link »."},"throws":[{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"INVITE_HASH_EMPTY","comment":"The invite hash is empty."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_HASH_INVALID","comment":"The invite hash is invalid."}],"available":"user"},"messages.migrateChat":{"comment":"Turn a basic group into a supergroup","arguments":{"chat_id":"Basic group to migrate"},"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":500,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.receivedQueue":{"comment":"Confirms receipt of messages in a secret chat by client, cancels push notifications.
\nThe method returns a list of random_ids of messages for which push notifications were cancelled.","arguments":{"max_qts":"Maximum qts value available at the client"},"throws":[{"code":400,"name":"MAX_QTS_INVALID","comment":"The specified max_qts is invalid."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."}],"available":"user"},"messages.readEncryptedHistory":{"comment":"Marks message history within a secret chat as read.","arguments":{"peer":"Secret chat ID","max_date":"Maximum date value for received messages in history"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MAX_DATE_INVALID","comment":"The specified maximum date is invalid."},{"code":400,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."}],"available":"user"},"messages.getDocumentByHash":{"comment":"Get a document by its SHA256 hash, mainly used for gifs","arguments":{"sha256":"SHA256 of file","size":"Size of the file in bytes","mime_type":"Mime type"},"throws":[{"code":400,"name":"SHA256_HASH_INVALID","comment":"The provided SHA256 hash is invalid."}],"available":"both"},"messages.getInlineBotResults":{"comment":"Query an inline bot","arguments":{"flags":"Flags, see TL conditional fields","bot":"The bot to query","peer":"The currently opened chat","geo_point":"The geolocation, if requested","query":"The query","offset":"The offset within the results, will be passed directly as-is to the bot."},"throws":[{"code":400,"name":"BOT_INLINE_DISABLED","comment":"This bot can't be used in inline mode."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BOT_RESPONSE_TIMEOUT","comment":"A timeout occurred while fetching data from the bot."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":-503,"name":"Timeout","comment":"Timeout while fetching data."}],"available":"user"},"messages.getSavedGifs":{"comment":"Get saved GIFs.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.setInlineBotResults":{"comment":"Answer an inline query, for bots only","arguments":{"flags":"Flags, see TL conditional fields","gallery":"Set this flag if the results are composed of media files","private":"Set this flag if results may be cached on the server side only for the user that sent the query. By default, results may be returned to any user who sends the same query","query_id":"Unique identifier for the answered query","results":"Vector of results for the inline query","cache_time":"The maximum amount of time in seconds that the result of the inline query may be cached on the server. Defaults to 300.","next_offset":"Pass the offset that a client should send in the next query with the same text to receive more results. Pass an empty string if there are no more results or if you don't support pagination. Offset length can't exceed 64 bytes.","switch_pm":"If passed, clients will display a button on top of the remaining inline result list with the specified text, that switches the user to a private chat with the bot and sends the bot a start message with a certain parameter.","switch_webview":"If passed, clients will display a button on top of the remaining inline result list with the specified text, that switches the user to the specified inline mode mini app."},"throws":[{"code":400,"name":"ARTICLE_TITLE_EMPTY","comment":"The title of the article is empty."},{"code":400,"name":"AUDIO_CONTENT_URL_EMPTY","comment":"The remote URL specified in the content field is empty."},{"code":400,"name":"AUDIO_TITLE_EMPTY","comment":"An empty audio title was provided."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"FILE_CONTENT_TYPE_INVALID","comment":"File content-type is invalid."},{"code":400,"name":"FILE_TITLE_EMPTY","comment":"An empty file title was specified."},{"code":400,"name":"GIF_CONTENT_TYPE_INVALID","comment":"GIF content-type invalid."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"NEXT_OFFSET_INVALID","comment":"The specified offset is longer than 64 bytes."},{"code":400,"name":"PHOTO_CONTENT_TYPE_INVALID","comment":"Photo mime-type invalid."},{"code":400,"name":"PHOTO_CONTENT_URL_EMPTY","comment":"Photo URL invalid."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."},{"code":400,"name":"PHOTO_THUMB_URL_EMPTY","comment":"Photo thumbnail URL is empty."},{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"RESULTS_TOO_MUCH","comment":"Too many results were provided."},{"code":400,"name":"RESULT_ID_DUPLICATE","comment":"You provided a duplicate result ID."},{"code":400,"name":"RESULT_ID_INVALID","comment":"One of the specified result IDs is invalid."},{"code":400,"name":"RESULT_TYPE_INVALID","comment":"Result type invalid."},{"code":400,"name":"SEND_MESSAGE_MEDIA_INVALID","comment":"Invalid media provided."},{"code":400,"name":"SEND_MESSAGE_TYPE_INVALID","comment":"The message type is invalid."},{"code":400,"name":"START_PARAM_EMPTY","comment":"The start parameter is empty."},{"code":400,"name":"START_PARAM_INVALID","comment":"Start parameter invalid."},{"code":400,"name":"STICKER_DOCUMENT_INVALID","comment":"The specified sticker document is invalid."},{"code":400,"name":"SWITCH_PM_TEXT_EMPTY","comment":"The switch_pm.text field was empty."},{"code":400,"name":"SWITCH_WEBVIEW_URL_INVALID","comment":"The URL specified in switch_webview.url is invalid!"},{"code":400,"name":"URL_INVALID","comment":"Invalid URL provided."},{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"VIDEO_TITLE_EMPTY","comment":"The specified video title is empty."},{"code":400,"name":"WEBDOCUMENT_INVALID","comment":"Invalid webdocument URL provided."},{"code":400,"name":"WEBDOCUMENT_MIME_INVALID","comment":"Invalid webdocument mime type provided."},{"code":400,"name":"WEBDOCUMENT_SIZE_TOO_BIG","comment":"Webdocument is too big!"},{"code":400,"name":"WEBDOCUMENT_URL_INVALID","comment":"The specified webdocument URL is invalid."}],"available":"bot"},"messages.exportChatInvite":{"comment":"Export an invite link for a chat","arguments":{"flags":"Flags, see TL conditional fields","legacy_revoke_permanent":"Legacy flag, reproducing legacy behavior of this method: if set, revokes all previous links before creating a new one. Kept for bot API BC, should not be used by modern clients.","request_needed":"Whether admin confirmation is required before admitting each separate user into the chat","peer":"Chat","expire_date":"Expiration date","usage_limit":"Maximum number of users that can join using this link","title":"Description of the invite link, visible only to administrators","subscription_pricing":"For Telegram Star subscriptions », contains the pricing of the subscription the user must activate to join the private channel."},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"EXPIRE_DATE_INVALID","comment":"The specified expiration date is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USAGE_LIMIT_INVALID","comment":"The specified usage limit is invalid."}],"available":"both"},"messages.saveGif":{"comment":"Add GIF to saved gifs list","arguments":{"id":"GIF to save","unsave":"Whether to remove GIF from saved gifs list"},"throws":[{"code":400,"name":"GIF_ID_INVALID","comment":"The provided GIF ID is invalid."}],"available":"user"},"messages.searchGlobal":{"comment":"Search for messages and peers globally","arguments":{"flags":"Flags, see TL conditional fields","broadcasts_only":"If set, only returns results from channels (used in the global channel search tab »).","folder_id":"Peer folder ID, for more info click here","q":"Query","filter":"Global search filter","min_date":"If a positive value was specified, the method will return only messages with date bigger than min_date","max_date":"If a positive value was transferred, the method will return only messages with date smaller than max_date","offset_rate":"Initially 0, then set to the {@link messages.RawMessagesSlice}","offset_peer":"Offsets for pagination, for more info click here","offset_id":"Offsets for pagination, for more info click here","limit":"Offsets for pagination, for more info click here"},"throws":[{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."},{"code":400,"name":"INPUT_FILTER_INVALID","comment":"The specified filter is invalid."},{"code":400,"name":"SEARCH_QUERY_EMPTY","comment":"The search query is empty."}],"available":"user"},"messages.editInlineBotMessage":{"comment":"Edit an inline bot message","arguments":{"flags":"Flags, see TL conditional fields","no_webpage":"Disable webpage preview","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","id":"Sent inline message ID","message":"Message","media":"Media","reply_markup":"Reply markup for inline keyboards","entities":"Message entities for styled text"},"throws":[{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_MODIFIED","comment":"The provided message data is identical to the previous message data, the message wasn't modified."}],"available":"both"},"messages.getBotCallbackAnswer":{"comment":"Press an inline callback button and get a callback answer from the bot","arguments":{"flags":"Flags, see TL conditional fields","game":"Whether this is a \"play game\" button","peer":"Where was the inline keyboard sent","msg_id":"ID of the Message with the inline keyboard","data":"Callback data","password":"For buttons {@link RawKeyboardButtonCallback}, the SRP payload generated using SRP."},"throws":[{"code":400,"name":"BOT_RESPONSE_TIMEOUT","comment":"A timeout occurred while fetching data from the bot."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":-503,"name":"Timeout","comment":"Timeout while fetching data."}],"available":"user"},"messages.reorderStickerSets":{"comment":"Reorder installed stickersets","arguments":{"flags":"Flags, see TL conditional fields","masks":"Reorder mask stickersets","emojis":"Reorder custom emoji stickersets","order":"New stickerset order by stickerset IDs"},"available":"user"},"messages.setBotCallbackAnswer":{"comment":"Set the callback answer to a user button press (bots only)","arguments":{"flags":"Flags, see TL conditional fields","alert":"Whether to show the message as a popup instead of a toast notification","query_id":"Query ID","message":"Popup to show","url":"URL to open","cache_time":"Cache validity"},"throws":[{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"URL_INVALID","comment":"Invalid URL provided."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"messages.getPeerDialogs":{"comment":"Get dialog info of specified peers","arguments":{"peers":"Peers"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.readFeaturedStickers":{"comment":"Mark new featured stickers as read","arguments":{"id":"IDs of stickersets to mark as read"},"available":"user"},"messages.saveDraft":{"comment":"Save a message draft associated to a chat.","arguments":{"flags":"Flags, see TL conditional fields","no_webpage":"Disable generation of the webpage preview","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","reply_to":"If set, indicates that the message should be sent in reply to the specified message or story.","peer":"Destination of the message that should be sent","message":"The draft","entities":"Message entities for styled text","media":"Attached media","effect":"Specifies a message effect » to use for the message."},"throws":[{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getAllDrafts":{"comment":"Return all message drafts.
\nReturns all the latest {@link RawUpdateDraftMessage} updates related to all chats with drafts.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.sendInlineBotResult":{"comment":"Send a result obtained using {@link messages.RawGetInlineBotResultsRequest}.","arguments":{"flags":"Flags, see TL conditional fields","silent":"Whether to send the message silently (no notification will be triggered on the other client)","background":"Whether to send the message in background","clear_draft":"Whether to clear the draft","hide_via":"Whether to hide the via @botname in the resulting message (only for bot usernames encountered in the {@link RawConfig})","peer":"Destination","reply_to":"If set, indicates that the message should be sent in reply to the specified message or story.","random_id":"Random ID to avoid resending the same query","query_id":"Query ID from {@link messages.RawGetInlineBotResultsRequest}","id":"Result ID from {@link messages.RawGetInlineBotResultsRequest}","schedule_date":"Scheduled message date for scheduled messages","send_as":"Send this message as the specified peer","quick_reply_shortcut":"Add the message to the specified quick reply shortcut », instead."},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_GUEST_SEND_FORBIDDEN","comment":"You join the discussion group before commenting, see here » for more info."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_SEND_AUDIOS_FORBIDDEN","comment":"You can't send audio messages in this chat."},{"code":403,"name":"CHAT_SEND_GAME_FORBIDDEN","comment":"You can't send a game to this chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_SEND_INLINE_FORBIDDEN","comment":"You can't send inline messages in this group."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_PLAIN_FORBIDDEN","comment":"You can't send non-media (text) messages in this chat."},{"code":403,"name":"CHAT_SEND_STICKERS_FORBIDDEN","comment":"You can't send stickers in this chat."},{"code":403,"name":"CHAT_SEND_VOICES_FORBIDDEN","comment":"You can't send voice recordings in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"INLINE_RESULT_EXPIRED","comment":"The inline query expired."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"QUERY_ID_EMPTY","comment":"The query ID is empty."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"RESULT_ID_EMPTY","comment":"Result ID empty."},{"code":400,"name":"RESULT_ID_INVALID","comment":"One of the specified result IDs is invalid."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":500,"name":"SEND_MEDIA_INVALID","comment":"The specified media is invalid."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"VOICE_MESSAGES_FORBIDDEN","comment":"This user's privacy settings forbid you from sending voice messages."},{"code":400,"name":"WEBPAGE_CURL_FAILED","comment":"Failure while fetching the webpage with cURL."},{"code":400,"name":"WEBPAGE_MEDIA_EMPTY","comment":"Webpage media empty."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},"messages.editMessage":{"comment":"Edit message","arguments":{"flags":"Flags, see TL conditional fields","no_webpage":"Disable webpage preview","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","peer":"Where was the message sent","id":"ID of the message to edit","message":"New message","media":"New attached media","reply_markup":"Reply markup for inline keyboards","entities":"Message entities for styled text","schedule_date":"Scheduled message date for scheduled messages","quick_reply_shortcut_id":"If specified, edits a quick reply shortcut message, instead »."},"throws":[{"code":400,"name":"BOT_DOMAIN_INVALID","comment":"Bot domain invalid."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BUTTON_DATA_INVALID","comment":"The data of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_TYPE_INVALID","comment":"The type of one or more of the buttons you provided is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_SEND_GIFS_FORBIDDEN","comment":"You can't send gifs in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"ENTITIES_TOO_LONG","comment":"You provided too many styled message entities."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":403,"name":"INLINE_BOT_REQUIRED","comment":"Only the inline bot can edit message."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_CAPTION_TOO_LONG","comment":"The caption is too long."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_GROUPED_INVALID","comment":"You tried to send media of different types in an album."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MEDIA_NEW_INVALID","comment":"The new media is invalid."},{"code":400,"name":"MEDIA_PREV_INVALID","comment":"Previous media invalid."},{"code":400,"name":"MEDIA_TTL_INVALID","comment":"The specified media TTL is invalid."},{"code":403,"name":"MESSAGE_AUTHOR_REQUIRED","comment":"Message author required."},{"code":400,"name":"MESSAGE_EDIT_TIME_EXPIRED","comment":"You can't edit this message anymore, too much time has passed since its creation."},{"code":400,"name":"MESSAGE_EMPTY","comment":"The provided message is empty."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_MODIFIED","comment":"The provided message data is identical to the previous message data, the message wasn't modified."},{"code":400,"name":"MESSAGE_TOO_LONG","comment":"The provided message is too long."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":500,"name":"MSG_WAIT_FAILED","comment":"A waiting call returned an error."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REPLY_MARKUP_INVALID","comment":"The provided reply markup is invalid."},{"code":400,"name":"REPLY_MARKUP_TOO_LONG","comment":"The specified reply_markup is too long."},{"code":400,"name":"SCHEDULE_DATE_INVALID","comment":"Invalid schedule date provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"WEBPAGE_NOT_FOUND","comment":"A preview for the specified webpage url could not be generated."}],"available":"both"},"messages.getMessageEditData":{"comment":"Find out if a media message's caption can be edited","arguments":{"peer":"Peer where the media was sent","id":"ID of message"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"MESSAGE_AUTHOR_REQUIRED","comment":"Message author required."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.clearRecentStickers":{"comment":"Clear recent stickers","arguments":{"flags":"Flags, see TL conditional fields","attached":"Set this flag to clear the list of stickers recently attached to photo or video files"},"available":"user"},"messages.getArchivedStickers":{"comment":"Get all archived stickers","arguments":{"flags":"Flags, see TL conditional fields","masks":"Get mask stickers","emojis":"Get custom emoji stickers","offset_id":"Offsets for pagination, for more info click here","limit":"Maximum number of results to return, see pagination"},"available":"user"},"messages.getMaskStickers":{"comment":"Get installed mask stickers","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.setGameScore":{"comment":"Use this method to set the score of the specified user in a game sent as a normal message (bots only).","arguments":{"flags":"Flags, see TL conditional fields","edit_message":"Set this flag if the game message should be automatically edited to include the current scoreboard","force":"Set this flag if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters","peer":"Unique identifier of target chat","id":"Identifier of the sent message","user_id":"User identifier","score":"New score"},"throws":[{"code":400,"name":"BOT_SCORE_NOT_MODIFIED","comment":"The score wasn't modified."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SCORE_INVALID","comment":"The specified game score is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"messages.discardEncryption":{"comment":"Cancels a request for creation and/or delete info on secret chat.","arguments":{"flags":"Flags, see TL conditional fields","delete_history":"Whether to delete the entire chat history for the other user as well","chat_id":"Secret chat ID"},"throws":[{"code":400,"name":"CHAT_ID_EMPTY","comment":"The provided chat ID is empty."},{"code":400,"name":"ENCRYPTION_ALREADY_ACCEPTED","comment":"Secret chat already accepted."},{"code":400,"name":"ENCRYPTION_ALREADY_DECLINED","comment":"The secret chat was already declined."},{"code":400,"name":"ENCRYPTION_ID_INVALID","comment":"The provided secret chat ID is invalid."}],"available":"user"},"messages.editChatAdmin":{"comment":"Make a user admin in a basic group.","arguments":{"chat_id":"The ID of the group","user_id":"The user to make admin","is_admin":"Whether to make them admin"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"user"},"messages.getCommonChats":{"comment":"Get chats in common with a user","arguments":{"user_id":"User ID","max_id":"Maximum ID of chat to return (see pagination)","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},"messages.toggleDialogPin":{"comment":"Pin/unpin a dialog","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Whether to pin or unpin the dialog","peer":"The dialog to pin"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_HISTORY_EMPTY","comment":"You can't pin an empty chat with a user."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PINNED_DIALOGS_TOO_MUCH","comment":"Too many pinned dialogs."}],"available":"user"},"messages.getFeaturedStickers":{"comment":"Get featured stickers","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.setInlineGameScore":{"comment":"Use this method to set the score of the specified user in a game sent as an inline message (bots only).","arguments":{"flags":"Flags, see TL conditional fields","edit_message":"Set this flag if the game message should be automatically edited to include the current scoreboard","force":"Set this flag if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters","id":"ID of the inline message","user_id":"User identifier","score":"New score"},"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"messages.saveRecentSticker":{"comment":"Add/remove sticker from recent stickers list","arguments":{"flags":"Flags, see TL conditional fields","attached":"Whether to add/remove stickers recently attached to photo or video files","id":"Sticker","unsave":"Whether to save or unsave the sticker"},"throws":[{"code":400,"name":"STICKER_ID_INVALID","comment":"The provided sticker ID is invalid."}],"available":"user"},"messages.reorderPinnedDialogs":{"comment":"Reorder pinned dialogs","arguments":{"flags":"Flags, see TL conditional fields","force":"If set, dialogs pinned server-side but not present in the order field will be unpinned.","folder_id":"Peer folder ID, for more info click here","order":"New dialog order"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getGameHighScores":{"comment":"Get highscores of a game","arguments":{"peer":"Where was the game sent","id":"ID of message with game media attachment","user_id":"Get high scores made by a certain user"},"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"messages.getWebPage":{"comment":"Get instant view page","arguments":{"url":"URL of IV page to fetch","hash":"Hash used for caching, for more info click here.
Note: the usual hash generation algorithm cannot be used in this case, please re-use the {@link RawWebPage}.hash field returned by a previous call to the method, or pass 0 if this is the first call or if the previous call did not return a {@link RawWebPage}."},"throws":[{"code":400,"name":"WC_CONVERT_URL_INVALID","comment":"WC convert URL invalid."}],"available":"user"},"messages.getInlineGameHighScores":{"comment":"Get highscores of a game sent using an inline bot","arguments":{"id":"ID of inline message","user_id":"Get high scores of a certain user"},"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"messages.getPinnedDialogs":{"comment":"Get pinned dialogs","arguments":{"folder_id":"Peer folder ID, for more info click here"},"throws":[{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."}],"available":"user"},"messages.setBotShippingResults":{"comment":"If you sent an invoice requesting a shipping address and the parameter is_flexible was specified, the bot will receive an {@link RawUpdateBotShippingQuery} update. Use this method to reply to shipping queries.","arguments":{"flags":"Flags, see TL conditional fields","query_id":"Unique identifier for the query to be answered","error":"Error message in human readable form that explains why it is impossible to complete the order (e.g. \"Sorry, delivery to your desired address is unavailable\"). Telegram will display this message to the user.","shipping_options":"A vector of available shipping options."},"throws":[{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"messages.readMentions":{"comment":"Mark mentions as read","arguments":{"flags":"Flags, see TL conditional fields","peer":"Dialog","top_msg_id":"Mark as read only mentions within the specified forum topic"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.uploadMedia":{"comment":"Upload a file and associate it to a chat (without actually sending it to the chat)","arguments":{"flags":"Flags, see TL conditional fields","business_connection_id":"Whether the media will be used only in the specified business connection », and not directly by the bot.","peer":"The chat, can be {@link RawInputPeerEmpty} for bots and {@link RawInputPeerSelf} for users.","media":"File uploaded in chunks as described in files »"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_RESTRICTED","comment":"You can't send messages in this chat, you were restricted."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_PART_LENGTH_INVALID","comment":"The length of a file part is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID_DIMENSIONS","comment":"The photo dimensions are invalid."},{"code":400,"name":"PHOTO_SAVE_FILE_INVALID","comment":"Internal issues, try again later."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"WEBPAGE_CURL_FAILED","comment":"Failure while fetching the webpage with cURL."}],"available":"both"},"messages.sendScreenshotNotification":{"comment":"Notify the other user in a private chat that a screenshot of the chat was taken","arguments":{"peer":"Other user","reply_to":"Indicates the message that was screenshotted (the specified message ID can also be 0 to avoid indicating any specific message).","random_id":"Random ID to avoid message resending"},"throws":[{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REPLY_MESSAGE_ID_INVALID","comment":"The specified reply-to message ID is invalid."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},"messages.sendMultiMedia":{"comment":"Send an album or grouped media","arguments":{"flags":"Flags, see TL conditional fields","silent":"Whether to send the album silently (no notification triggered)","background":"Send in background?","clear_draft":"Whether to clear drafts","noforwards":"Only for bots, disallows forwarding and saving of the messages, even if the destination chat doesn't have content protection enabled","update_stickersets_order":"Whether to move used stickersets to top, see here for more info on this flag »","invert_media":"If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.","allow_paid_floodskip":"Bots only: if set, allows sending up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance.","peer":"The destination chat","reply_to":"If set, indicates that the message should be sent in reply to the specified message or story.","multi_media":"The medias to send: note that they must be separately uploaded using {@link messages.RawUploadMediaRequest} first, using raw inputMediaUploaded* constructors is not supported.","schedule_date":"Scheduled message date for scheduled messages","send_as":"Send this message as the specified peer","quick_reply_shortcut":"Add the message to the specified quick reply shortcut », instead.","effect":"Specifies a message effect » to use for the message."},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_FORWARDS_RESTRICTED","comment":"You can't forward messages from a protected chat."},{"code":403,"name":"CHAT_SEND_MEDIA_FORBIDDEN","comment":"You can't send media in this chat."},{"code":403,"name":"CHAT_SEND_PHOTOS_FORBIDDEN","comment":"You can't send photos in this chat."},{"code":403,"name":"CHAT_SEND_VIDEOS_FORBIDDEN","comment":"You can't send videos in this chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":400,"name":"FILE_REFERENCE_%d_EXPIRED","comment":"The file reference of the media file at index %d in the passed media array expired, it must be refreshed."},{"code":400,"name":"FILE_REFERENCE_%d_INVALID","comment":"The file reference of the media file at index %d in the passed media array is invalid."},{"code":400,"name":"MEDIA_CAPTION_TOO_LONG","comment":"The caption is too long."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"MULTI_MEDIA_TOO_LONG","comment":"Too many media files for album."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"QUICK_REPLIES_TOO_MUCH","comment":"A maximum of appConfig.quick_replies_limit shortcuts may be created, the limit was reached."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"RANDOM_ID_EMPTY","comment":"Random ID empty."},{"code":400,"name":"REPLY_MESSAGES_TOO_MUCH","comment":"Each shortcut can contain a maximum of appConfig.quick_reply_messages_limit messages, the limit was reached."},{"code":400,"name":"SCHEDULE_DATE_TOO_LATE","comment":"You can't schedule a message this far in the future."},{"code":400,"name":"SCHEDULE_TOO_MUCH","comment":"There are too many scheduled messages."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":420,"name":"SLOWMODE_WAIT_%d","comment":"Slowmode is enabled in this chat: wait %d seconds before sending another message to this chat."},{"code":400,"name":"TOPIC_CLOSED","comment":"This topic was closed, you can't send messages to it anymore."},{"code":400,"name":"TOPIC_DELETED","comment":"The specified topic was deleted."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},"messages.getUnreadMentions":{"comment":"Get unread messages where we were mentioned","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer where to look for mentions","top_msg_id":"If set, considers only messages within the specified forum topic","offset_id":"Offsets for pagination, for more info click here","add_offset":"Offsets for pagination, for more info click here","limit":"Maximum number of results to return, see pagination","max_id":"Maximum message ID to return, see pagination","min_id":"Minimum message ID to return, see pagination"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.setBotPrecheckoutResults":{"comment":"Once the user has confirmed their payment and shipping details, the bot receives an {@link RawUpdateBotPrecheckoutQuery} update.
\nUse this method to respond to such pre-checkout queries.
\nNote: Telegram must receive an answer within 10 seconds after the pre-checkout query was sent.","arguments":{"flags":"Flags, see TL conditional fields","success":"Set this flag if everything is alright (goods are available, etc.) and the bot is ready to proceed with the order, otherwise do not set it, and set the error field, instead","query_id":"Unique identifier for the query to be answered","error":"Required if the success isn't set. Error message in human readable form that explains the reason for failure to proceed with the checkout (e.g. \"Sorry, somebody just bought the last of our amazing black T-shirts while you were busy filling out your payment details. Please choose a different color or garment!\"). Telegram will display this message to the user."},"throws":[{"code":400,"name":"ERROR_TEXT_EMPTY","comment":"The provided error message is empty."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"messages.uploadEncryptedFile":{"comment":"Upload encrypted file and associate it to a secret chat","arguments":{"peer":"The secret chat to associate the file to","file":"The file"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."}],"available":"user"},"messages.getAttachedStickers":{"comment":"Get stickers attached to a photo or video","arguments":{"media":"Stickered media"},"throws":[{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."}],"available":"user"},"messages.getSplitRanges":{"comment":"Get message ranges for saving the user's chat history","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.faveSticker":{"comment":"Mark or unmark a sticker as favorite","arguments":{"id":"Sticker in question","unfave":"Whether to add or remove a sticker from favorites"},"throws":[{"code":400,"name":"STICKER_ID_INVALID","comment":"The provided sticker ID is invalid."}],"available":"user"},"messages.getRecentLocations":{"comment":"Get live location history of a certain user","arguments":{"peer":"User","limit":"Maximum number of results to return, see pagination","hash":"Hash used for caching, for more info click here"},"available":"user"},"messages.searchStickerSets":{"comment":"Search for stickersets","arguments":{"flags":"Flags, see TL conditional fields","exclude_featured":"Exclude featured stickersets from results","q":"Query string","hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.getFavedStickers":{"comment":"Get faved stickers","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.clearAllDrafts":{"comment":"Clear all drafts.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.updatePinnedMessage":{"comment":"Pin a message","arguments":{"flags":"Flags, see TL conditional fields","silent":"Pin the message silently, without triggering a notification","unpin":"Whether the message should unpinned or pinned","pm_oneside":"Whether the message should only be pinned on the local side of a one-to-one chat","peer":"The peer where to pin the message","id":"The message to pin or unpin"},"throws":[{"code":400,"name":"BOT_ONESIDE_NOT_AVAIL","comment":"Bots can't pin messages in PM just for themselves."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PIN_RESTRICTED","comment":"You can't pin messages."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},"messages.getPollResults":{"comment":"Get poll results","arguments":{"peer":"Peer where the poll was found","msg_id":"Message ID of poll message"},"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getDialogUnreadMarks":{"comment":"Get dialogs manually marked as unread","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.editChatAbout":{"comment":"Edit the description of a group/supergroup/channel.","arguments":{"peer":"The group/supergroup/channel.","about":"The new description"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ABOUT_NOT_MODIFIED","comment":"About text has not changed."},{"code":400,"name":"CHAT_ABOUT_TOO_LONG","comment":"Chat about too long."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},"messages.getRecentStickers":{"comment":"Get recent stickers","arguments":{"flags":"Flags, see TL conditional fields","attached":"Get stickers recently attached to photo or video files","hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.editChatDefaultBannedRights":{"comment":"Edit the default banned rights of a channel/supergroup/group.","arguments":{"peer":"The peer","banned_rights":"The new global rights"},"throws":[{"code":400,"name":"BANNED_RIGHTS_INVALID","comment":"You provided some invalid flags in the banned rights."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"UNTIL_DATE_INVALID","comment":"Invalid until date provided."}],"available":"both"},"messages.sendVote":{"comment":"Vote in a {@link RawPoll}\n\nStarting from layer 159, the vote will be sent from the peer specified using {@link messages.RawSaveDefaultSendAsRequest}.","arguments":{"peer":"The chat where the poll was sent","msg_id":"The message ID of the poll","options":"The options that were chosen"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_POLL_CLOSED","comment":"Poll closed."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"OPTIONS_TOO_MUCH","comment":"Too many options provided."},{"code":400,"name":"OPTION_INVALID","comment":"Invalid option selected."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REVOTE_NOT_ALLOWED","comment":"You cannot change your vote."}],"available":"user"},"messages.getSearchCounters":{"comment":"Get the number of results that would be found by a {@link messages.RawSearchRequest} call with the same parameters","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer where to search","saved_peer_id":"Search within the saved message dialog » with this ID.","top_msg_id":"If set, consider only messages within the specified forum topic","filters":"Search filters"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getEmojiKeywordsLanguages":{"comment":"Obtain a list of related languages that must be used when fetching emoji keyword lists ».\n\nUsually the method will return the passed language codes (if localized) + en + some language codes for similar languages (if applicable).","arguments":{"lang_codes":"The user's language codes"},"available":"user"},"messages.getEmojiKeywordsDifference":{"comment":"Get changed emoji keywords ».","arguments":{"lang_code":"Language code","from_version":"Previous stored emoji keyword list version"},"available":"user"},"messages.getOnlines":{"comment":"Get count of online users in a chat","arguments":{"peer":"The chat"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.hidePeerSettingsBar":{"comment":"Should be called after the user hides the report spam/add as contact bar of a new chat, effectively prevents the user from executing the actions specified in the action bar ».","arguments":{"peer":"Peer"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.sendScheduledMessages":{"comment":"Send scheduled messages right away","arguments":{"peer":"Peer","id":"Scheduled message IDs"},"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."}],"available":"user"},"messages.acceptUrlAuth":{"comment":"Use this to accept a Seamless Telegram Login authorization request, for more info click here »","arguments":{"flags":"Flags, see TL conditional fields","write_allowed":"Set this flag to allow the bot to send messages to you (if requested)","peer":"The location of the message","msg_id":"Message ID of the message with the login button","button_id":"ID of the login button","url":"URL used for link URL authorization, click here for more info »"},"available":"user"},"messages.getScheduledHistory":{"comment":"Get scheduled messages","arguments":{"peer":"Peer","hash":"Hash used for caching, for more info click here.
To generate the hash, populate the ids array with the id, date and edit_date (in this order) of the previously returned messages (in order, i.e. ids = [id1, date1, edit_date1, id2, date2, edit_date2, ...])."},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.readMessageContents":{"comment":"Notifies the sender about the recipient having listened a voice message or watched a video.","arguments":{"id":"Message ID list"},"available":"user"},"messages.getPollVotes":{"comment":"Get poll results for non-anonymous polls","arguments":{"flags":"Flags, see TL conditional fields","peer":"Chat where the poll was sent","id":"Message ID","option":"Get only results for the specified poll option","offset":"Offset for results, taken from the next_offset field of {@link messages.RawVotesList}, initially an empty string.
Note: if no more results are available, the method call will return an empty next_offset; thus, avoid providing the next_offset returned in {@link messages.RawVotesList} if it is empty, to avoid an infinite loop.","limit":"Number of results to return"},"throws":[{"code":403,"name":"BROADCAST_FORBIDDEN","comment":"Channel poll voters and reactions cannot be fetched to prevent deanonymization."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":403,"name":"POLL_VOTE_REQUIRED","comment":"Cast a vote in the poll before calling this method."}],"available":"user"},"messages.updateDialogFilter":{"comment":"Update folder","arguments":{"flags":"Flags, see TL conditional fields","id":"Folder ID","filter":"Folder info"},"throws":[{"code":400,"name":"CHATLIST_EXCLUDE_INVALID","comment":"The specified exclude_peers are invalid."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_INCLUDE_EMPTY","comment":"The include_peers vector of the filter is empty."},{"code":400,"name":"FILTER_TITLE_EMPTY","comment":"The title field of the filter is empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.requestUrlAuth":{"comment":"Get more info about a Seamless Telegram Login authorization request, for more info click here »","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer where the message is located","msg_id":"The message","button_id":"The ID of the button with the authorization request","url":"URL used for link URL authorization, click here for more info »"},"available":"user"},"messages.markDialogUnread":{"comment":"Manually mark dialog as unread","arguments":{"flags":"Flags, see TL conditional fields","unread":"Mark as unread/read","peer":"Dialog"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getDialogFilters":{"comment":"Get folders","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.getOldFeaturedStickers":{"comment":"Method for fetching previously featured stickers","arguments":{"offset":"Offset","limit":"Maximum number of results to return, see pagination","hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.getDiscussionMessage":{"comment":"Get discussion message from the associated discussion group of a channel to show it on top of the comment section, without actually joining the group","arguments":{"peer":"Channel ID","msg_id":"Message ID"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"user"},"messages.unpinAllMessages":{"comment":"Unpin all pinned messages","arguments":{"flags":"Flags, see TL conditional fields","peer":"Chat where to unpin","top_msg_id":"Forum topic where to unpin"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},"messages.getReplies":{"comment":"Get messages in a reply thread","arguments":{"peer":"Peer","msg_id":"Message ID","offset_id":"Offsets for pagination, for more info click here","offset_date":"Offsets for pagination, for more info click here","add_offset":"Offsets for pagination, for more info click here","limit":"Maximum number of results to return, see pagination","max_id":"If a positive value was transferred, the method will return only messages with ID smaller than max_id","min_id":"If a positive value was transferred, the method will return only messages with ID bigger than min_id","hash":"Hash used for caching, for more info click here"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"user"},"messages.toggleStickerSets":{"comment":"Apply changes to multiple stickersets","arguments":{"flags":"Flags, see TL conditional fields","uninstall":"Uninstall the specified stickersets","archive":"Archive the specified stickersets","unarchive":"Unarchive the specified stickersets","stickersets":"Stickersets to act upon"},"available":"user"},"messages.deleteChat":{"comment":"Delete a chat","arguments":{"chat_id":"Chat ID"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.initHistoryImport":{"comment":"Import chat history from a foreign chat app into a specific Telegram chat, click here for more info about imported chats ».","arguments":{"peer":"The Telegram chat where the history should be imported.","file":"File with messages to import.","media_count":"Number of media files associated with the chat that will be uploaded using {@link messages.RawUploadImportedMediaRequest}."},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"IMPORT_FILE_INVALID","comment":"The specified chat export file is invalid."},{"code":400,"name":"IMPORT_FORMAT_DATE_INVALID","comment":"The date specified in the import file is invalid."},{"code":400,"name":"IMPORT_FORMAT_UNRECOGNIZED","comment":"The specified chat export file was exported from an unsupported chat app."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":406,"name":"PREVIOUS_CHAT_IMPORT_ACTIVE_WAIT_%dMIN","comment":"Import for this chat is already in progress, wait %d minutes before starting a new one."}],"available":"user"},"messages.checkHistoryImport":{"comment":"Obtains information about a chat export file, generated by a foreign chat app, click here for more info about imported chats ».","arguments":{"import_head":"Beginning of the message file; up to 100 lines."},"throws":[{"code":400,"name":"IMPORT_FORMAT_UNRECOGNIZED","comment":"The specified chat export file was exported from an unsupported chat app."}],"available":"user"},"messages.uploadImportedMedia":{"comment":"Upload a media file associated with an imported chat, click here for more info ».","arguments":{"peer":"The Telegram chat where the media will be imported","import_id":"Identifier of a history import session, returned by {@link messages.RawInitHistoryImportRequest}","file_name":"File name","media":"Media metadata"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"IMPORT_ID_INVALID","comment":"The specified import ID is invalid."}],"available":"user"},"messages.deletePhoneCallHistory":{"comment":"Delete the entire phone call history.","arguments":{"flags":"Flags, see TL conditional fields","revoke":"Whether to remove phone call history for participants as well"},"available":"user"},"messages.readDiscussion":{"comment":"Mark a thread as read","arguments":{"peer":"Group ID","msg_id":"ID of message that started the thread","read_max_id":"ID up to which thread messages were read"},"throws":[{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.startHistoryImport":{"comment":"Complete the history import process, importing all messages into the chat.
\nTo be called only after initializing the import with {@link messages.RawInitHistoryImportRequest} and uploading all files using {@link messages.RawUploadImportedMediaRequest}.","arguments":{"peer":"The Telegram chat where the messages should be imported, click here for more info »","import_id":"Identifier of a history import session, returned by {@link messages.RawInitHistoryImportRequest}."},"throws":[{"code":400,"name":"IMPORT_ID_INVALID","comment":"The specified import ID is invalid."}],"available":"user"},"messages.getExportedChatInvites":{"comment":"Get info about the chat invites of a specific chat","arguments":{"flags":"Flags, see TL conditional fields","revoked":"Whether to fetch revoked chat invites","peer":"Chat","admin_id":"Whether to only fetch chat invites from this admin","offset_date":"Offsets for pagination, for more info click here","offset_link":"Offsets for pagination, for more info click here","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"ADMIN_ID_INVALID","comment":"The specified admin ID is invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getExportedChatInvite":{"comment":"Get info about a chat invite","arguments":{"peer":"Chat","link":"Invite link"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getEmojiKeywords":{"comment":"Get localized emoji keywords ».","arguments":{"lang_code":"Language code"},"available":"user"},"messages.deleteRevokedExportedChatInvites":{"comment":"Delete all revoked chat invites","arguments":{"peer":"Chat","admin_id":"ID of the admin that originally generated the revoked chat invites"},"throws":[{"code":400,"name":"ADMIN_ID_INVALID","comment":"The specified admin ID is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getAdminsWithInvites":{"comment":"Get info about chat invites generated by admins.","arguments":{"peer":"Chat"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.deleteExportedChatInvite":{"comment":"Delete a chat invite","arguments":{"peer":"Peer","link":"Invite link"},"throws":[{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_REVOKED_MISSING","comment":"The specified invite link was already revoked or is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.editExportedChatInvite":{"comment":"Edit an exported chat invite","arguments":{"flags":"Flags, see TL conditional fields","revoked":"Whether to revoke the chat invite","peer":"Chat","link":"Invite link","expire_date":"New expiration date","usage_limit":"Maximum number of users that can join using this link","request_needed":"Whether admin confirmation is required before admitting each separate user into the chat","title":"Description of the invite link, visible only to administrators"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_INVITE_PERMANENT","comment":"You can't set an expiration date on permanent invite links."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"EDIT_BOT_INVITE_FORBIDDEN","comment":"Normal users can't edit invites that were created by bots."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USAGE_LIMIT_INVALID","comment":"The specified usage limit is invalid."}],"available":"both"},"messages.getEmojiURL":{"comment":"Returns an HTTP URL which can be used to automatically log in into translation platform and suggest new emoji keywords ». The URL will be valid for 30 seconds after generation.","arguments":{"lang_code":"Language code for which the emoji keywords will be suggested"},"available":"user"},"messages.getScheduledMessages":{"comment":"Get scheduled messages","arguments":{"peer":"Peer","id":"IDs of scheduled messages"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.updateDialogFiltersOrder":{"comment":"Reorder folders","arguments":{"order":"New folder order"},"available":"user"},"messages.getChatInviteImporters":{"comment":"Get info about the users that joined the chat using a specific chat invite","arguments":{"flags":"Flags, see TL conditional fields","requested":"If set, only returns info about users with pending join requests »","subscription_expired":"Set this flag if the link is a Telegram Star subscription link » and only members with already expired subscription must be returned.","peer":"Chat","link":"Invite link","q":"Search for a user in the pending join requests » list: only available when the requested flag is set, cannot be used together with a specific link.","offset_date":"Offsets for pagination, for more info click here","offset_user":"User ID for pagination: if set, offset_date must also be set.","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SEARCH_WITH_LINK_NOT_SUPPORTED","comment":"You cannot provide a search query and an invite link at the same time."}],"available":"user"},"messages.getSearchResultsPositions":{"comment":"Returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation.\n\nReturns the results in reverse chronological order (i.e., in order of decreasing message_id).","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer where to search","saved_peer_id":"Search within the saved message dialog » with this ID.","filter":"Message filter, {@link RawInputMessagesFilterEmpty}, {@link RawInputMessagesFilterMyMentions} filters are not supported by this method.","offset_id":"Offsets for pagination, for more info click here","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.deleteScheduledMessages":{"comment":"Delete scheduled messages","arguments":{"peer":"Peer","id":"Scheduled message IDs"},"throws":[{"code":403,"name":"MESSAGE_DELETE_FORBIDDEN","comment":"You can't delete one of the messages you tried to delete, most likely because it is a service message."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.setChatTheme":{"comment":"Change the chat theme of a certain chat","arguments":{"peer":"Private chat where to change theme","emoticon":"Emoji, identifying a specific chat theme; a list of chat themes can be fetched using {@link account.RawGetChatThemesRequest}"},"throws":[{"code":400,"name":"EMOJI_INVALID","comment":"The specified theme emoji is valid."},{"code":400,"name":"EMOJI_NOT_MODIFIED","comment":"The theme wasn't changed."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.saveDefaultSendAs":{"comment":"Change the default peer that should be used when sending messages, reactions, poll votes to a specific group","arguments":{"peer":"Group","send_as":"The default peer that should be used when sending messages to the group"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."}],"available":"user"},"messages.setHistoryTTL":{"comment":"Set maximum Time-To-Live of all messages in the specified chat","arguments":{"peer":"The dialog","period":"Automatically delete all messages sent in the chat after this many seconds"},"throws":[{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."}],"available":"user"},"messages.hideAllChatJoinRequests":{"comment":"Dismiss or approve all join requests related to a specific chat or channel.","arguments":{"flags":"Flags, see TL conditional fields","approved":"Whether to dismiss or approve all chat join requests »","peer":"The chat or channel","link":"Only dismiss or approve join requests » initiated using this invite link"},"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"HIDE_REQUESTER_MISSING","comment":"The join request was missing or was already handled."},{"code":400,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."}],"available":"user"},"messages.getMessageReactionsList":{"comment":"Get message reaction list, along with the sender of each reaction.","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer","id":"Message ID","reaction":"Get only reactions of this type","offset":"Offset for pagination (taken from the next_offset field of the returned messages.MessageReactionsList); empty in the first request.","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":403,"name":"BROADCAST_FORBIDDEN","comment":"Channel poll voters and reactions cannot be fetched to prevent deanonymization."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},"messages.getMessagesReactions":{"comment":"Get message reactions »","arguments":{"peer":"Peer","id":"Message IDs"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},"messages.setChatAvailableReactions":{"comment":"Change the set of message reactions » that can be used in a certain group, supergroup or channel","arguments":{"flags":"Flags, see TL conditional fields","peer":"Group where to apply changes","available_reactions":"Allowed reaction emojis","reactions_limit":"This flag may be used to impose a custom limit of unique reactions (i.e. a customizable version of appConfig.reactions_uniq_max); this field and the other info set by the method will then be available to users in {@link RawChannelFull} and {@link RawChatFull}.
If this flag is not set, the previously configured reactions_limit will not be altered.","paid_enabled":"If this flag is set and a Bool is passed, the method will enable or disable paid message reactions ». If this flag is not set, the previously stored setting will not be changed."},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.setDefaultReaction":{"comment":"Change default emoji reaction to use in the quick reaction menu: the value is synced across devices and can be fetched using {@link help.RawGetConfigRequest}.","arguments":{"reaction":"New emoji reaction"},"throws":[{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."}],"available":"user"},"messages.getUnreadReactions":{"comment":"Get unread reactions to messages you sent","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer","top_msg_id":"If set, considers only reactions to messages within the specified forum topic","offset_id":"Offsets for pagination, for more info click here","add_offset":"Offsets for pagination, for more info click here","limit":"Maximum number of results to return, see pagination","max_id":"Only return reactions for messages up until this message ID","min_id":"Only return reactions for messages starting from this message ID"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.searchSentMedia":{"comment":"View and search recently sent media.
\nThis method does not support pagination.","arguments":{"q":"Optional search query","filter":"Message filter","limit":"Maximum number of results to return (max 100)."},"throws":[{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},"messages.getAttachMenuBots":{"comment":"Returns installed attachment menu bot mini apps »","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.getAttachMenuBot":{"comment":"Returns attachment menu entry for a bot mini app that can be launched from the attachment menu »","arguments":{"bot":"Bot ID"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"messages.checkHistoryImportPeer":{"comment":"Check whether chat history exported from another chat app can be imported into a specific Telegram chat, click here for more info ».\n\nIf the check succeeds, and no RPC errors are returned, a messages.CheckedHistoryImportPeer constructor will be returned, with a confirmation text to be shown to the user, before actually initializing the import.","arguments":{"peer":"The chat where we want to import history »."},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."}],"available":"user"},"messages.requestWebView":{"comment":"Open a bot mini app, sending over user information after user confirmation.\n\nAfter calling this method, until the user closes the webview, {@link messages.RawProlongWebViewRequest} must be called every 60 seconds.","arguments":{"flags":"Flags, see TL conditional fields","from_bot_menu":"Whether the webview was opened by clicking on the bot's menu button ».","silent":"Whether the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent silently (no notifications for the receivers).","compact":"If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the attachment menu deep link is equal to compact.","peer":"Dialog where the web app is being opened, and where the resulting message will be sent (see the docs for more info »).","bot":"Bot that owns the web app","url":"Web app URL","start_param":"If the web app was opened from the attachment menu using a attachment menu deep link, start_param should contain the data from the startattach parameter.","theme_params":"Theme parameters »","platform":"Short name of the application; 0-64 English letters, digits, and underscores","reply_to":"If set, indicates that the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent in reply to the specified message or story.","send_as":"Open the web app as the specified peer, sending the resulting the message as the specified peer."},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"BOT_WEBVIEW_DISABLED","comment":"A webview cannot be opened in the specified conditions: emitted for example if from_bot_menu or url are set and peer is not the chat with the bot."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PRIVACY_PREMIUM_REQUIRED","comment":"You need a Telegram Premium subscription to send a message to this user."},{"code":400,"name":"SEND_AS_PEER_INVALID","comment":"You can't send messages as the specified peer."},{"code":400,"name":"YOU_BLOCKED_USER","comment":"You blocked this user."}],"available":"user"},"messages.getAvailableReactions":{"comment":"Obtain available message reactions »","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.prolongWebView":{"comment":"Indicate to the server (from the user side) that the user is still using a web app.\n\nIf the method returns a QUERY_ID_INVALID error, the webview must be closed.","arguments":{"flags":"Flags, see TL conditional fields","silent":"Whether the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent silently (no notifications for the receivers).","peer":"Dialog where the web app was opened.","bot":"Bot that owns the web app","query_id":"Web app interaction ID obtained from {@link messages.RawRequestWebViewRequest}","reply_to":"If set, indicates that the inline message that will be sent by the bot on behalf of the user once the web app interaction is {@link messages.RawSendWebViewResultMessageRequest} should be sent in reply to the specified message or story.","send_as":"Open the web app as the specified peer"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"messages.sendWebViewResultMessage":{"comment":"Terminate webview interaction started with {@link messages.RawRequestWebViewRequest}, sending the specified message to the chat on behalf of the user.","arguments":{"bot_query_id":"Webview interaction ID obtained from {@link messages.RawRequestWebViewRequest}","result":"Message to send"},"throws":[{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"messages.sendWebViewData":{"comment":"Used by the user to relay data from an opened reply keyboard bot mini app to the bot that owns it.","arguments":{"bot":"Bot that owns the web app","random_id":"Unique client message ID to prevent duplicate sending of the same event","button_text":"Text of the {@link RawKeyboardButtonSimpleWebView} that was pressed to open the web app.","data":"Data to relay to the bot, obtained from a web_app_data_send JS event."},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"messages.sendReaction":{"comment":"React to message.\n\nStarting from layer 159, the reaction will be sent from the peer specified using {@link messages.RawSaveDefaultSendAsRequest}.","arguments":{"flags":"Flags, see TL conditional fields","big":"Whether a bigger and longer reaction should be shown","add_to_recent":"Whether to add this reaction to the recent reactions list ».","peer":"Peer","msg_id":"Message ID to react to","reaction":"A list of reactions"},"throws":[{"code":403,"name":"ANONYMOUS_REACTIONS_DISABLED","comment":"Sorry, anonymous administrators cannot leave reactions or participate in polls."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"CUSTOM_REACTIONS_TOO_MANY","comment":"Too many custom reactions were specified."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_MODIFIED","comment":"The provided message data is identical to the previous message data, the message wasn't modified."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"REACTIONS_TOO_MANY","comment":"The message already has exactly reactions_uniq_max reaction emojis, you can't react with a new emoji, see the docs for more info »."},{"code":400,"name":"REACTION_EMPTY","comment":"Empty reaction provided."},{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"user"},"messages.transcribeAudio":{"comment":"Transcribe voice message","arguments":{"peer":"Peer ID where the voice message was sent","msg_id":"Voice message ID"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"TRANSCRIPTION_FAILED","comment":"Audio transcription failed."}],"available":"user"},"messages.readReactions":{"comment":"Mark message reactions » as read","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer","top_msg_id":"Mark as read only reactions to messages within the specified forum topic"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.translateText":{"comment":"Translate a given text.\n\nStyled text entities will only be preserved for Telegram Premium users.","arguments":{"flags":"Flags, see TL conditional fields","peer":"If the text is a chat message, the peer ID","id":"A list of message IDs to translate","text":"A list of styled messages to translate","to_lang":"Two-letter ISO 639-1 language code of the language to which the message is translated"},"throws":[{"code":400,"name":"INPUT_TEXT_EMPTY","comment":"The specified text is empty."},{"code":400,"name":"INPUT_TEXT_TOO_LONG","comment":"The specified text is too long."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"TO_LANG_INVALID","comment":"The specified destination language is invalid."},{"code":400,"name":"TRANSLATE_REQ_QUOTA_EXCEEDED","comment":"Translation is currently unavailable due to a temporary server-side lack of resources."}],"available":"user"},"messages.rateTranscribedAudio":{"comment":"Rate transcribed voice message","arguments":{"peer":"Peer where the voice message was sent","msg_id":"Message ID","transcription_id":"Transcription ID","good":"Whether the transcription was correct"},"available":"user"},"messages.getSuggestedDialogFilters":{"comment":"Get suggested folders","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.getEmojiStickers":{"comment":"Gets the list of currently installed custom emoji stickersets.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.getCustomEmojiDocuments":{"comment":"Fetch custom emoji stickers ».\n\nReturns a list of {@link RawDocument} with the animated custom emoji in TGS format, and a {@link RawDocumentAttributeCustomEmoji} attribute with the original emoji and info about the emoji stickerset this custom emoji belongs to.","arguments":{"document_id":"Custom emoji IDs from a {@link RawMessageEntityCustomEmoji}."},"available":"both"},"messages.requestSimpleWebView":{"comment":"Open a bot mini app.","arguments":{"flags":"Flags, see TL conditional fields","from_switch_webview":"Whether the webapp was opened by clicking on the switch_webview button shown on top of the inline results list returned by {@link messages.RawGetInlineBotResultsRequest}.","from_side_menu":"Set this flag if opening the Mini App from the installed side menu entry ».","compact":"Deprecated.","bot":"Bot that owns the mini app","url":"Web app URL, if opening from a keyboard button or inline result","start_param":"Deprecated.","theme_params":"Theme parameters »","platform":"Short name of the application; 0-64 English letters, digits, and underscores"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"URL_INVALID","comment":"Invalid URL provided."}],"available":"user"},"messages.hideChatJoinRequest":{"comment":"Dismiss or approve a chat join request related to a specific chat or channel.","arguments":{"flags":"Flags, see TL conditional fields","approved":"Whether to dismiss or approve the chat join request »","peer":"The chat or channel","user_id":"The user whose join request » should be dismissed or approved"},"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"HIDE_REQUESTER_MISSING","comment":"The join request was missing or was already handled."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":403,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},"messages.getTopReactions":{"comment":"Got popular message reactions","arguments":{"limit":"Maximum number of results to return, see pagination","hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.getFeaturedEmojiStickers":{"comment":"Gets featured custom emoji stickersets.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.getExtendedMedia":{"comment":"Fetch updated information about paid media, see here » for the full flow.\n\nThis method will return an array of {@link RawUpdateMessageExtendedMedia} updates, only for messages containing already bought paid media.
\nNo information will be returned for messages containing not yet bought paid media.","arguments":{"peer":"Peer with visible paid media messages.","id":"IDs of currently visible messages containing paid media."},"available":"user"},"messages.getRecentReactions":{"comment":"Get recently used message reactions","arguments":{"limit":"Maximum number of results to return, see pagination","hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.getEmojiGroups":{"comment":"Represents a list of emoji categories.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.clearRecentReactions":{"comment":"Clear recently used message reactions","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.toggleNoForwards":{"comment":"Enable or disable content protection on a channel or chat","arguments":{"peer":"The chat or channel","enabled":"Enable or disable content protection"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getEmojiStatusGroups":{"comment":"Represents a list of emoji categories, to be used when selecting custom emojis to set as custom emoji status.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.getEmojiProfilePhotoGroups":{"comment":"Represents a list of emoji categories, to be used when selecting custom emojis to set as profile picture.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.searchCustomEmoji":{"comment":"Look for custom emojis associated to a UTF8 emoji","arguments":{"emoticon":"The emoji","hash":"Hash used for caching, for more info click here."},"throws":[{"code":400,"name":"EMOTICON_EMPTY","comment":"The emoji is empty."}],"available":"user"},"messages.getDefaultHistoryTTL":{"comment":"Gets the default value of the Time-To-Live setting, applied to all new chats.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.searchEmojiStickerSets":{"comment":"Search for custom emoji stickersets »","arguments":{"flags":"Flags, see TL conditional fields","exclude_featured":"Exclude featured stickersets from results","q":"Query string","hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.getBotApp":{"comment":"Obtain information about a direct link Mini App","arguments":{"app":"Bot app information obtained from a Direct Mini App deep link ».","hash":"Hash used for caching, for more info click here"},"throws":[{"code":400,"name":"BOT_APP_BOT_INVALID","comment":"The bot_id passed in the inputBotAppShortName constructor is invalid."},{"code":400,"name":"BOT_APP_INVALID","comment":"The specified bot app is invalid."},{"code":400,"name":"BOT_APP_SHORTNAME_INVALID","comment":"The specified bot app short name is invalid."}],"available":"user"},"messages.requestAppWebView":{"comment":"Open a bot mini app from a direct Mini App deep link, sending over user information after user confirmation.\n\nAfter calling this method, until the user closes the webview, {@link messages.RawProlongWebViewRequest} must be called every 60 seconds.","arguments":{"flags":"Flags, see TL conditional fields","write_allowed":"Set this flag if the bot is asking permission to send messages to the user as specified in the direct Mini App deep link docs, and the user agreed.","compact":"If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the direct Mini App deep link is equal to compact.","peer":"If the client has clicked on the link in a Telegram chat, pass the chat's peer information; otherwise pass the bot's peer information, instead.","app":"The app obtained by invoking {@link messages.RawGetBotAppRequest} as specified in the direct Mini App deep link docs.","start_param":"If the startapp query string parameter is present in the direct Mini App deep link, pass it to start_param.","theme_params":"Theme parameters »","platform":"Short name of the application; 0-64 English letters, digits, and underscores"},"throws":[{"code":400,"name":"BOT_APP_INVALID","comment":"The specified bot app is invalid."},{"code":400,"name":"BOT_APP_SHORTNAME_INVALID","comment":"The specified bot app short name is invalid."}],"available":"user"},"messages.getSavedDialogs":{"comment":"Returns the current saved dialog list, see here » for more info.","arguments":{"flags":"Flags, see TL conditional fields","exclude_pinned":"Exclude pinned dialogs","offset_date":"Offsets for pagination, for more info click here","offset_id":"Offsets for pagination, for more info click here (top_message ID used for pagination)","offset_peer":"Offset peer for pagination","limit":"Number of list elements to be returned","hash":"Hash used for caching, for more info click here"},"available":"user"},"messages.getSavedHistory":{"comment":"Returns saved messages » forwarded from a specific peer","arguments":{"peer":"Target peer","offset_id":"Only return messages starting from the specified message ID","offset_date":"Only return messages sent before the specified date","add_offset":"Number of list elements to be skipped, negative values are also accepted.","limit":"Number of results to return","max_id":"If a positive value was transferred, the method will return only messages with IDs less than max_id","min_id":"If a positive value was transferred, the method will return only messages with IDs more than min_id","hash":"Result hash"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getPinnedSavedDialogs":{"comment":"Get pinned saved dialogs, see here » for more info.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"messages.reorderPinnedSavedDialogs":{"comment":"Reorder pinned saved message dialogs ».","arguments":{"flags":"Flags, see TL conditional fields","force":"If set, dialogs pinned server-side but not present in the order field will be unpinned.","order":"New dialog order"},"available":"user"},"messages.deleteSavedHistory":{"comment":"Deletes messages forwarded from a specific peer to saved messages ».","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer, whose messages will be deleted from saved messages »","max_id":"Maximum ID of message to delete","min_date":"Delete all messages newer than this UNIX timestamp","max_date":"Delete all messages older than this UNIX timestamp"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getSavedReactionTags":{"comment":"Fetch the full list of saved message tags created by the user.","arguments":{"flags":"Flags, see TL conditional fields","peer":"If set, returns tags only used in the specified saved message dialog.","hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.toggleSavedDialogPin":{"comment":"Pin or unpin a saved message dialog ».","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Whether to pin or unpin the dialog","peer":"The dialog to pin"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.updateSavedReactionTag":{"comment":"Update the description of a saved message tag ».","arguments":{"flags":"Flags, see TL conditional fields","reaction":"Reaction associated to the tag","title":"Tag description, max 12 UTF-8 characters; to remove the description call the method without setting this flag."},"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."}],"available":"user"},"messages.sendBotRequestedPeer":{"comment":"Send one or more chosen peers, as requested by a {@link RawKeyboardButtonRequestPeer} button.","arguments":{"peer":"The bot that sent the {@link RawKeyboardButtonRequestPeer} button.","msg_id":"ID of the message that contained the reply keyboard with the {@link RawKeyboardButtonRequestPeer} button.","button_id":"The button_id field from the {@link RawKeyboardButtonRequestPeer} constructor.","requested_peers":"The chosen peers."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.setChatWallPaper":{"comment":"Set a custom wallpaper » in a specific private chat with another user.","arguments":{"flags":"Flags, see TL conditional fields","for_both":"Only for Premium users, sets the specified wallpaper for both users of the chat, without requiring confirmation from the other user.","revert":"If we don't like the new wallpaper the other user of the chat has chosen for us using the for_both flag, we can re-set our previous wallpaper just on our side using this flag.","peer":"The private chat where the wallpaper will be set","wallpaper":"The wallpaper », obtained as described in the wallpaper documentation »; must not be provided when installing a wallpaper obtained from a {@link RawMessageActionSetChatWallPaper} service message (id must be provided, instead).","settings":"Wallpaper settings, obtained as described in the wallpaper documentation » or from {@link RawMessageActionSetChatWallPaper}.wallpaper.settings.","id":"If the wallpaper was obtained from a {@link RawMessageActionSetChatWallPaper} service message, must contain the ID of that message."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"WALLPAPER_INVALID","comment":"The specified wallpaper is invalid."},{"code":400,"name":"WALLPAPER_NOT_FOUND","comment":"The specified wallpaper could not be found."}],"available":"user"},"messages.getOutboxReadDate":{"comment":"Get the exact read date of one of our messages, sent to a private chat with another user.\n\nCan be only done for private outgoing messages not older than appConfig.pm_read_date_expire_period ».\n\nIf the peer's {@link RawUserFull}.read_dates_private flag is set, we will not be able to fetch the exact read date of messages we send to them, and a USER_PRIVACY_RESTRICTED RPC error will be emitted.
\nThe exact read date of messages might still be unavailable for other reasons, see {@link RawGlobalPrivacySettings} for more info.
\nTo set {@link RawUserFull}.read_dates_private for ourselves invoke {@link account.RawSetGlobalPrivacySettingsRequest}, setting the settings.hide_read_marks flag.","arguments":{"peer":"The user to whom we sent the message.","msg_id":"The message ID."},"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MESSAGE_NOT_READ_YET","comment":"The specified message wasn't read yet."},{"code":400,"name":"MESSAGE_TOO_OLD","comment":"The message is too old, the requested information is not available."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."},{"code":403,"name":"YOUR_PRIVACY_RESTRICTED","comment":"You cannot fetch the read date of this message because you have disallowed other users to do so for your messages; to fix, allow other users to see your exact last online date OR purchase a Telegram Premium subscription."}],"available":"user"},"messages.getQuickReplies":{"comment":"Fetch basic info about all existing quick reply shortcuts.","arguments":{"hash":"Hash for pagination, generated as specified here » (not the usual algorithm used for hash generation.)"},"available":"user"},"messages.editQuickReplyShortcut":{"comment":"Rename a quick reply shortcut.
\nThis will emit an {@link RawUpdateQuickReplies} update to other logged-in sessions.","arguments":{"shortcut_id":"Shortcut ID.","shortcut":"New shortcut name."},"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},"messages.getDefaultTagReactions":{"comment":"Fetch a default recommended list of saved message tag reactions.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.getQuickReplyMessages":{"comment":"Fetch (a subset or all) messages in a quick reply shortcut ».","arguments":{"flags":"Flags, see TL conditional fields","shortcut_id":"Quick reply shortcut ID.","id":"IDs of the messages to fetch, if empty fetches all of them.","hash":"Hash used for caching, for more info click here"},"throws":[{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},"messages.reorderQuickReplies":{"comment":"Reorder quick reply shortcuts.\n\nThis will emit an {@link RawUpdateQuickReplies} update to other logged-in sessions.","arguments":{"order":"IDs of all created quick reply shortcuts, in the desired order."},"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},"messages.getMessageReadParticipants":{"comment":"Get which users read a specific message: only available for groups and supergroups with less than chat_read_mark_size_threshold members, read receipts will be stored for chat_read_mark_expire_period seconds after the message was sent, see client configuration for more info ».","arguments":{"peer":"Dialog","msg_id":"Message ID"},"throws":[{"code":400,"name":"CHAT_TOO_BIG","comment":"This method is not available for groups with more than chat_read_mark_size_threshold members, see client configuration »."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"MSG_TOO_OLD","comment":"chat_read_mark_expire_period seconds have passed since the message was sent, read receipts were deleted."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.checkQuickReplyShortcut":{"comment":"Before offering the user the choice to add a message to a quick reply shortcut, to make sure that none of the limits specified here » were reached.","arguments":{"shortcut":"Shorcut name (not ID!)."},"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},"messages.deleteQuickReplyMessages":{"comment":"Delete one or more messages from a quick reply shortcut. This will also emit an {@link RawUpdateDeleteQuickReplyMessages} update.","arguments":{"shortcut_id":"Shortcut ID.","id":"IDs of shortcut messages to delete."},"throws":[{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},"messages.sendQuickReplyMessages":{"comment":"Send a quick reply shortcut ».","arguments":{"peer":"The peer where to send the shortcut (users only, for now).","shortcut_id":"The ID of the quick reply shortcut to send.","id":"Specify a subset of messages from the shortcut to send; if empty, defaults to all of them.","random_id":"Unique client IDs required to prevent message resending, one for each message we're sending, may be empty (but not recommended)."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},"messages.setDefaultHistoryTTL":{"comment":"Changes the default value of the Time-To-Live setting, applied to all new chats.","arguments":{"period":"The new default Time-To-Live of all messages sent in new chats."},"throws":[{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."}],"available":"user"},"messages.editFactCheck":{"comment":"Edit/create a fact-check on a message.\n\nCan only be used by independent fact-checkers as specified by the appConfig.can_edit_factcheck configuration flag.","arguments":{"peer":"Peer where the message was sent","msg_id":"Message ID","text":"Fact-check (maximum UTF-8 length specified in appConfig.factcheck_length_limit)."},"throws":[{"code":403,"name":"CHAT_ACTION_FORBIDDEN","comment":"You cannot execute this action."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getAvailableEffects":{"comment":"Fetch the full list of usable animated message effects ».","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.deleteFactCheck":{"comment":"Delete a fact-check from a message.\n\nCan only be used by independent fact-checkers as specified by the appConfig.can_edit_factcheck configuration flag.","arguments":{"peer":"Peer where the message was sent.","msg_id":"Message ID"},"throws":[{"code":403,"name":"CHAT_ACTION_FORBIDDEN","comment":"You cannot execute this action."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.getSearchResultsCalendar":{"comment":"Returns information about the next messages of the specified type in the chat split by days.\n\nReturns the results in reverse chronological order.
\nCan return partial results for the last returned day.","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer where to search","saved_peer_id":"Search within the saved message dialog » with this ID.","filter":"Message filter, {@link RawInputMessagesFilterEmpty}, {@link RawInputMessagesFilterMyMentions} filters are not supported by this method.","offset_id":"Offsets for pagination, for more info click here","offset_date":"Offsets for pagination, for more info click here"},"throws":[{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.reportReaction":{"comment":"Report a message reaction","arguments":{"peer":"Peer where the message was sent","id":"Message ID","reaction_peer":"Peer that sent the reaction"},"throws":[{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},"messages.getMyStickers":{"comment":"Fetch all stickersets » owned by the current user.","arguments":{"offset_id":"Offsets for pagination, for more info click here","limit":"Maximum number of results to return, see pagination"},"available":"user"},"messages.getEmojiStickerGroups":{"comment":"Represents a list of emoji categories, to be used when choosing a sticker.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"messages.requestMainWebView":{"comment":"Open a Main Mini App.","arguments":{"flags":"Flags, see TL conditional fields","compact":"If set, requests to open the mini app in compact mode (as opposed to fullview mode). Must be set if the mode parameter of the Main Mini App link is equal to compact.","peer":"Currently open chat, may be {@link RawInputPeerEmpty} if no chat is currently open.","bot":"Bot that owns the main mini app.","start_param":"Start parameter, if opening from a Main Mini App link ».","theme_params":"Theme parameters »","platform":"Short name of the application; 0-64 English letters, digits, and underscores"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"messages.deleteQuickReplyShortcut":{"comment":"Completely delete a quick reply shortcut.
\nThis will also emit an {@link RawUpdateDeleteQuickReply} update to other logged-in sessions (and no {@link RawUpdateDeleteQuickReplyMessages} updates, even if all the messages in the shortcuts are also deleted by this method).","arguments":{"shortcut_id":"Shortcut ID"},"throws":[{"code":400,"name":"SHORTCUT_INVALID","comment":"The specified shortcut is invalid."}],"available":"user"},"messages.sendPaidReaction":{"comment":"Sends one or more paid Telegram Star reactions », transferring Telegram Stars » to a channel's balance.","arguments":{"flags":"Flags, see TL conditional fields","peer":"The channel","msg_id":"The message to react to","count":"The number of stars to send (each will increment the reaction counter by one).","random_id":"Unique client message ID required to prevent message resending","private":"Each post with star reactions has a leaderboard with the top senders, but users can opt out of appearing there if they prefer more privacy.
If the user explicitly chose to make their paid reaction(s) private, pass true to {@link messages.RawSendPaidReactionRequest}.private.
If the user explicitly chose to make their paid reaction(s) private, pass true to {@link messages.RawSendPaidReactionRequest}.private.
If the user did not make any explicit choice about the privacy of their paid reaction(s) (i.e. when reacting by clicking on an existing star reaction on a message), do not populate the {@link messages.RawSendPaidReactionRequest}.private flag."},"available":"both"},"messages.togglePaidReactionPrivacy":{"comment":"Changes the privacy of already sent paid reactions on a specific message.","arguments":{"peer":"The channel","msg_id":"The ID of the message to which we sent the paid reactions","private":"If true, makes the current anonymous in the top sender leaderboard for this message; otherwise, does the opposite."},"available":"both"},"messages.toggleDialogFilterTags":{"comment":"Enable or disable folder tags ».","arguments":{"enabled":"Enable or disable folder tags."},"throws":[{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},"messages.viewSponsoredMessage":{"comment":"Mark a specific sponsored message » as read","arguments":{"peer":"The channel/bot where the ad is located","random_id":"The ad's unique ID."},"available":"both"},"messages.getFactCheck":{"comment":"Fetch one or more factchecks, see here » for the full flow.","arguments":{"peer":"Peer where the messages were sent.","msg_id":"Messages that have associated {@link RawFactCheck} constructors with the need_check flag set."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"messages.reportSponsoredMessage":{"comment":"Report a sponsored message », see here » for more info on the full flow.","arguments":{"peer":"The channel/bot where the ad is located","random_id":"The ad's unique ID.","option":"Chosen report option, initially an empty string, see here » for more info on the full flow."},"available":"both"},"messages.getSponsoredMessages":{"comment":"Get a list of sponsored messages for a peer, see here » for more info.","arguments":{"peer":"The currently open channel/bot."},"available":"both"},"messages.getPaidReactionPrivacy":{"comment":"Fetches an {@link RawUpdatePaidReactionPrivacy} update with the current default paid reaction privacy, see here » for more info.","available":"both","arguments":{"gigagroup":"Is this a broadcast group?"}},"updates.getChannelDifference":{"comment":"Returns the difference between the current state of updates of a certain channel and transmitted.","arguments":{"flags":"Flags, see TL conditional fields","force":"Set to true to skip some possibly unneeded updates and reduce server-side load","channel":"The channel","filter":"Messsage filter","pts":"Persistent timestamp (see updates)","limit":"How many updates to fetch, max 100000
Ordinary (non-bot) users are supposed to pass 10-100"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHANNEL_PUBLIC_GROUP_NA","comment":"channel/supergroup not available."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FROM_MESSAGE_BOT_DISABLED","comment":"Bots can't use fromMessage min constructors."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PERSISTENT_TIMESTAMP_EMPTY","comment":"Persistent timestamp empty."},{"code":400,"name":"PERSISTENT_TIMESTAMP_INVALID","comment":"Persistent timestamp invalid."},{"code":500,"name":"PERSISTENT_TIMESTAMP_OUTDATED","comment":"Channel internal replication issues, try again later (treat this like an RPC_CALL_FAIL)."},{"code":400,"name":"PINNED_DIALOGS_TOO_MUCH","comment":"Too many pinned dialogs."},{"code":400,"name":"RANGES_INVALID","comment":"Invalid range provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},"updates.getState":{"comment":"Returns a current state of updates.","available":"both","arguments":{"gigagroup":"Is this a broadcast group?"}},"photos.deletePhotos":{"comment":"Deletes profile photos. The method returns a list of successfully deleted photo IDs.","arguments":{"id":"Input photos to delete"},"available":"user"},"photos.getUserPhotos":{"comment":"Returns the list of user photos.","arguments":{"user_id":"User ID","offset":"Number of list elements to be skipped","max_id":"If a positive value was transferred, the method will return only photos with IDs less than the set one. This parameter is often useful when refetching file references », as in conjuction with limit=1 and offset=-1 the {@link RawPhoto} object with the id specified in max_id can be fetched.","limit":"Number of list elements to be returned"},"throws":[{"code":400,"name":"MAX_ID_INVALID","comment":"The provided max ID is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},"upload.getFile":{"comment":"Returns content of a whole file or its part.","arguments":{"flags":"Flags, see TL conditional fields","precise":"Disable some checks on limit and offset values, useful for example to stream videos by keyframes","cdn_supported":"Whether the current client supports CDN downloads","location":"File location","offset":"Number of bytes to be skipped","limit":"Number of bytes to be returned"},"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":406,"name":"FILEREF_UPGRADE_NEEDED","comment":"The client has to be updated in order to support file references."},{"code":400,"name":"FILE_ID_INVALID","comment":"The provided file id is invalid."},{"code":400,"name":"FILE_REFERENCE_EXPIRED","comment":"File reference expired, it must be refetched as described in the documentation."},{"code":420,"name":"FLOOD_PREMIUM_WAIT_%d","comment":"Please wait %d seconds before repeating the action, or purchase a Telegram Premium subscription to remove this rate limit."},{"code":400,"name":"LIMIT_INVALID","comment":"The provided limit is invalid."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"OFFSET_INVALID","comment":"The provided offset is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},"upload.saveFilePart":{"comment":"Saves a part of file for further sending to one of the methods.","arguments":{"file_id":"Random file identifier created by the client","file_part":"Numerical order of a part","bytes":"Binary data, content of a part"},"throws":[{"code":400,"name":"FILE_PART_EMPTY","comment":"The provided file part is empty."},{"code":400,"name":"FILE_PART_INVALID","comment":"The file part number is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},"upload.saveBigFilePart":{"comment":"Saves a part of a large file (over 10 MB in size) to be later passed to one of the methods.","arguments":{"file_id":"Random file id, created by the client","file_part":"Part sequence number","file_total_parts":"Total number of parts","bytes":"Binary data, part contents"},"throws":[{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_PART_EMPTY","comment":"The provided file part is empty."},{"code":400,"name":"FILE_PART_INVALID","comment":"The file part number is invalid."},{"code":400,"name":"FILE_PART_SIZE_CHANGED","comment":"Provided file part size has changed."},{"code":400,"name":"FILE_PART_SIZE_INVALID","comment":"The provided file part size is invalid."},{"code":400,"name":"FILE_PART_TOO_BIG","comment":"The uploaded file part is too big."}],"available":"both"},"updates.getDifference":{"comment":"Get new updates.","arguments":{"flags":"Flags, see TL conditional fields","pts":"PTS, see updates.","pts_limit":"PTS limit","pts_total_limit":"For fast updating: if provided and pts + pts_total_limit < remote pts, {@link updates.RawDifferenceTooLong} will be returned.
Simply tells the server to not return the difference if it is bigger than pts_total_limit
If the remote pts is too big (> ~4000000), this field will default to 1000000","date":"date, see updates.","qts":"QTS, see updates.","qts_limit":"QTS limit"},"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"DATE_EMPTY","comment":"Date empty."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PERSISTENT_TIMESTAMP_EMPTY","comment":"Persistent timestamp empty."},{"code":400,"name":"PERSISTENT_TIMESTAMP_INVALID","comment":"Persistent timestamp invalid."},{"code":500,"name":"RANDOM_ID_DUPLICATE","comment":"You provided a random ID that was already used."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},"upload.reuploadCdnFile":{"comment":"Request a reupload of a certain file to a CDN DC.","arguments":{"file_token":"File token","request_token":"Request token"},"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":500,"name":"CDN_UPLOAD_TIMEOUT","comment":"A server-side timeout occurred while reuploading the file to the CDN DC."},{"code":400,"name":"FILE_TOKEN_INVALID","comment":"The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."},{"code":400,"name":"REQUEST_TOKEN_INVALID","comment":"The master DC did not accept the request_token from the CDN DC. Continue downloading the file from the master DC using upload.getFile."},{"code":400,"name":"RSA_DECRYPT_FAILED","comment":"Internal RSA decryption failed."}],"available":"both"},"upload.getCdnFileHashes":{"comment":"Get SHA256 hashes for verifying downloaded CDN files","arguments":{"file_token":"File","offset":"Offset from which to start getting hashes"},"throws":[{"code":400,"name":"CDN_METHOD_INVALID","comment":"You can't call this method in a CDN DC."},{"code":400,"name":"FILE_TOKEN_INVALID","comment":"The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile."},{"code":400,"name":"RSA_DECRYPT_FAILED","comment":"Internal RSA decryption failed."}],"available":"both"},"upload.getFileHashes":{"comment":"Get SHA256 hashes for verifying downloaded files","arguments":{"location":"File","offset":"Offset from which to get file hashes"},"throws":[{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."}],"available":"both"},"upload.getWebFile":{"comment":"Returns content of a web file, by proxying the request through telegram, see the webfile docs for more info.\n\nNote: the query must be sent to the DC specified in the webfile_dc_id MTProto configuration field.","arguments":{"location":"The file to download","offset":"Number of bytes to be skipped","limit":"Number of bytes to be returned"},"throws":[{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."}],"available":"user"},"help.getConfig":{"comment":"Returns current configuration, including data center configuration.","throws":[{"code":400,"name":"CONNECTION_API_ID_INVALID","comment":"The provided API id is invalid."},{"code":400,"name":"CONNECTION_APP_VERSION_EMPTY","comment":"App version is empty."},{"code":400,"name":"CONNECTION_LAYER_INVALID","comment":"Layer invalid."},{"code":400,"name":"DATA_INVALID","comment":"Encrypted data invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."}],"available":"both","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.getNearestDc":{"comment":"Returns info on data center nearest to the user.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.getAppUpdate":{"comment":"Returns information on update availability for the current application.","arguments":{"source":"Source"},"available":"user"},"messages.togglePeerTranslations":{"comment":"Show or hide the real-time chat translation popup for a certain chat","arguments":{"flags":"Flags, see TL conditional fields","disabled":"Whether to disable or enable the real-time chat translation popup","peer":"The peer"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"photos.uploadProfilePhoto":{"comment":"Updates current user profile photo.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.","arguments":{"flags":"Flags, see TL conditional fields","fallback":"If set, the chosen profile photo will be shown to users that can't display your main profile photo due to your privacy settings.","bot":"Can contain info of a bot we own, to change the profile photo of that bot, instead of the current user.","file":"Profile photo","video":"Animated profile picture video","video_start_ts":"Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set.","video_emoji_markup":"Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor."},"throws":[{"code":400,"name":"ALBUM_PHOTOS_TOO_MANY","comment":"You have uploaded too many profile photos, delete some before retrying."},{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"EMOJI_MARKUP_INVALID","comment":"The specified video_emoji_markup was invalid."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"PHOTO_CROP_FILE_MISSING","comment":"Photo crop file missing."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_FILE_MISSING","comment":"Profile photo file missing."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."},{"code":400,"name":"STICKER_MIME_INVALID","comment":"The specified sticker MIME type is invalid."},{"code":400,"name":"VIDEO_FILE_INVALID","comment":"The specified video file is invalid."}],"available":"both"},"help.setBotUpdatesStatus":{"comment":"Informs the server about the number of pending bot updates if they haven't been processed for a long time; for bots only","arguments":{"pending_updates_count":"Number of pending updates","message":"Error message, if present"},"throws":[{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"help.getSupport":{"comment":"Returns the support user for the \"ask a question\" feature.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.getRecentMeUrls":{"comment":"Get recently used t.me links.\n\nWhen installing official applications from \"Download Telegram\" buttons present in t.me pages, a referral parameter is passed to applications after installation.
\nIf, after downloading the application, the user creates a new account (instead of logging into an existing one), the referral parameter should be imported using this method, which returns the t.me pages the user recently opened, before installing Telegram.","arguments":{"referer":"Referrer"},"available":"user"},"help.getCdnConfig":{"comment":"Get configuration for CDN file downloads.","available":"both","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.acceptTermsOfService":{"comment":"Accept the new terms of service","arguments":{"id":"ID of terms of service"},"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},"help.getAppConfig":{"comment":"Get app-specific configuration, see client configuration for more info on the result.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"help.getDeepLinkInfo":{"comment":"Get info about an unsupported deep link, see here for more info ».","arguments":{"path":"Path component of a tg: link"},"available":"user"},"photos.updateProfilePhoto":{"comment":"Installs a previously uploaded photo as a profile photo.","arguments":{"flags":"Flags, see TL conditional fields","fallback":"If set, the chosen profile photo will be shown to users that can't display your main profile photo due to your privacy settings.","bot":"Can contain info of a bot we own, to change the profile photo of that bot, instead of the current user.","id":"Input photo"},"throws":[{"code":400,"name":"ALBUM_PHOTOS_TOO_MANY","comment":"You have uploaded too many profile photos, delete some before retrying."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"LOCATION_INVALID","comment":"The provided location is invalid."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_ID_INVALID","comment":"Photo ID invalid."}],"available":"both"},"messages.clickSponsoredMessage":{"comment":"Informs the server that the user has either:","arguments":{"flags":"Flags, see TL conditional fields","peer":"The channel/bot where the ad is located","random_id":"The ad's unique ID."},"available":"both"},"help.getSupportName":{"comment":"Get localized name of the telegram support user","throws":[{"code":403,"name":"USER_INVALID","comment":"Invalid user provided."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"photos.uploadContactProfilePhoto":{"comment":"Upload a custom profile picture for a contact, or suggest a new profile picture to a contact.\n\nThe file, video and video_emoji_markup flags are mutually exclusive.","arguments":{"flags":"Flags, see TL conditional fields","suggest":"If set, will send a {@link RawMessageActionSuggestProfilePhoto} service message to user_id, suggesting them to use the specified profile picture; otherwise, will set a personal profile picture for the user (only visible to the current user).","save":"If set, removes a previously set personal profile picture (does not affect suggested profile pictures, to remove them simply deleted the {@link RawMessageActionSuggestProfilePhoto} service message with {@link messages.RawDeleteMessagesRequest}).","user_id":"The contact","file":"Profile photo","video":"Animated profile picture video","video_start_ts":"Floating point UNIX timestamp in seconds, indicating the frame of the video/sticker that should be used as static preview; can only be used if video or video_emoji_markup is set.","video_emoji_markup":"Animated sticker profile picture, must contain either a {@link RawVideoSizeEmojiMarkup} or a {@link RawVideoSizeStickerMarkup} constructor."},"throws":[{"code":400,"name":"CONTACT_MISSING","comment":"The specified user is not a contact."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},"help.editUserInfo":{"comment":"Internal use","arguments":{"user_id":"User","message":"Message","entities":"Message entities for styled text"},"throws":[{"code":400,"name":"ENTITY_BOUNDS_INVALID","comment":"A specified entity offset or length is invalid, see here » for info on how to properly compute the entity offset/length."},{"code":403,"name":"USER_INVALID","comment":"Invalid user provided."}],"available":"user"},"help.getTermsOfServiceUpdate":{"comment":"Look for updates of telegram's terms of service","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.dismissSuggestion":{"comment":"Dismiss a suggestion, see here for more info ».","arguments":{"peer":"In the case of pending suggestions in {@link RawChannelFull}, the channel ID.","suggestion":"Suggestion, see here for more info »."},"available":"user"},"help.hidePromoData":{"comment":"Hide MTProxy/Public Service Announcement information","arguments":{"peer":"Peer to hide"},"available":"user"},"help.getPremiumPromo":{"comment":"Get Telegram Premium promotion information","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.getPromoData":{"comment":"Get MTProxy/Public Service Announcement information","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.saveAppLog":{"comment":"Saves logs of application on the server.","arguments":{"events":"List of input events"},"available":"user"},"help.getInviteText":{"comment":"Returns localized text of a text message with an invitation.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.getPeerProfileColors":{"comment":"Get the set of accent color palettes » that can be used in profile page backgrounds.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"channels.deleteMessages":{"comment":"Delete messages in a channel/supergroup","arguments":{"channel":"Channel/supergroup","id":"IDs of messages to delete"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"MESSAGE_DELETE_FORBIDDEN","comment":"You can't delete one of the messages you tried to delete, most likely because it is a service message."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},"channels.readHistory":{"comment":"Mark channel/supergroup history as read","arguments":{"channel":"Channel/supergroup","max_id":"ID of message up to which messages should be marked as read"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},"channels.getMessages":{"comment":"Get channel/supergroup messages","arguments":{"channel":"Channel/supergroup","id":"IDs of messages to get"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MESSAGE_IDS_EMPTY","comment":"No message ids were provided."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},"help.getPassportConfig":{"comment":"Get passport configuration","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"help.getPeerColors":{"comment":"Get the set of accent color palettes » that can be used for message accents.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"help.getTimezonesList":{"comment":"Returns timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"user"},"channels.getParticipants":{"comment":"Get the participants of a supergroup/channel","arguments":{"channel":"Channel","filter":"Which participant types to fetch","offset":"Offset","limit":"Limit","hash":"Hash"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},"channels.getChannels":{"comment":"Get info about channels/supergroups","arguments":{"id":"IDs of channels/supergroups to get info about"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."}],"available":"both"},"messages.toggleBotInAttachMenu":{"comment":"Enable or disable web bot attachment menu »","arguments":{"flags":"Flags, see TL conditional fields","write_allowed":"Whether the user authorizes the bot to write messages to them, if requested by {@link RawAttachMenuBot}.request_write_access","bot":"Bot ID","enabled":"Toggle"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"channels.createChannel":{"comment":"Create a supergroup/channel.","arguments":{"flags":"Flags, see TL conditional fields","broadcast":"Whether to create a channel","megagroup":"Whether to create a supergroup","for_import":"Whether the supergroup is being created to import messages from a foreign chat service using {@link messages.RawInitHistoryImportRequest}","forum":"Whether to create a forum","title":"Channel title","about":"Channel description","geo_point":"Geogroup location, see here » for more info on geogroups.","address":"Geogroup address, see here » for more info on geogroups.","ttl_period":"Time-to-live of all messages that will be sent in the supergroup: once message.date+message.ttl_period === time(), the message will be deleted on the server, and must be deleted locally as well. You can use {@link messages.RawSetDefaultHistoryTTLRequest} to edit this value later."},"throws":[{"code":400,"name":"ADDRESS_INVALID","comment":"The specified geopoint address is invalid."},{"code":400,"name":"CHANNELS_ADMIN_LOCATED_TOO_MUCH","comment":"The user has reached the limit of public geogroups."},{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHAT_ABOUT_TOO_LONG","comment":"Chat about too long."},{"code":500,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":400,"name":"TTL_PERIOD_INVALID","comment":"The specified TTL period is invalid."},{"code":406,"name":"USER_RESTRICTED","comment":"You're spamreported, you can't create channels or chats."}],"available":"user"},"channels.getFullChannel":{"comment":"Get full info about a supergroup, gigagroup or channel","arguments":{"channel":"The channel, supergroup or gigagroup to get info about"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHANNEL_PUBLIC_GROUP_NA","comment":"channel/supergroup not available."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"both"},"channels.checkUsername":{"comment":"Check if a username is free and can be assigned to a channel/supergroup","arguments":{"channel":"The channel/supergroup that will assigned the specified username","username":"The username to check"},"throws":[{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},"channels.editTitle":{"comment":"Edit the name of a channel/supergroup","arguments":{"channel":"Channel/supergroup","title":"New name"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"CHAT_TITLE_EMPTY","comment":"No chat title provided."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."}],"available":"both"},"channels.editPhoto":{"comment":"Change the photo of a channel/supergroup","arguments":{"channel":"Channel/supergroup whose photo should be edited","photo":"New photo"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FILE_PARTS_INVALID","comment":"The number of file parts is invalid."},{"code":400,"name":"FILE_REFERENCE_INVALID","comment":"The specified file reference is invalid."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"PHOTO_CROP_SIZE_SMALL","comment":"Photo is too small."},{"code":400,"name":"PHOTO_EXT_INVALID","comment":"The extension of the photo is invalid."},{"code":400,"name":"PHOTO_INVALID","comment":"Photo invalid."},{"code":400,"name":"STICKER_MIME_INVALID","comment":"The specified sticker MIME type is invalid."}],"available":"both"},"channels.inviteToChannel":{"comment":"Invite users to a channel/supergroup","arguments":{"channel":"Channel/supergroup","users":"Users to invite"},"throws":[{"code":400,"name":"BOTS_TOO_MUCH","comment":"There are too many bots in this chat/channel."},{"code":400,"name":"BOT_GROUPS_BLOCKED","comment":"This bot can't be added to groups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"USER_BLOCKED","comment":"User blocked."},{"code":400,"name":"USER_BOT","comment":"Bots can only be admins in channels."},{"code":403,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_KICKED","comment":"This user was kicked from this supergroup/channel."},{"code":403,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."}],"available":"user"},"channels.getParticipant":{"comment":"Get info about a channel/supergroup participant","arguments":{"channel":"Channel/supergroup","participant":"Participant to get info about"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PARTICIPANT_ID_INVALID","comment":"The specified participant ID is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},"channels.leaveChannel":{"comment":"Leave a channel/supergroup","arguments":{"channel":"Channel/supergroup to leave"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHANNEL_PUBLIC_GROUP_NA","comment":"channel/supergroup not available."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_BANNED_IN_CHANNEL","comment":"You're banned from sending messages in supergroups/channels."},{"code":400,"name":"USER_CREATOR","comment":"For channels.editAdmin: you've tried to edit the admin rights of the owner, but you're not the owner; for channels.leaveChannel: you can't leave this channel, because you're its creator."},{"code":400,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"both"},"channels.joinChannel":{"comment":"Join a channel/supergroup","arguments":{"channel":"Channel/supergroup to join"},"throws":[{"code":400,"name":"CHANNELS_TOO_MUCH","comment":"You have joined too many channels/supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_INVALID","comment":"Invalid chat."},{"code":400,"name":"INVITE_HASH_EMPTY","comment":"The invite hash is empty."},{"code":406,"name":"INVITE_HASH_EXPIRED","comment":"The invite link has expired."},{"code":400,"name":"INVITE_HASH_INVALID","comment":"The invite hash is invalid."},{"code":400,"name":"INVITE_REQUEST_SENT","comment":"You have successfully requested to join this chat or channel."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_ALREADY_PARTICIPANT","comment":"The user is already in the group."},{"code":400,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."}],"available":"user"},"channels.deleteChannel":{"comment":"Delete a channel/supergroup","arguments":{"channel":"Channel/supergroup to delete"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":406,"name":"CHANNEL_TOO_LARGE","comment":"Channel is too large to be deleted; this error is issued when trying to delete channels with more than 1000 members (subject to change)."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."}],"available":"user"},"channels.getAdminedPublicChannels":{"comment":"Get channels/supergroups/geogroups we're admin in. Usually called when the user exceeds the {@link RawConfig} for owned public channels/supergroups/geogroups, and the user is given the choice to remove one of their channels/supergroups/geogroups.","arguments":{"flags":"Flags, see TL conditional fields","by_location":"Get geogroups","check_limit":"If set and the user has reached the limit of owned public channels/supergroups/geogroups, instead of returning the channel list one of the specified errors will be returned.
Useful to check if a new public channel can indeed be created, even before asking the user to enter a channel username to use in {@link channels.RawCheckUsernameRequest}/{@link channels.RawUpdateUsernameRequest}.","for_personal":"Set this flag to only fetch the full list of channels that may be passed to {@link account.RawUpdatePersonalChannelRequest} to display them on our profile page."},"throws":[{"code":400,"name":"CHANNELS_ADMIN_LOCATED_TOO_MUCH","comment":"The user has reached the limit of public geogroups."},{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."}],"available":"user"},"channels.getAdminLog":{"comment":"Get the admin log of a channel/supergroup","arguments":{"flags":"Flags, see TL conditional fields","channel":"Channel","q":"Search query, can be empty","events_filter":"Event filter","admins":"Only show events from these admins","max_id":"Maximum ID of message to return (see pagination)","min_id":"Minimum ID of message to return (see pagination)","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},"channels.editBanned":{"comment":"Ban/unban/kick a user in a supergroup/channel.","arguments":{"channel":"The supergroup/channel.","participant":"Participant to ban","banned_rights":"The banned rights"},"throws":[{"code":406,"name":"BANNED_RIGHTS_INVALID","comment":"You provided some invalid flags in the banned rights."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PARTICIPANT_ID_INVALID","comment":"The specified participant ID is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ADMIN_INVALID","comment":"You're not an admin."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},"channels.setStickers":{"comment":"Associate a stickerset to the supergroup","arguments":{"channel":"Supergroup","stickerset":"The stickerset to associate"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PARTICIPANTS_TOO_FEW","comment":"Not enough participants."},{"code":406,"name":"STICKERSET_OWNER_ANONYMOUS","comment":"Provided stickerset can't be installed as group stickerset to prevent admin deanonymization."}],"available":"both"},"help.getUserInfo":{"comment":"Can only be used by TSF members to obtain internal information.","arguments":{"user_id":"User ID"},"throws":[{"code":403,"name":"USER_INVALID","comment":"Invalid user provided."}],"available":"user"},"channels.exportMessageLink":{"comment":"Get link and embed info of a message in a channel/supergroup","arguments":{"flags":"Flags, see TL conditional fields","grouped":"Whether to include other grouped media (for albums)","thread":"Whether to also include a thread ID, if available, inside of the link","channel":"Channel","id":"Message ID"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},"channels.getLeftChannels":{"comment":"Get a list of channels/supergroups we left, requires a takeout session, see here » for more info.","arguments":{"offset":"Offset for pagination"},"throws":[{"code":403,"name":"TAKEOUT_REQUIRED","comment":"A takeout session needs to be initialized first, see here » for more info."}],"available":"user"},"channels.getGroupsForDiscussion":{"comment":"Get all groups that can be used as discussion groups.\n\nReturned basic group chats must be first upgraded to supergroups before they can be set as a discussion group.
\nTo set a returned supergroup as a discussion group, access to its old messages must be enabled using {@link channels.RawTogglePreHistoryHiddenRequest}, first.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"help.getCountriesList":{"comment":"Get name, ISO code, localized name and phone codes/patterns of all available countries","arguments":{"lang_code":"Language code of the current user","hash":"Hash used for caching, for more info click here."},"available":"user"},"channels.deleteHistory":{"comment":"Delete the history of a supergroup","arguments":{"flags":"Flags, see TL conditional fields","for_everyone":"Whether the history should be deleted for everyone","channel":"Supergroup whose history must be deleted","max_id":"ID of message up to which the history must be deleted"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PARICIPANT_MISSING","comment":"The current user is not in the channel."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHANNEL_TOO_BIG","comment":"This channel has too many participants (>1000) to be deleted."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."}],"available":"user"},"channels.togglePreHistoryHidden":{"comment":"Hide/unhide message history for new channel/supergroup users","arguments":{"channel":"Channel/supergroup","enabled":"Hide/unhide"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_LINK_EXISTS","comment":"The chat is public, you can't hide the history to new users."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"FORUM_ENABLED","comment":"You can't execute the specified action because the group is a forum, disable forum functionality to continue."}],"available":"user"},"channels.editCreator":{"comment":"Transfer channel ownership","arguments":{"channel":"Channel","user_id":"New channel owner","password":"2FA password of account"},"throws":[{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PASSWORD_TOO_FRESH_%d","comment":"The password was modified less than 24 hours ago, try again in %d seconds."},{"code":400,"name":"SESSION_TOO_FRESH_%d","comment":"This session was created less than 24 hours ago, try again in %d seconds."},{"code":400,"name":"SRP_ID_INVALID","comment":"Invalid SRP ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},"channels.readMessageContents":{"comment":"Mark channel/supergroup message contents as read","arguments":{"channel":"Channel/supergroup","id":"IDs of messages whose contents should be marked as read"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":406,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},"channels.editLocation":{"comment":"Edit location of geo group, see here » for more info on geogroups.","arguments":{"channel":"Geogroup","geo_point":"New geolocation","address":"Address string"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"MEGAGROUP_GEO_REQUIRED","comment":"This method can only be invoked on a geogroup."},{"code":400,"name":"MEGAGROUP_REQUIRED","comment":"You can only use this method on a supergroup."}],"available":"user"},"channels.toggleSlowMode":{"comment":"Toggle supergroup slow mode: if enabled, users will only be able to send one message every seconds seconds","arguments":{"channel":"The supergroup","seconds":"Users will only be able to send one message every seconds seconds, 0 to disable the limitation"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"SECONDS_INVALID","comment":"Invalid duration provided."}],"available":"user"},"channels.getInactiveChannels":{"comment":"Get inactive channels and supergroups","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"channels.deleteParticipantHistory":{"comment":"Delete all messages sent by a specific participant of a given supergroup","arguments":{"channel":"Supergroup","participant":"The participant whose messages should be deleted"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PARTICIPANT_ID_INVALID","comment":"The specified participant ID is invalid."}],"available":"user"},"channels.toggleJoinToSend":{"comment":"Set whether all users should join a discussion group in order to comment on a post »","arguments":{"channel":"Discussion group","enabled":"Toggle"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},"channels.toggleJoinRequest":{"comment":"Set whether all users should request admin approval to join the group ».","arguments":{"channel":"Group","enabled":"Toggle"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"CHAT_PUBLIC_REQUIRED","comment":"You can only enable join requests in public groups."}],"available":"user"},"channels.reorderUsernames":{"comment":"Reorder active usernames","arguments":{"channel":"The supergroup or channel","order":"The new order for active usernames. All active usernames must be specified."},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},"channels.toggleSignatures":{"comment":"Enable/disable message signatures in channels","arguments":{"flags":"Flags, see TL conditional fields","signatures_enabled":"If set, enables message signatures.","profiles_enabled":"If set, messages from channel admins will link to their profiles, just like for group messages: can only be set if the signatures_enabled flag is set.","channel":"Channel"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},"channels.getSendAs":{"comment":"Obtains a list of peers that can be used to send messages in a specific group","arguments":{"peer":"The group where we intend to send messages"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"upload.getCdnFile":{"comment":"Download a CDN file.","arguments":{"file_token":"File token","offset":"Offset of chunk to download","limit":"Length of chunk to download"},"throws":[{"code":400,"name":"FILE_TOKEN_INVALID","comment":"The master DC did not accept the file_token (e.g., the token has expired). Continue downloading the file from the master DC using upload.getFile."}],"available":"user"},"channels.editAdmin":{"comment":"Modify the admin rights of a user in a supergroup/channel.","arguments":{"channel":"The supergroup/channel.","user_id":"The ID of the user whose admin rights should be modified","admin_rights":"The admin rights","rank":"Indicates the role (rank) of the admin in the group: just an arbitrary string"},"throws":[{"code":400,"name":"ADMINS_TOO_MUCH","comment":"There are too many admins."},{"code":400,"name":"ADMIN_RANK_EMOJI_NOT_ALLOWED","comment":"An admin rank cannot contain emojis."},{"code":400,"name":"ADMIN_RANK_INVALID","comment":"The specified admin rank is invalid."},{"code":400,"name":"BOTS_TOO_MUCH","comment":"There are too many bots in this chat/channel."},{"code":400,"name":"BOT_CHANNELS_NA","comment":"Bots can't edit admin privileges."},{"code":400,"name":"BOT_GROUPS_BLOCKED","comment":"This bot can't be added to groups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_INVITE_REQUIRED","comment":"You do not have the rights to do this."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":406,"name":"FRESH_CHANGE_ADMINS_FORBIDDEN","comment":"You were just elected admin, you can't add or modify other admins yet."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":403,"name":"RIGHT_FORBIDDEN","comment":"Your admin rights do not allow you to do this."},{"code":400,"name":"USERS_TOO_MUCH","comment":"The maximum number of users has been exceeded (to create a chat, for example)."},{"code":400,"name":"USER_BLOCKED","comment":"User blocked."},{"code":403,"name":"USER_CHANNELS_TOO_MUCH","comment":"One of the users you tried to add is already in too many channels/supergroups."},{"code":400,"name":"USER_CREATOR","comment":"For channels.editAdmin: you've tried to edit the admin rights of the owner, but you're not the owner; for channels.leaveChannel: you can't leave this channel, because you're its creator."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":403,"name":"USER_NOT_MUTUAL_CONTACT","comment":"The provided user is not a mutual contact."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."},{"code":403,"name":"USER_RESTRICTED","comment":"You're spamreported, you can't create channels or chats."}],"available":"both"},"channels.toggleUsername":{"comment":"Activate or deactivate a purchased fragment.com username associated to a supergroup or channel we own.","arguments":{"channel":"Supergroup or channel","username":"Username","active":"Whether to activate or deactivate the username"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"USERNAMES_ACTIVE_TOO_MUCH","comment":"The maximum number of active usernames was reached."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},"channels.reportSpam":{"comment":"Reports some messages from a user in a supergroup as spam; requires administrator rights in the supergroup","arguments":{"channel":"Supergroup","participant":"Participant whose messages should be reported","id":"IDs of spam messages"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},"channels.deactivateAllUsernames":{"comment":"Disable all purchased usernames of a supergroup or channel","arguments":{"channel":"Supergroup or channel"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},"channels.setDiscussionGroup":{"comment":"Associate a group to a channel as discussion group for that channel","arguments":{"broadcast":"Channel","group":"Discussion group to associate to the channel"},"throws":[{"code":400,"name":"BROADCAST_ID_INVALID","comment":"Broadcast ID invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"LINK_NOT_MODIFIED","comment":"Discussion link not modified."},{"code":400,"name":"MEGAGROUP_ID_INVALID","comment":"Invalid supergroup ID."},{"code":400,"name":"MEGAGROUP_PREHISTORY_HIDDEN","comment":"Group with hidden history for new members can't be set as discussion groups."}],"available":"user"},"channels.getForumTopics":{"comment":"Get topics of a forum","arguments":{"flags":"Flags, see TL conditional fields","channel":"Supergroup","q":"Search query","offset_date":"Offsets for pagination, for more info click here, date of the last message of the last found topic. Use 0 or any date in the future to get results from the last topic.","offset_id":"Offsets for pagination, for more info click here, ID of the last message of the last found topic (or initially 0).","offset_topic":"Offsets for pagination, for more info click here, ID of the last found topic (or initially 0).","limit":"Maximum number of results to return, see pagination. For optimal performance, the number of returned topics is chosen by the server and can be smaller than the specified limit."},"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},"channels.toggleForum":{"comment":"Enable or disable forum functionality in a supergroup.","arguments":{"channel":"Supergroup ID","enabled":"Enable or disable forum functionality"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_DISCUSSION_UNALLOWED","comment":"You can't enable forum topics in a discussion group linked to a channel."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},"channels.deleteTopicHistory":{"comment":"Delete message history of a forum topic","arguments":{"channel":"Forum","top_msg_id":"Topic ID"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"both"},"channels.editForumTopic":{"comment":"Edit forum topic; requires manage_topics rights.","arguments":{"flags":"Flags, see TL conditional fields","channel":"Supergroup","topic_id":"Topic ID","title":"If present, will update the topic title (maximum UTF-8 length: 128).","icon_emoji_id":"If present, updates the custom emoji used as topic icon. Telegram Premium users can use any custom emoji, other users can only use the custom emojis contained in the {@link RawInputStickerSetEmojiDefaultTopicIcons} emoji pack. Pass 0 to switch to the fallback topic icon.","closed":"If present, will update the open/closed status of the topic.","hidden":"If present, will hide/unhide the topic (only valid for the \"General\" topic, id=1)."},"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"DOCUMENT_INVALID","comment":"The specified document is invalid."},{"code":400,"name":"GENERAL_MODIFY_ICON_FORBIDDEN","comment":"You can't modify the icon of the \"General\" topic."},{"code":400,"name":"TOPIC_CLOSE_SEPARATELY","comment":"The close flag cannot be provided together with any of the other flags."},{"code":400,"name":"TOPIC_HIDE_SEPARATELY","comment":"The hide flag cannot be provided together with any of the other flags."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."},{"code":400,"name":"TOPIC_NOT_MODIFIED","comment":"The updated topic info is equal to the current topic info, nothing was changed."}],"available":"both"},"channels.createForumTopic":{"comment":"Create a forum topic; requires manage_topics rights.","arguments":{"flags":"Flags, see TL conditional fields","channel":"The forum","title":"Topic title (maximum UTF-8 length: 128)","icon_color":"If no custom emoji icon is specified, specifies the color of the fallback topic icon (RGB), one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F.","icon_emoji_id":"ID of the custom emoji used as topic icon. Telegram Premium users can use any custom emoji, other users can only use the custom emojis contained in the {@link RawInputStickerSetEmojiDefaultTopicIcons} emoji pack.","random_id":"Unique client message ID to prevent duplicate sending of the same event","send_as":"Create the topic as the specified peer"},"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":403,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"TOPIC_TITLE_EMPTY","comment":"The specified topic title is empty."}],"available":"both"},"channels.toggleAntiSpam":{"comment":"Enable or disable the native antispam system.","arguments":{"channel":"Supergroup ID. The specified supergroup must have at least telegram_antispam_group_size_min members to enable antispam functionality, as specified by the client configuration parameters.","enabled":"Enable or disable the native antispam system."},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."}],"available":"user"},"channels.toggleParticipantsHidden":{"comment":"Hide or display the participants list in a supergroup.\n\nThe supergroup must have at least hidden_members_group_size_min participants in order to use this method, as specified by the client configuration parameters ».","arguments":{"channel":"Supergroup ID","enabled":"If true, will hide the participants list; otherwise will unhide it."},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":400,"name":"PARTICIPANTS_TOO_FEW","comment":"Not enough participants."}],"available":"user"},"channels.toggleViewForumAsMessages":{"comment":"Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a \"View as messages\" setting in the local client: this setting only affects the current account, and is synced to other logged in sessions using this method.\n\nInvoking this method will update the value of the view_forum_as_messages flag of {@link RawChannelFull} or {@link RawDialog} and emit an {@link RawUpdateChannelViewForumAsMessages}.","arguments":{"channel":"The forum","enabled":"The new value of the view_forum_as_messages flag."},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},"channels.getChannelRecommendations":{"comment":"Obtain a list of similarly themed public channels, selected based on similarities in their subscriber bases.","arguments":{"flags":"Flags, see TL conditional fields","channel":"The method will return channels related to the passed channel. If not set, the method will returns channels related to channels the user has joined."},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},"channels.updateEmojiStatus":{"comment":"Set an emoji status for a channel or supergroup.","arguments":{"channel":"The channel/supergroup, must have at least channel_emoji_status_level_min/group_emoji_status_level_min boosts.","emoji_status":"Emoji status to set"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},"channels.setEmojiStickers":{"comment":"Set a custom emoji stickerset for supergroups. Only usable after reaching at least the boost level » specified in the group_emoji_stickers_level_min » config parameter.","arguments":{"channel":"The supergroup","stickerset":"The custom emoji stickerset to associate to the supergroup"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},"channels.restrictSponsoredMessages":{"comment":"Disable ads on the specified channel, for all users.\n\nAvailable only after reaching at least the boost level » specified in the channel_restrict_sponsored_level_min » config parameter.","arguments":{"channel":"The channel.","restricted":"Whether to disable or re-enable ads."},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},"channels.searchPosts":{"comment":"Globally search for posts from public channels » (including those we aren't a member of) containing a specific hashtag.","arguments":{"hashtag":"The hashtag to search, without the # character.","offset_rate":"Initially 0, then set to the {@link messages.RawMessagesSlice}","offset_peer":"Offsets for pagination, for more info click here","offset_id":"Offsets for pagination, for more info click here","limit":"Maximum number of results to return, see pagination"},"available":"user"},"channels.reorderPinnedForumTopics":{"comment":"Reorder pinned forum topics","arguments":{"flags":"Flags, see TL conditional fields","force":"If not set, the order of only the topics present both server-side and in order will be changed (i.e. mentioning topics not pinned server-side in order will not pin them, and not mentioning topics pinned server-side will not unpin them).
If set, the entire server-side pinned topic list will be replaced with order (i.e. mentioning topics not pinned server-side in order will pin them, and not mentioning topics pinned server-side will unpin them)","channel":"Supergroup ID","order":"Topic IDs »"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},"bots.sendCustomRequest":{"comment":"Sends a custom request; for bots only","arguments":{"custom_method":"The method name","params":"JSON-serialized method parameters"},"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."},{"code":400,"name":"METHOD_INVALID","comment":"The specified method is invalid."},{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"bots.answerWebhookJSONQuery":{"comment":"Answers a custom query; for bots only","arguments":{"query_id":"Identifier of a custom query","data":"JSON-serialized answer to the query"},"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."},{"code":400,"name":"QUERY_ID_INVALID","comment":"The query ID is invalid."},{"code":403,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"bots.resetBotCommands":{"comment":"Clear bot commands for the specified bot scope and language code","arguments":{"scope":"Command scope","lang_code":"Language code"},"throws":[{"code":400,"name":"LANG_CODE_INVALID","comment":"The specified language code is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"bots.setBotCommands":{"comment":"Set bot command list","arguments":{"scope":"Command scope","lang_code":"Language code","commands":"Bot commands"},"throws":[{"code":400,"name":"BOT_COMMAND_DESCRIPTION_INVALID","comment":"The specified command description is invalid."},{"code":400,"name":"BOT_COMMAND_INVALID","comment":"The specified command is invalid."},{"code":400,"name":"LANG_CODE_INVALID","comment":"The specified language code is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"bot"},"channels.setBoostsToUnblockRestrictions":{"comment":"Admins with {@link RawChatAdminRights} may allow users that apply a certain number of booosts » to the group to bypass {@link channels.RawToggleSlowModeRequest} and other » supergroup restrictions, see here » for more info.","arguments":{"channel":"The supergroup.","boosts":"The number of required boosts (1-8, 0 to disable)."},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},"channels.reportAntiSpamFalsePositive":{"comment":"Report a native antispam false positive","arguments":{"channel":"Supergroup ID","msg_id":"Message ID that was mistakenly deleted by the native antispam system, taken from the admin log"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},"channels.updateUsername":{"comment":"Change or remove the username of a supergroup/channel","arguments":{"channel":"Channel","username":"New username, pass an empty string to remove the username"},"throws":[{"code":400,"name":"CHANNELS_ADMIN_PUBLIC_TOO_MUCH","comment":"You're admin of too many public channels, make some channels private to change the username of this channel."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CHAT_NOT_MODIFIED","comment":"No changes were made to chat information because the new information you passed is identical to the current information."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"USERNAME_INVALID","comment":"The provided username is not valid."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."},{"code":400,"name":"USERNAME_OCCUPIED","comment":"The provided username is already occupied."},{"code":400,"name":"USERNAME_PURCHASE_AVAILABLE","comment":"The specified username can be purchased on https://fragment.com."}],"available":"user"},"bots.getBotCommands":{"comment":"Obtain a list of bot commands for the specified bot scope and language code","arguments":{"scope":"Command scope","lang_code":"Language code"},"throws":[{"code":400,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"bots.setBotMenuButton":{"comment":"Sets the menu button action » for a given user or for all users","arguments":{"user_id":"User ID","button":"Bot menu button action"},"throws":[{"code":400,"name":"BUTTON_TEXT_INVALID","comment":"The specified button text is invalid."},{"code":400,"name":"BUTTON_URL_INVALID","comment":"Button URL invalid."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"channels.updateColor":{"comment":"Update the accent color and background custom emoji » of a channel.","arguments":{"flags":"Flags, see TL conditional fields","for_profile":"Whether to change the accent color emoji pattern of the profile page; otherwise, the accent color and emoji pattern of messages will be changed.
Channels can change both message and profile palettes; supergroups can only change the profile palette, of course after reaching the appropriate boost level.","channel":"Channel whose accent color should be changed.","color":"ID of the accent color palette » to use (not RGB24, see here » for more info); if not set, the default palette is used.","background_emoji_id":"Custom emoji ID used in the accent color pattern."},"throws":[{"code":400,"name":"BOOSTS_REQUIRED","comment":"The specified channel must first be boosted by its users in order to perform this action."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},"bots.setBotBroadcastDefaultAdminRights":{"comment":"Set the default suggested admin rights for bots being added as admins to channels, see here for more info on how to handle them ».","arguments":{"admin_rights":"Admin rights"},"throws":[{"code":400,"name":"RIGHTS_NOT_MODIFIED","comment":"The new admin rights are equal to the old rights, no change was made."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"bots.setBotInfo":{"comment":"Set localized name, about text and description of a bot (or of the current account, if called by a bot).","arguments":{"flags":"Flags, see TL conditional fields","bot":"If called by a user, must contain the peer of a bot we own.","lang_code":"Language code, if left empty update the fallback about text and description","name":"New bot name","about":"New about text","description":"New description"},"throws":[{"code":400,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."}],"available":"both"},"bots.getBotInfo":{"comment":"Get localized name, about text and description of a bot (or of the current account, if called by a bot).","arguments":{"flags":"Flags, see TL conditional fields","bot":"If called by a user, must contain the peer of a bot we own.","lang_code":"Language code, if left empty this method will return the fallback about text and description."},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"LANG_CODE_INVALID","comment":"The specified language code is invalid."},{"code":400,"name":"USER_BOT_INVALID","comment":"User accounts must provide the bot method parameter when calling this method. If there is no such method parameter, this method can only be invoked by bot accounts."}],"available":"both"},"bots.reorderUsernames":{"comment":"Reorder usernames associated to a bot we own.","arguments":{"bot":"The bot","order":"The new order for active usernames. All active usernames must be specified."},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},"bots.toggleUsername":{"comment":"Activate or deactivate a purchased fragment.com username associated to a bot we own.","arguments":{"bot":"The bot","username":"Username","active":"Whether to activate or deactivate it"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"USERNAME_NOT_MODIFIED","comment":"The username was not modified."}],"available":"user"},"bots.canSendMessage":{"comment":"Check whether the specified bot can send us messages","arguments":{"bot":"The bot"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"bots.getPopularAppBots":{"comment":"Fetch popular Main Mini Apps, to be used in the apps tab of global search ».","arguments":{"offset":"Offset for pagination, initially an empty string, then re-use the next_offset returned by the previous query.","limit":"Maximum number of results to return, see pagination"},"available":"user"},"bots.addPreviewMedia":{"comment":"Add a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":{"bot":"The bot that owns the Main Mini App.","lang_code":"ISO 639-1 language code, indicating the localization of the preview to add.","media":"The photo/video preview, uploaded using {@link messages.RawUploadMediaRequest}."},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"bots.deletePreviewMedia":{"comment":"Delete a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":{"bot":"The bot that owns the Main Mini App.","lang_code":"ISO 639-1 language code, indicating the localization of the preview to delete.","media":"The photo/video preview to delete, previously fetched as specified here »."},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"bots.getPreviewInfo":{"comment":"Bot owners only, fetch main mini app preview information, see here » for more info.\n\nNote: technically non-owners may also invoke this method, but it will always behave exactly as {@link bots.RawGetPreviewMediasRequest}, returning only previews for the current language and an empty lang_codes array, regardless of the passed lang_code, so please only use {@link bots.RawGetPreviewMediasRequest} if you're not the owner of the bot.","arguments":{"bot":"The bot that owns the Main Mini App.","lang_code":"Fetch previews for the specified ISO 639-1 language code."},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"bots.editPreviewMedia":{"comment":"Edit a main mini app preview, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":{"bot":"The bot that owns the Main Mini App.","lang_code":"ISO 639-1 language code, indicating the localization of the preview to edit.","media":"The photo/video preview to replace, previously fetched as specified here ».","new_media":"The new photo/video preview, uploaded using {@link messages.RawUploadMediaRequest}."},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"channels.updatePinnedForumTopic":{"comment":"Pin or unpin forum topics","arguments":{"channel":"Supergroup ID","topic_id":"Forum topic ID","pinned":"Whether to pin or unpin the topic"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"TOPIC_ID_INVALID","comment":"The specified topic ID is invalid."}],"available":"user"},"bots.allowSendMessage":{"comment":"Allow the specified bot to send us messages","arguments":{"bot":"The bot"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"bots.setBotGroupDefaultAdminRights":{"comment":"Set the default suggested admin rights for bots being added as admins to groups, see here for more info on how to handle them ».","arguments":{"admin_rights":"Admin rights"},"throws":[{"code":400,"name":"RIGHTS_NOT_MODIFIED","comment":"The new admin rights are equal to the old rights, no change was made."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"bots.getPreviewMedias":{"comment":"Fetch main mini app previews, see here » for more info.","arguments":{"bot":"The bot that owns the Main Mini App."},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"channels.getForumTopicsByID":{"comment":"Get forum topics by their ID","arguments":{"channel":"Forum","topics":"Topic IDs"},"throws":[{"code":400,"name":"CHANNEL_FORUM_MISSING","comment":"This supergroup is not a forum."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"TOPICS_EMPTY","comment":"You specified no topic IDs."}],"available":"user"},"channels.convertToGigagroup":{"comment":"Convert a supergroup to a gigagroup, when requested by channel suggestions.","arguments":{"channel":"The supergroup to convert"},"throws":[{"code":400,"name":"CHANNEL_ID_INVALID","comment":"The specified supergroup ID is invalid."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":403,"name":"CHAT_WRITE_FORBIDDEN","comment":"You can't write in this chat."},{"code":400,"name":"FORUM_ENABLED","comment":"You can't execute the specified action because the group is a forum, disable forum functionality to continue."},{"code":400,"name":"PARTICIPANTS_TOO_FEW","comment":"Not enough participants."}],"available":"user"},"payments.getPaymentReceipt":{"comment":"Get payment receipt","arguments":{"peer":"The peer where the payment receipt was sent","msg_id":"Message ID of receipt"},"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."}],"available":"user"},"payments.validateRequestedInfo":{"comment":"Submit requested order information for validation","arguments":{"flags":"Flags, see TL conditional fields","save":"Save order information to re-use it for future orders","invoice":"Invoice","info":"Requested order information"},"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"payments.sendPaymentForm":{"comment":"Send compiled payment form","arguments":{"flags":"Flags, see TL conditional fields","form_id":"Form ID","invoice":"Invoice","requested_info_id":"ID of saved and validated {@link payments.RawValidatedRequestedInfo}","shipping_option_id":"Chosen shipping option ID","credentials":"Payment credentials","tip_amount":"Tip, in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies)."},"throws":[{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"bots.invokeWebViewCustomMethod":{"comment":"Send a custom request from a mini bot app, triggered by a web_app_invoke_custom_method event ».\n\nThe response should be sent using a custom_method_invoked event, see here » for more info on the flow.","arguments":{"bot":"Identifier of the bot associated to the mini bot app","custom_method":"Identifier of the custom method to invoke","params":"Method parameters"},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."},{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},"payments.getSavedInfo":{"comment":"Get saved payment information","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"payments.checkGiftCode":{"comment":"Obtain information about a Telegram Premium giftcode »","arguments":{"slug":"The giftcode to check"},"throws":[{"code":400,"name":"GIFT_SLUG_EXPIRED","comment":"The specified gift slug has expired."},{"code":400,"name":"GIFT_SLUG_INVALID","comment":"The specified slug is invalid."}],"available":"user"},"payments.getPremiumGiftCodeOptions":{"comment":"Obtain a list of Telegram Premium giveaway/gift code » options.","arguments":{"flags":"Flags, see TL conditional fields","boost_peer":"The channel that will start the giveaway"},"available":"user"},"payments.applyGiftCode":{"comment":"Apply a Telegram Premium giftcode »","arguments":{"slug":"The code to apply"},"throws":[{"code":400,"name":"GIFT_SLUG_EXPIRED","comment":"The specified gift slug has expired."},{"code":400,"name":"GIFT_SLUG_INVALID","comment":"The specified slug is invalid."},{"code":420,"name":"PREMIUM_SUB_ACTIVE_UNTIL_%d","comment":"You already have a premium subscription active until unixtime %d ."}],"available":"user"},"bots.reorderPreviewMedias":{"comment":"Reorder a main mini app previews, see here » for more info.\n\nOnly owners of bots with a configured Main Mini App can use this method, see see here » for more info on how to check if you can invoke this method.","arguments":{"bot":"The bot that owns the Main Mini App.","lang_code":"ISO 639-1 language code, indicating the localization of the previews to reorder.","order":"New order of the previews."},"throws":[{"code":400,"name":"BOT_INVALID","comment":"This is not a valid bot."}],"available":"user"},"payments.getGiveawayInfo":{"comment":"Obtain information about a Telegram Premium giveaway ».","arguments":{"peer":"The peer where the giveaway was posted.","msg_id":"Message ID of the {@link RawMessageActionGiveawayLaunch} service message"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"payments.launchPrepaidGiveaway":{"comment":"Launch a prepaid giveaway ».","arguments":{"peer":"The peer where to launch the giveaway.","giveaway_id":"The prepaid giveaway ID.","purpose":"Giveway parameters"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"payments.assignAppStoreTransaction":{"comment":"Informs server about a purchase made through the App Store: for official applications only.","arguments":{"receipt":"Receipt","purpose":"Payment purpose"},"throws":[{"code":400,"name":"RECEIPT_EMPTY","comment":"The specified receipt is empty."}],"available":"user"},"payments.getStarsTopupOptions":{"comment":"Obtain a list of Telegram Stars topup options » as {@link RawStarsTopupOption} constructors.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"payments.getBankCardData":{"comment":"Get info about a credit card","arguments":{"number":"Credit card number"},"throws":[{"code":400,"name":"BANK_CARD_NUMBER_INVALID","comment":"The specified card number is invalid."}],"available":"user"},"payments.refundStarsCharge":{"comment":"Refund a Telegram Stars transaction, see here » for more info.","arguments":{"user_id":"User to refund.","charge_id":"Transaction ID."},"throws":[{"code":400,"name":"CHARGE_ALREADY_REFUNDED","comment":"The transaction was already refunded."},{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"bot"},"payments.getStarsRevenueStats":{"comment":"Get Telegram Star revenue statistics ».","arguments":{"flags":"Flags, see TL conditional fields","dark":"Whether to enable dark theme for graph colors","peer":"Get statistics for the specified bot, channel or ourselves ({@link RawInputPeerSelf})."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"payments.sendStarsForm":{"comment":"Make a payment using Telegram Stars, see here » for more info.","arguments":{"form_id":"Payment form ID","invoice":"Invoice"},"throws":[{"code":400,"name":"BALANCE_TOO_LOW","comment":"The transaction cannot be completed because the current Telegram Stars balance is too low."},{"code":400,"name":"FORM_EXPIRED","comment":"The form was generated more than 10 minutes ago and has expired, please re-generate it using {@link payments.RawGetPaymentFormRequest} and pass the new form_id."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"payments.canPurchasePremium":{"comment":"Checks whether Telegram Premium purchase is possible. Must be called before in-store Premium purchase, official apps only.","arguments":{"purpose":"Payment purpose"},"throws":[{"code":406,"name":"PREMIUM_CURRENTLY_UNAVAILABLE","comment":"You cannot currently purchase a Premium subscription."}],"available":"user"},"payments.getStarsRevenueWithdrawalUrl":{"comment":"Withdraw funds from a channel or bot's star balance ».","arguments":{"peer":"Channel or bot from which to withdraw funds.","stars":"Amount of stars to withdraw.","password":"2FA password, see here » for more info."},"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PASSWORD_TOO_FRESH_%d","comment":"The password was modified less than 24 hours ago, try again in %d seconds."}],"available":"user"},"payments.getStarsRevenueAdsAccountUrl":{"comment":"Returns a URL for a Telegram Ad platform account that can be used to set up advertisements for channel/bot in peer, paid using the Telegram Stars owned by the specified peer, see here » for more info.","arguments":{"peer":"Channel or bot that owns the stars."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"payments.getStarsSubscriptions":{"comment":"Obtain a list of active, expired or cancelled Telegram Star subscriptions ».","arguments":{"flags":"Flags, see TL conditional fields","missing_balance":"Whether to return only expired subscriptions due to an excessively low Telegram Star balance.","peer":"Always pass {@link RawInputPeerSelf}.","offset":"Offset for pagination, taken from {@link payments.RawStarsStatus}."},"available":"both"},"payments.getStarsTransactions":{"comment":"Fetch Telegram Stars transactions.\n\nThe inbound and outbound flags are mutually exclusive: if none of the two are set, both incoming and outgoing transactions are fetched.","arguments":{"flags":"Flags, see TL conditional fields","inbound":"If set, fetches only incoming transactions.","outbound":"If set, fetches only outgoing transactions.","ascending":"Return transactions in ascending order by date (instead of descending order by date).","subscription_id":"If set, fetches only transactions for the specified Telegram Star subscription ».","peer":"Fetch the transaction history of the peer ({@link RawInputPeerSelf} or a bot we own).","offset":"Offset for pagination, obtained from the returned next_offset, initially an empty string ».","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},"payments.getStarsGiftOptions":{"comment":"Obtain a list of Telegram Stars gift options » as {@link RawStarsGiftOption} constructors.","arguments":{"flags":"Flags, see TL conditional fields","user_id":"Receiver of the gift (optional)."},"available":"user"},"payments.fulfillStarsSubscription":{"comment":"Re-join a private channel associated to an active Telegram Star subscription ».","arguments":{"peer":"Always pass {@link RawInputPeerSelf}.","subscription_id":"ID of the subscription."},"available":"both"},"payments.changeStarsSubscription":{"comment":"Activate or deactivate a Telegram Star subscription ».","arguments":{"flags":"Flags, see TL conditional fields","peer":"Always pass {@link RawInputPeerSelf}.","subscription_id":"ID of the subscription.","canceled":"Whether to cancel or reactivate the subscription."},"available":"both"},"payments.getStarGifts":{"comment":"Get a list of available gifts, see here » for more info.","arguments":{"hash":"Hash used for caching, for more info click here."},"available":"both"},"payments.getStarsGiveawayOptions":{"comment":"Fetch a list of star giveaway options ».","available":"both","arguments":{"gigagroup":"Is this a broadcast group?"}},"payments.getUserStarGifts":{"comment":"Get the gifts » pinned on a specific user's profile.\n\nMay also be used to fetch all gifts received by the current user.","arguments":{"user_id":"Identifier of the user (can be the current user to fetch all gifts received by the current user).","offset":"Offset for pagination, taken from {@link payments.RawUserStarGifts} (initially empty).","limit":"Maximum number of results to return, see pagination"},"available":"both"},"payments.getStarsStatus":{"comment":"Get the current Telegram Stars balance of the current account (with peer={@link RawInputPeerSelf}), or the stars balance of the bot specified in peer.","arguments":{"peer":"Peer of which to get the balance."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"payments.convertStarGift":{"comment":"Convert a received gift » into Telegram Stars: this will permanently destroy the gift, converting it into {@link RawStarGift}.convert_stars Telegram Stars, added to the user's balance.\n\nNote that {@link RawStarGift}.convert_stars will be less than the buying price ({@link RawStarGift}.stars) of the gift if it was originally bought using Telegram Stars bought a long time ago.","arguments":{"user_id":"ID of the user that sent us the gift.","msg_id":"The ID of the {@link RawMessageService} with the {@link RawMessageActionStarGift}."},"available":"both"},"payments.exportInvoice":{"comment":"Generate an invoice deep link","arguments":{"invoice_media":"Invoice"},"throws":[{"code":400,"name":"CURRENCY_TOTAL_AMOUNT_INVALID","comment":"The total amount of all prices is invalid."},{"code":400,"name":"INVOICE_PAYLOAD_INVALID","comment":"The specified invoice payload is invalid."},{"code":400,"name":"MEDIA_INVALID","comment":"Media invalid."},{"code":400,"name":"PAYMENT_PROVIDER_INVALID","comment":"The specified payment provider is invalid."}],"available":"both"},"stickers.changeStickerPosition":{"comment":"Changes the absolute position of a sticker in the set to which it belongs. The sticker set must have been created by the current user/bot.","arguments":{"sticker":"The sticker","position":"The new position of the sticker, zero-based"},"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},"stickers.removeStickerFromSet":{"comment":"Remove a sticker from the set where it belongs. The sticker set must have been created by the current user/bot.","arguments":{"sticker":"The sticker to remove"},"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},"stickers.addStickerToSet":{"comment":"Add a sticker to a stickerset. The sticker set must have been created by the current user/bot.","arguments":{"stickerset":"The stickerset","sticker":"The sticker"},"throws":[{"code":400,"name":"STICKERPACK_STICKERS_TOO_MUCH","comment":"There are too many stickers in this stickerpack, you can't add any more."},{"code":406,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."},{"code":400,"name":"STICKERS_TOO_MUCH","comment":"There are too many stickers in this stickerpack, you can't add any more."},{"code":400,"name":"STICKER_PNG_NOPNG","comment":"One of the specified stickers is not a valid PNG file."},{"code":400,"name":"STICKER_TGS_NOTGS","comment":"Invalid TGS sticker provided."}],"available":"both"},"stickers.createStickerSet":{"comment":"Create a stickerset.","arguments":{"flags":"Flags, see TL conditional fields","masks":"Whether this is a mask stickerset","emojis":"Whether this is a custom emoji stickerset.","text_color":"Whether the color of TGS custom emojis contained in this set should be changed to the text color when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context. For custom emoji stickersets only.","user_id":"Stickerset owner","title":"Stickerset name, 1-64 chars","short_name":"Short name of sticker set, to be used in sticker deep links ». Can contain only english letters, digits and underscores. Must begin with a letter, can't contain consecutive underscores and, if called by a bot, must end in \"_by_\". is case insensitive. 1-64 characters.","thumb":"Thumbnail","stickers":"Stickers","software":"Used when importing stickers using the sticker import SDKs, specifies the name of the software that created the stickers"},"throws":[{"code":400,"name":"PACK_SHORT_NAME_INVALID","comment":"Short pack name invalid."},{"code":400,"name":"PACK_SHORT_NAME_OCCUPIED","comment":"A stickerpack with this name already exists."},{"code":400,"name":"PACK_TITLE_INVALID","comment":"The stickerpack title is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STICKERS_EMPTY","comment":"No sticker provided."},{"code":400,"name":"STICKER_EMOJI_INVALID","comment":"Sticker emoji invalid."},{"code":400,"name":"STICKER_FILE_INVALID","comment":"Sticker file invalid."},{"code":400,"name":"STICKER_GIF_DIMENSIONS","comment":"The specified video sticker has invalid dimensions."},{"code":400,"name":"STICKER_PNG_DIMENSIONS","comment":"Sticker png dimensions invalid."},{"code":400,"name":"STICKER_PNG_NOPNG","comment":"One of the specified stickers is not a valid PNG file."},{"code":400,"name":"STICKER_TGS_NODOC","comment":"You must send the animated sticker as a document."},{"code":400,"name":"STICKER_TGS_NOTGS","comment":"Invalid TGS sticker provided."},{"code":400,"name":"STICKER_THUMB_PNG_NOPNG","comment":"Incorrect stickerset thumb file provided, PNG / WEBP expected."},{"code":400,"name":"STICKER_THUMB_TGS_NOTGS","comment":"Incorrect stickerset TGS thumb file provided."},{"code":400,"name":"STICKER_VIDEO_BIG","comment":"The specified video sticker is too big."},{"code":400,"name":"STICKER_VIDEO_NODOC","comment":"You must send the video sticker as a document."},{"code":400,"name":"STICKER_VIDEO_NOWEBM","comment":"The specified video sticker is not in webm format."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"both"},"stickers.setStickerSetThumb":{"comment":"Set stickerset thumbnail","arguments":{"flags":"Flags, see TL conditional fields","stickerset":"Stickerset","thumb":"Thumbnail (only for normal stickersets, not custom emoji stickersets).","thumb_document_id":"Only for custom emoji stickersets, ID of a custom emoji present in the set to use as thumbnail; pass 0 to fallback to the first custom emoji of the set."},"throws":[{"code":400,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."},{"code":400,"name":"STICKER_THUMB_PNG_NOPNG","comment":"Incorrect stickerset thumb file provided, PNG / WEBP expected."},{"code":400,"name":"STICKER_THUMB_TGS_NOTGS","comment":"Incorrect stickerset TGS thumb file provided."}],"available":"both"},"stickers.checkShortName":{"comment":"Check whether the given short name is available","arguments":{"short_name":"Short name"},"throws":[{"code":400,"name":"SHORT_NAME_INVALID","comment":"The specified short name is invalid."},{"code":400,"name":"SHORT_NAME_OCCUPIED","comment":"The specified short name is already in use."}],"available":"user"},"bots.getBotMenuButton":{"comment":"Gets the menu button action for a given user or for all users, previously set using {@link bots.RawSetBotMenuButtonRequest}; users can see this information in the {@link RawBotInfo} constructor.","arguments":{"user_id":"User ID or empty for the default menu button."},"throws":[{"code":400,"name":"USER_BOT_REQUIRED","comment":"This method can only be called by a bot."}],"available":"bot"},"stickers.suggestShortName":{"comment":"Suggests a short name for a given stickerpack name","arguments":{"title":"Sticker pack name"},"throws":[{"code":400,"name":"TITLE_INVALID","comment":"The specified stickerpack title is invalid."}],"available":"user"},"stickers.changeSticker":{"comment":"Update the keywords, emojis or mask coordinates of a sticker.","arguments":{"flags":"Flags, see TL conditional fields","sticker":"The sticker","emoji":"If set, updates the emoji list associated to the sticker","mask_coords":"If set, updates the mask coordinates","keywords":"If set, updates the sticker keywords (separated by commas). Can't be provided for mask stickers."},"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},"payments.getStarsTransactionsByID":{"comment":"Obtain info about Telegram Star transactions » using specific transaction IDs.","arguments":{"peer":"Channel or bot.","id":"Transaction IDs."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"stickers.deleteStickerSet":{"comment":"Deletes a stickerset we created.","arguments":{"stickerset":"Stickerset to delete"},"throws":[{"code":400,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"both"},"stickers.replaceSticker":{"comment":"Replace a sticker in a stickerset ».","arguments":{"sticker":"Old sticker document.","new_sticker":"New sticker."},"throws":[{"code":400,"name":"STICKER_INVALID","comment":"The provided sticker is invalid."}],"available":"both"},"stickers.renameStickerSet":{"comment":"Renames a stickerset.","arguments":{"stickerset":"Stickerset to rename","title":"New stickerset title"},"throws":[{"code":400,"name":"STICKERSET_INVALID","comment":"The provided sticker set is invalid."}],"available":"both"},"phone.requestCall":{"comment":"Start a telegram phone call","arguments":{"flags":"Flags, see TL conditional fields","video":"Whether to start a video call","user_id":"Destination of the phone call","random_id":"Random ID to avoid resending the same object","g_a_hash":"Parameter for E2E encryption key exchange »","protocol":"Phone call settings"},"throws":[{"code":400,"name":"CALL_PROTOCOL_FLAGS_INVALID","comment":"Call protocol flags invalid."},{"code":400,"name":"INPUT_USER_DEACTIVATED","comment":"The specified user was deleted."},{"code":400,"name":"PARTICIPANT_VERSION_OUTDATED","comment":"The other participant does not use an up to date telegram client with support for calls."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."},{"code":403,"name":"USER_IS_BLOCKED","comment":"You were blocked by this user."},{"code":403,"name":"USER_PRIVACY_RESTRICTED","comment":"The user's privacy settings do not allow you to do this."}],"available":"user"},"payments.clearSavedInfo":{"comment":"Clear saved payment information","arguments":{"flags":"Flags, see TL conditional fields","credentials":"Remove saved payment credentials","info":"Clear the last order settings saved by the user"},"available":"user"},"phone.acceptCall":{"comment":"Accept incoming call","arguments":{"peer":"The call to accept","g_b":"Parameter for E2E encryption key exchange »","protocol":"Phone call settings"},"throws":[{"code":400,"name":"CALL_ALREADY_ACCEPTED","comment":"The call was already accepted."},{"code":400,"name":"CALL_ALREADY_DECLINED","comment":"The call was already declined."},{"code":500,"name":"CALL_OCCUPY_FAILED","comment":"The call failed because the user is already making another call."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."},{"code":406,"name":"CALL_PROTOCOL_COMPAT_LAYER_INVALID","comment":"The other side of the call does not support any of the VoIP protocols supported by the local client, as specified by the protocol.layer and protocol.library_versions fields."},{"code":400,"name":"CALL_PROTOCOL_FLAGS_INVALID","comment":"Call protocol flags invalid."}],"available":"user"},"phone.getCallConfig":{"comment":"Get phone call configuration to be passed to libtgvoip's shared config","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"payments.getPaymentForm":{"comment":"Get a payment form","arguments":{"flags":"Flags, see TL conditional fields","invoice":"Invoice","theme_params":"A JSON object with the following keys, containing color theme information (integers, RGB24) to pass to the payment provider, to apply in eventual verification pages:
bg_color - Background color
text_color - Text color
hint_color - Hint text color
link_color - Link color
button_color - Button color
button_text_color - Button text color"},"throws":[{"code":400,"name":"BOOST_PEER_INVALID","comment":"The specified boost_peer is invalid."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SLUG_INVALID","comment":"The specified invoice slug is invalid."},{"code":400,"name":"UNTIL_DATE_INVALID","comment":"Invalid until date provided."}],"available":"user"},"payments.assignPlayMarketTransaction":{"comment":"Informs server about a purchase made through the Play Store: for official applications only.","arguments":{"receipt":"Receipt","purpose":"Payment purpose"},"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},"phone.receivedCall":{"comment":"Optional: notify the server that the user is currently busy in a call: this will automatically refuse all incoming phone calls until the current phone call is ended.","arguments":{"peer":"The phone call we're currently in"},"throws":[{"code":400,"name":"CALL_ALREADY_DECLINED","comment":"The call was already declined."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},"phone.createGroupCall":{"comment":"Create a group call or livestream","arguments":{"flags":"Flags, see TL conditional fields","rtmp_stream":"Whether RTMP stream support should be enabled: only the group/supergroup/channel owner can use this flag.","peer":"Associate the group call or livestream to the provided group/supergroup/channel","random_id":"Unique client message ID required to prevent creation of duplicate group calls","title":"Call title","schedule_date":"For scheduled group call or livestreams, the absolute date when the group call will start"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"CREATE_CALL_FAILED","comment":"An error occurred while creating the call."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SCHEDULE_DATE_INVALID","comment":"Invalid schedule date provided."}],"available":"user"},"phone.leaveGroupCall":{"comment":"Leave a group call","arguments":{"call":"The group call","source":"Your source ID"},"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},"phone.joinGroupCall":{"comment":"Join a group call","arguments":{"flags":"Flags, see TL conditional fields","muted":"If set, the user will be muted by default upon joining.","video_stopped":"If set, the user's video will be disabled by default upon joining.","call":"The group call","join_as":"Join the group call, presenting yourself as the specified user/channel","invite_hash":"The invitation hash from the invite link », if provided allows speaking in a livestream or muted group chat.","params":"WebRTC parameters"},"throws":[{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."},{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_SSRC_DUPLICATE_MUCH","comment":"The app needs to retry joining the group call with a new SSRC value."},{"code":400,"name":"JOIN_AS_PEER_INVALID","comment":"The specified peer cannot be used to join a group call."}],"available":"user"},"phone.inviteToGroupCall":{"comment":"Invite a set of users to a group call.","arguments":{"call":"The group call","users":"The users to invite."},"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"INVITE_FORBIDDEN_WITH_JOINAS","comment":"If the user has anonymously joined a group call as a channel, they can't invite other users to the group call because that would cause deanonymization, because the invite would be sent using the original user ID, not the anonymized channel ID."},{"code":400,"name":"USER_ALREADY_INVITED","comment":"You have already invited this user."},{"code":403,"name":"USER_NOT_PARTICIPANT","comment":"You're not a member of this supergroup/channel."}],"available":"user"},"phone.getGroupCall":{"comment":"Get info about a group call","arguments":{"call":"The group call","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},"phone.checkGroupCall":{"comment":"Check whether the group call Server Forwarding Unit is currently receiving the streams with the specified WebRTC source IDs.
\nReturns an intersection of the source IDs specified in sources, and the source IDs currently being forwarded by the SFU.","arguments":{"call":"Group call","sources":"Source IDs"},"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_JOIN_MISSING","comment":"You haven't joined this group call."}],"available":"user"},"phone.discardGroupCall":{"comment":"Terminate a group call","arguments":{"call":"The group call to terminate"},"throws":[{"code":400,"name":"GROUPCALL_ALREADY_DISCARDED","comment":"The group call was already discarded."},{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},"payments.saveStarGift":{"comment":"Display or remove a received gift » from our profile.","arguments":{"flags":"Flags, see TL conditional fields","unsave":"If set, hides the gift from our profile.","user_id":"ID of the user that sent us the gift.","msg_id":"The ID of the {@link RawMessageService} with the {@link RawMessageActionStarGift}."},"available":"both"},"phone.toggleGroupCallRecord":{"comment":"Start or stop recording a group call: the recorded audio and video streams will be automatically sent to Saved messages (the chat with ourselves).","arguments":{"flags":"Flags, see TL conditional fields","start":"Whether to start or stop recording","video":"Whether to also record video streams","call":"The group call or livestream","title":"Recording title","video_portrait":"If video stream recording is enabled, whether to record in portrait or landscape mode"},"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_NOT_MODIFIED","comment":"Group call settings weren't modified."}],"available":"user"},"phone.toggleGroupCallSettings":{"comment":"Change group call settings","arguments":{"flags":"Flags, see TL conditional fields","reset_invite_hash":"Invalidate existing invite links","call":"Group call","join_muted":"Whether all users will that join this group call are muted by default upon joining the group call"},"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_NOT_MODIFIED","comment":"Group call settings weren't modified."}],"available":"user"},"phone.editGroupCallParticipant":{"comment":"Edit information about a given group call participant\n\nNote: flags.N?Bool parameters can have three possible values:","arguments":{"flags":"Flags, see TL conditional fields","call":"The group call","participant":"The group call participant (can also be the user itself)","muted":"Whether to mute or unmute the specified participant","volume":"New volume","raise_hand":"Raise or lower hand","video_stopped":"Start or stop the video stream","video_paused":"Pause or resume the video stream","presentation_paused":"Pause or resume the screen sharing stream"},"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"PARTICIPANT_JOIN_MISSING","comment":"Trying to enable a presentation, when the user hasn't joined the Video Chat with {@link phone.RawJoinGroupCallRequest}."},{"code":400,"name":"RAISE_HAND_FORBIDDEN","comment":"You cannot raise your hand."},{"code":400,"name":"USER_VOLUME_INVALID","comment":"The specified user volume is invalid."},{"code":400,"name":"VIDEO_PAUSE_FORBIDDEN","comment":"You cannot pause the video stream."},{"code":400,"name":"VIDEO_STOP_FORBIDDEN","comment":"You cannot stop the video stream."}],"available":"user"},"phone.getGroupParticipants":{"comment":"Get group call participants","arguments":{"call":"Group call","ids":"If specified, will fetch group participant info about the specified peers","sources":"If specified, will fetch group participant info about the specified WebRTC source IDs","offset":"Offset for results, taken from the next_offset field of {@link phone.RawGroupParticipants}, initially an empty string.
Note: if no more results are available, the method call will return an empty next_offset; thus, avoid providing the next_offset returned in {@link phone.RawGroupParticipants} if it is empty, to avoid an infinite loop.","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},"phone.discardCall":{"comment":"Refuse or end running call","arguments":{"flags":"Flags, see TL conditional fields","video":"Whether this is a video call","peer":"The phone call","duration":"Call duration","reason":"Why was the call discarded","connection_id":"Preferred libtgvoip relay ID"},"throws":[{"code":400,"name":"CALL_ALREADY_ACCEPTED","comment":"The call was already accepted."},{"code":500,"name":"CALL_OCCUPY_FAILED","comment":"The call failed because the user is already making another call."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},"phone.confirmCall":{"comment":"Complete phone call E2E encryption key exchange »","arguments":{"peer":"The phone call","g_a":"Parameter for E2E encryption key exchange »","key_fingerprint":"Key fingerprint","protocol":"Phone call settings"},"throws":[{"code":400,"name":"CALL_ALREADY_DECLINED","comment":"The call was already declined."},{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},"phone.sendSignalingData":{"comment":"Send VoIP signaling data","arguments":{"peer":"Phone call","data":"Signaling payload"},"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},"phone.getGroupCallJoinAs":{"comment":"Get a list of peers that can be used to join a group call, presenting yourself as a specific user/channel.","arguments":{"peer":"The dialog whose group call or livestream we're trying to join"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"phone.editGroupCallTitle":{"comment":"Edit the title of a group call or livestream","arguments":{"call":"Group call","title":"New title"},"throws":[{"code":403,"name":"GROUPCALL_FORBIDDEN","comment":"The group call has already ended."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},"phone.toggleGroupCallStartSubscription":{"comment":"Subscribe or unsubscribe to a scheduled group call","arguments":{"call":"Scheduled group call","subscribed":"Enable or disable subscription"},"throws":[{"code":403,"name":"GROUPCALL_ALREADY_STARTED","comment":"The groupcall has already started, you can join directly using {@link phone.RawJoinGroupCallRequest}."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},"phone.startScheduledGroupCall":{"comment":"Start a scheduled group call.","arguments":{"call":"The scheduled group call"},"throws":[{"code":403,"name":"GROUPCALL_ALREADY_STARTED","comment":"The groupcall has already started, you can join directly using {@link phone.RawJoinGroupCallRequest}."},{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},"phone.exportGroupCallInvite":{"comment":"Get an invite link for a group call or livestream","arguments":{"flags":"Flags, see TL conditional fields","can_self_unmute":"For livestreams or muted group chats, if set, users that join using this link will be able to speak without explicitly requesting permission by (for example by raising their hand).","call":"The group call"},"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":403,"name":"PUBLIC_CHANNEL_MISSING","comment":"You can only export group call invite links for public chats or channels."}],"available":"user"},"phone.getGroupCallStreamChannels":{"comment":"Get info about RTMP streams in a group call or livestream.
\nThis method should be invoked to the same group/channel-related DC used for downloading livestream chunks.
\nAs usual, the media DC is preferred, if available.","arguments":{"call":"Group call or livestream"},"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":400,"name":"GROUPCALL_JOIN_MISSING","comment":"You haven't joined this group call."}],"available":"user"},"phone.getGroupCallStreamRtmpUrl":{"comment":"Get RTMP URL and stream key for RTMP livestreams. Can be used even before creating the actual RTMP livestream with {@link phone.RawCreateGroupCallRequest} (the rtmp_stream flag must be set).","arguments":{"peer":"Peer to livestream into","revoke":"Whether to revoke the previous stream key or simply return the existing one"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"phone.saveCallLog":{"comment":"Save phone call debug information","arguments":{"peer":"Phone call","file":"Logs"},"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},"langpack.getLangPack":{"comment":"Get localization pack strings","arguments":{"lang_pack":"Platform identifier (i.e. android, tdesktop, etc).","lang_code":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."},"throws":[{"code":400,"name":"LANGUAGE_INVALID","comment":"The specified lang_code is invalid."},{"code":400,"name":"LANG_CODE_NOT_SUPPORTED","comment":"The specified language code is not supported."},{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},"phone.setCallRating":{"comment":"Rate a call, returns info about the rating message sent to the official VoIP bot.","arguments":{"flags":"Flags, see TL conditional fields","user_initiative":"Whether the user decided on their own initiative to rate the call","peer":"The call to rate","rating":"Rating in 1-5 stars","comment":"An additional comment"},"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."}],"available":"user"},"langpack.getDifference":{"comment":"Get new strings in language pack","arguments":{"lang_pack":"Platform identifier (i.e. android, tdesktop, etc).","lang_code":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link.","from_version":"Previous localization pack version"},"throws":[{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},"langpack.getLanguage":{"comment":"Get information about a language in a localization pack","arguments":{"lang_pack":"Platform identifier (i.e. android, tdesktop, etc).","lang_code":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link."},"throws":[{"code":400,"name":"LANG_CODE_NOT_SUPPORTED","comment":"The specified language code is not supported."},{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},"phone.leaveGroupCallPresentation":{"comment":"Stop screen sharing in a group call","arguments":{"call":"The group call"},"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."}],"available":"user"},"folders.editPeerFolders":{"comment":"Edit peers in peer folder","arguments":{"folder_peers":"New peer list"},"throws":[{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"CHAT_ID_INVALID","comment":"The provided chat id is invalid."},{"code":400,"name":"FOLDER_ID_INVALID","comment":"Invalid folder ID."}],"available":"user"},"stats.loadAsyncGraph":{"comment":"Load channel statistics graph asynchronously","arguments":{"flags":"Flags, see TL conditional fields","token":"Graph token from {@link RawStatsGraphAsync} constructor","x":"Zoom value, if required"},"throws":[{"code":400,"name":"GRAPH_EXPIRED_RELOAD","comment":"This graph has expired, please obtain a new graph token."},{"code":400,"name":"GRAPH_INVALID_RELOAD","comment":"Invalid graph token provided, please reload the stats and provide the updated token."},{"code":400,"name":"GRAPH_OUTDATED_RELOAD","comment":"The graph is outdated, please get a new async token using stats.getBroadcastStats."}],"available":"user"},"stats.getBroadcastStats":{"comment":"Get channel statistics","arguments":{"flags":"Flags, see TL conditional fields","dark":"Whether to enable dark theme for graph colors","channel":"The channel"},"throws":[{"code":400,"name":"BROADCAST_REQUIRED","comment":"This method can only be called on a channel, please use stats.getMegagroupStats for supergroups."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."}],"available":"user"},"stats.getMessagePublicForwards":{"comment":"Obtains a list of messages, indicating to which other public channels was a channel message forwarded.
\nWill return a list of {@link RawMessage} with peer_id equal to the public channel to which this message was forwarded.","arguments":{"channel":"Source channel","msg_id":"Source message ID","offset":"Offset for pagination, empty string on first call, then use the next_offset field of the returned constructor (if present, otherwise no more results are available).","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"stats.getMegagroupStats":{"comment":"Get supergroup statistics","arguments":{"flags":"Flags, see TL conditional fields","dark":"Whether to enable dark theme for graph colors","channel":"Supergroup ID"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":403,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MEGAGROUP_REQUIRED","comment":"You can only use this method on a supergroup."}],"available":"user"},"stats.getStoryStats":{"comment":"Get statistics for a certain story.","arguments":{"flags":"Flags, see TL conditional fields","dark":"Whether to enable the dark theme for graph colors","peer":"The peer that posted the story","id":"Story ID"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"langpack.getStrings":{"comment":"Get strings from a language pack","arguments":{"lang_pack":"Platform identifier (i.e. android, tdesktop, etc).","lang_code":"Either an ISO 639-1 language code or a language pack name obtained from a language pack link.","keys":"Strings to get"},"throws":[{"code":400,"name":"LANG_CODE_NOT_SUPPORTED","comment":"The specified language code is not supported."},{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},"stats.getBroadcastRevenueStats":{"comment":"Get channel ad revenue statistics ».","arguments":{"flags":"Flags, see TL conditional fields","dark":"Whether to enable dark theme for graph colors","peer":"Get ad revenue stats for the specified channel or bot"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."}],"available":"user"},"chatlists.deleteExportedInvite":{"comment":"Delete a previously created chat folder deep link ».","arguments":{"chatlist":"The related folder","slug":"slug obtained from the chat folder deep link »."},"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},"chatlists.getExportedInvites":{"comment":"List all chat folder deep links » associated to a folder","arguments":{"chatlist":"The folder"},"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."}],"available":"user"},"stats.getBroadcastRevenueTransactions":{"comment":"Fetch channel ad revenue transaction history ».","arguments":{"peer":"Get ad revenue transactions for the specified channel or bot","offset":"Offset for pagination","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},"stats.getMessageStats":{"comment":"Get message statistics","arguments":{"flags":"Flags, see TL conditional fields","dark":"Whether to enable dark theme for graph colors","channel":"Channel ID","msg_id":"Message ID"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"MESSAGE_ID_INVALID","comment":"The provided message id is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"phone.saveCallDebug":{"comment":"Send phone call debug data to server","arguments":{"peer":"Phone call","debug":"Debug statistics obtained from libtgvoip"},"throws":[{"code":400,"name":"CALL_PEER_INVALID","comment":"The provided call peer object is invalid."},{"code":400,"name":"DATA_JSON_INVALID","comment":"The provided JSON data is invalid."}],"available":"user"},"chatlists.joinChatlistInvite":{"comment":"Import a chat folder deep link », joining some or all the chats in the folder.","arguments":{"slug":"slug obtained from a chat folder deep link ».","peers":"List of new chats to join, fetched using {@link chatlists.RawCheckChatlistInviteRequest} and filtered as specified in the documentation »."},"throws":[{"code":400,"name":"FILTER_INCLUDE_EMPTY","comment":"The include_peers vector of the filter is empty."},{"code":400,"name":"INVITE_SLUG_EMPTY","comment":"The specified invite slug is empty."},{"code":400,"name":"INVITE_SLUG_EXPIRED","comment":"The specified chat folder link has expired."}],"available":"user"},"chatlists.editExportedInvite":{"comment":"Edit a chat folder deep link ».","arguments":{"flags":"Flags, see TL conditional fields","chatlist":"Folder ID","slug":"slug obtained from the chat folder deep link ».","title":"If set, sets a new name for the link","peers":"If set, changes the list of peers shared with the link"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"INVITE_SLUG_EMPTY","comment":"The specified invite slug is empty."},{"code":400,"name":"INVITE_SLUG_EXPIRED","comment":"The specified chat folder link has expired."},{"code":400,"name":"PEERS_LIST_EMPTY","comment":"The specified list of peers is empty."}],"available":"user"},"chatlists.getChatlistUpdates":{"comment":"Fetch new chats associated with an imported chat folder deep link ». Must be invoked at most every chatlist_update_period seconds (as per the related client configuration parameter »).","arguments":{"chatlist":"The folder"},"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"INPUT_CHATLIST_INVALID","comment":"The specified folder is invalid."}],"available":"user"},"chatlists.hideChatlistUpdates":{"comment":"Dismiss new pending peers recently added to a chat folder deep link ».","arguments":{"chatlist":"The folder"},"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},"stats.getBroadcastRevenueWithdrawalUrl":{"comment":"Withdraw funds from a channel's ad revenue balance ».","arguments":{"peer":"Get ad revenue withdrawal URL for the specified channel or bot","password":"2FA password, see here » for more info."},"throws":[{"code":400,"name":"PASSWORD_HASH_INVALID","comment":"The provided password hash is invalid."},{"code":400,"name":"PASSWORD_MISSING","comment":"You must enable 2FA before executing this operation."},{"code":400,"name":"PASSWORD_TOO_FRESH_%d","comment":"The password was modified less than 24 hours ago, try again in %d seconds."}],"available":"user"},"chatlists.getLeaveChatlistSuggestions":{"comment":"Returns identifiers of pinned or always included chats from a chat folder imported using a chat folder deep link », which are suggested to be left when the chat folder is deleted.","arguments":{"chatlist":"Folder ID"},"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."}],"available":"user"},"chatlists.checkChatlistInvite":{"comment":"Obtain information about a chat folder deep link ».","arguments":{"slug":"slug obtained from the chat folder deep link »"},"throws":[{"code":400,"name":"INVITE_SLUG_EMPTY","comment":"The specified invite slug is empty."},{"code":400,"name":"INVITE_SLUG_EXPIRED","comment":"The specified chat folder link has expired."}],"available":"user"},"chatlists.joinChatlistUpdates":{"comment":"Join channels and supergroups recently added to a chat folder deep link ».","arguments":{"chatlist":"The folder","peers":"List of new chats to join, fetched using {@link chatlists.RawGetChatlistUpdatesRequest} and filtered as specified in the documentation »."},"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_INCLUDE_EMPTY","comment":"The include_peers vector of the filter is empty."}],"available":"user"},"stories.canSendStory":{"comment":"Check whether we can post stories as the specified peer.","arguments":{"peer":"The peer from which we wish to post stories."},"throws":[{"code":400,"name":"BOOSTS_REQUIRED","comment":"The specified channel must first be boosted by its users in order to perform this action."},{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"STORIES_TOO_MUCH","comment":"You have hit the maximum active stories limit as specified by the story_expiring_limit_* client configuration parameters: you should buy a Premium subscription, delete an active story, or wait for the oldest story to expire."},{"code":400,"name":"STORY_SEND_FLOOD_MONTHLY_%d","comment":"You've hit the monthly story limit as specified by the stories_sent_monthly_limit_* client configuration parameters: wait for the specified number of seconds before posting a new story."},{"code":400,"name":"STORY_SEND_FLOOD_WEEKLY_%d","comment":"You've hit the weekly story limit as specified by the stories_sent_weekly_limit_* client configuration parameters: wait for the specified number of seconds before posting a new story."}],"available":"user"},"stories.deleteStories":{"comment":"Deletes some posted stories.","arguments":{"peer":"Channel/user from where to delete stories.","id":"IDs of stories to delete."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},"stories.togglePinned":{"comment":"Pin or unpin one or more stories","arguments":{"peer":"Peer where to pin or unpin stories","id":"IDs of stories to pin or unpin","pinned":"Whether to pin or unpin the stories"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"stories.getPinnedStories":{"comment":"Fetch the stories pinned on a peer's profile.","arguments":{"peer":"Peer whose pinned stories should be fetched","offset_id":"Offsets for pagination, for more info click here","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"USER_ID_INVALID","comment":"The provided user ID is invalid."}],"available":"user"},"stories.getAllStories":{"comment":"Fetch the List of active (or active and hidden) stories, see here » for more info on watching stories.","arguments":{"flags":"Flags, see TL conditional fields","next":"If next and state are both set, uses the passed state to paginate to the next results; if neither state nor next are set, fetches the initial page; if state is set and next is not set, check for changes in the active/hidden peerset, see here » for more info on the full flow.","hidden":"If set, fetches the hidden active story list, otherwise fetches the active story list, see here » for more info on the full flow.","state":"If next and state are both set, uses the passed state to paginate to the next results; if neither state nor next are set, fetches the initial page; if state is set and next is not set, check for changes in the active/hidden peerset, see here » for more info on the full flow."},"available":"user"},"stories.editStory":{"comment":"Edit an uploaded story","arguments":{"flags":"Flags, see TL conditional fields","peer":"Peer where the story was posted.","id":"ID of story to edit.","media":"If specified, replaces the story media.","media_areas":"Media areas associated to the story, see here » for more info.","caption":"If specified, replaces the story caption.","entities":"Message entities for styled text in the caption, if allowed by the stories_entities client configuration parameter ».","privacy_rules":"If specified, alters the privacy settings » of the story, changing who can or can't view the story."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_NOT_MODIFIED","comment":"The new story information you passed is equal to the previous story information, thus it wasn't modified."}],"available":"user"},"stories.sendStory":{"comment":"Uploads a Telegram Story.","arguments":{"flags":"Flags, see TL conditional fields","pinned":"Whether to add the story to the profile automatically upon expiration. If not set, the story will only be added to the archive, see here » for more info.","noforwards":"If set, disables forwards, screenshots, and downloads.","fwd_modified":"Set this flag when reposting stories with fwd_from_id+fwd_from_id, if the media was modified before reposting.","peer":"The peer to send the story as.","media":"The story media.","media_areas":"Media areas associated to the story, see here » for more info.","caption":"Story caption.","entities":"Message entities for styled text, if allowed by the stories_entities client configuration parameter ».","privacy_rules":"Privacy rules for the story, indicating who can or can't view the story.","random_id":"Unique client message ID required to prevent message resending.","period":"Period after which the story is moved to archive (and to the profile if pinned is set), in seconds; must be one of 6 * 3600, 12 * 3600, 86400, or 2 * 86400 for Telegram Premium users, and 86400 otherwise.","fwd_from_id":"If set, indicates that this story is a repost of story with ID fwd_from_story posted by the peer in fwd_from_id.","fwd_from_story":"If set, indicates that this story is a repost of story with ID fwd_from_story posted by the peer in fwd_from_id."},"throws":[{"code":400,"name":"BOOSTS_REQUIRED","comment":"The specified channel must first be boosted by its users in order to perform this action."},{"code":400,"name":"IMAGE_PROCESS_FAILED","comment":"Failure while processing image."},{"code":400,"name":"MEDIA_EMPTY","comment":"The provided media object is invalid."},{"code":400,"name":"MEDIA_FILE_INVALID","comment":"The specified media file is invalid."},{"code":400,"name":"MEDIA_TYPE_INVALID","comment":"The specified media type cannot be used in stories."},{"code":400,"name":"MEDIA_VIDEO_STORY_MISSING","comment":"A non-story video cannot be repubblished as a story (emitted when trying to resend a non-story video as a story using inputDocument)."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."},{"code":400,"name":"STORIES_TOO_MUCH","comment":"You have hit the maximum active stories limit as specified by the story_expiring_limit_* client configuration parameters: you should buy a Premium subscription, delete an active story, or wait for the oldest story to expire."},{"code":400,"name":"STORY_PERIOD_INVALID","comment":"The specified story period is invalid for this account."},{"code":400,"name":"VENUE_ID_INVALID","comment":"The specified venue ID is invalid."}],"available":"user"},"stories.getStoriesArchive":{"comment":"Fetch the story archive » of a peer we control.","arguments":{"peer":"Peer whose archived stories should be fetched","offset_id":"Offsets for pagination, for more info click here","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"stories.getStoriesByID":{"comment":"Obtain full info about a set of stories by their IDs.","arguments":{"peer":"Peer where the stories were posted","id":"Story IDs"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORIES_NEVER_CREATED","comment":"This peer hasn't ever posted any stories."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},"stories.toggleAllStoriesHidden":{"comment":"Hide the active stories of a specific peer, preventing them from being displayed on the action bar on the homescreen.","arguments":{"hidden":"Whether to hide or unhide all active stories of the peer"},"available":"user"},"langpack.getLanguages":{"comment":"Get information about all languages in a localization pack","arguments":{"lang_pack":"Platform identifier (i.e. android, tdesktop, etc)."},"throws":[{"code":400,"name":"LANG_PACK_INVALID","comment":"The provided language pack is invalid."}],"available":"user"},"stories.readStories":{"comment":"Mark all stories up to a certain ID as read, for a given peer; will emit an {@link RawUpdateReadStories} update to all logged-in sessions.","arguments":{"peer":"The peer whose stories should be marked as read.","max_id":"Mark all stories up to and including this ID as read"},"throws":[{"code":400,"name":"MAX_ID_INVALID","comment":"The provided max ID is invalid."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORIES_NEVER_CREATED","comment":"This peer hasn't ever posted any stories."}],"available":"user"},"stories.getStoryViewsList":{"comment":"Obtain the list of users that have viewed a specific story we posted","arguments":{"flags":"Flags, see TL conditional fields","just_contacts":"Whether to only fetch view reaction/views made by our contacts","reactions_first":"Whether to return {@link RawStoryView} info about users that reacted to the story (i.e. if set, the server will first sort results by view date as usual, and then also additionally sort the list by putting {@link RawStoryView}s with an associated reaction first in the list). Ignored if forwards_first is set.","forwards_first":"If set, returns forwards and reposts first, then reactions, then other views; otherwise returns interactions sorted just by interaction date.","peer":"Peer where the story was posted","q":"Search for specific peers","id":"Story ID","offset":"Offset for pagination, obtained from {@link stories.RawStoryViewsList}.next_offset","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."}],"available":"user"},"stories.getStoriesViews":{"comment":"Obtain info about the view count, forward count, reactions and recent viewers of one or more stories.","arguments":{"peer":"Peer whose stories should be fetched","id":"Story IDs"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},"stories.incrementStoryViews":{"comment":"Increment the view counter of one or more stories.","arguments":{"peer":"Peer where the stories were posted.","id":"IDs of the stories (maximum 200 at a time)."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."}],"available":"user"},"phone.joinGroupCallPresentation":{"comment":"Start screen sharing in a call","arguments":{"call":"The group call","params":"WebRTC parameters"},"throws":[{"code":400,"name":"GROUPCALL_INVALID","comment":"The specified group call is invalid."},{"code":403,"name":"PARTICIPANT_JOIN_MISSING","comment":"Trying to enable a presentation, when the user hasn't joined the Video Chat with {@link phone.RawJoinGroupCallRequest}."}],"available":"user"},"stories.report":{"comment":"Report a story.","arguments":{"peer":"The peer that uploaded the story.","id":"IDs of the stories to report.","option":"Menu option, intially empty","message":"Comment for report moderation"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"stories.exportStoryLink":{"comment":"Generate a story deep link for a specific story","arguments":{"peer":"Peer where the story was posted","id":"Story ID"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."},{"code":400,"name":"USER_PUBLIC_MISSING","comment":"Cannot generate a link to stories posted by a peer without a username."}],"available":"user"},"stories.getAllReadPeerStories":{"comment":"Obtain the latest read story ID for all peers when first logging in, returned as a list of {@link RawUpdateReadStories} updates, see here » for more info.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"stories.getPeerStories":{"comment":"Fetch the full active story list of a specific peer.","arguments":{"peer":"Peer whose stories should be fetched"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"stats.getStoryPublicForwards":{"comment":"Obtain forwards of a story as a message to public chats and reposts by public channels.","arguments":{"peer":"Peer where the story was originally posted","id":"Story ID","offset":"Offset for pagination, from {@link stats.RawPublicForwards}.next_offset.","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"chatlists.exportChatlistInvite":{"comment":"Export a folder », creating a chat folder deep link ».","arguments":{"chatlist":"The folder to export","title":"An optional name for the link","peers":"The list of channels, group and supergroups to share with the link. Basic groups will automatically be converted to supergroups when invoking the method."},"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."},{"code":400,"name":"FILTER_NOT_SUPPORTED","comment":"The specified filter cannot be used in this context."},{"code":400,"name":"INVITES_TOO_MUCH","comment":"The maximum number of per-folder invites specified by the chatlist_invites_limit_default/chatlist_invites_limit_premium client configuration parameters » was reached."},{"code":400,"name":"PEERS_LIST_EMPTY","comment":"The specified list of peers is empty."}],"available":"user"},"phone.saveDefaultGroupCallJoinAs":{"comment":"Set the default peer that will be used to join a group call in a specific dialog.","arguments":{"peer":"The dialog","join_as":"The default peer that will be used to join group calls in this dialog, presenting yourself as a specific user/channel."},"throws":[{"code":400,"name":"JOIN_AS_PEER_INVALID","comment":"The specified peer cannot be used to join a group call."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"stories.activateStealthMode":{"comment":"Activates stories stealth mode, see here » for more info.\n\nWill return an {@link RawUpdateStoriesStealthMode}.","arguments":{"flags":"Flags, see TL conditional fields","past":"Whether to erase views from any stories opened in the past stories_stealth_past_period seconds », as specified by the client configuration.","future":"Whether to hide future story views for the next stories_stealth_future_period seconds », as specified by the client configuration."},"throws":[{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},"stories.getPeerMaxIDs":{"comment":"Get the IDs of the maximum read stories for a set of peers.","arguments":{"id":"Peers"},"available":"user"},"stories.getChatsToSend":{"comment":"Obtain a list of channels where the user can post stories","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"stories.togglePeerStoriesHidden":{"comment":"Hide the active stories of a user, preventing them from being displayed on the action bar on the homescreen, see here » for more info.","arguments":{"peer":"Peer whose stories should be (un)hidden.","hidden":"Whether to hide or unhide stories."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"stories.getStoryReactionsList":{"comment":"Get the reaction and interaction list of a story posted to a channel, along with the sender of each reaction.\n\nCan only be used by channel admins.","arguments":{"flags":"Flags, see TL conditional fields","forwards_first":"If set, returns forwards and reposts first, then reactions, then other views; otherwise returns interactions sorted just by interaction date.","peer":"Channel","id":"Story ID","reaction":"Get only reactions of this type","offset":"Offset for pagination (taken from the next_offset field of the returned stories.StoryReactionsList); empty in the first request.","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"stories.togglePinnedToTop":{"comment":"Pin some stories to the top of the profile, see here » for more info.","arguments":{"peer":"Peer where to pin stories.","id":"IDs of the stories to pin (max stories_pinned_to_top_count_max)."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."}],"available":"user"},"premium.getBoostsList":{"comment":"Obtains info about the boosts that were applied to a certain channel or supergroup (admins only)","arguments":{"flags":"Flags, see TL conditional fields","gifts":"Whether to return only info about boosts received from gift codes and giveaways created by the channel/supergroup »","peer":"The channel/supergroup","offset":"Offset for pagination, obtained from {@link premium.RawBoostsList}.next_offset","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"CHAT_ADMIN_REQUIRED","comment":"You must be an admin in this chat to do this."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"premium.getMyBoosts":{"comment":"Obtain which peers are we currently boosting, and how many boost slots we have left.","available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"premium.applyBoost":{"comment":"Apply one or more boosts » to a peer.","arguments":{"flags":"Flags, see TL conditional fields","slots":"Which boost slots to assign to this peer.","peer":"The peer to boost."},"throws":[{"code":400,"name":"BOOSTS_EMPTY","comment":"No boost slots were specified."},{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"SLOTS_EMPTY","comment":"The specified slot list is empty."}],"available":"user"},"premium.getBoostsStatus":{"comment":"Gets the current number of boosts of a channel/supergroup.","arguments":{"peer":"The peer."},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"user"},"smsjobs.join":{"comment":"Enable SMS jobs (official clients only).","throws":[{"code":400,"name":"NOT_ELIGIBLE","comment":"The current user is not eligible to join the Peer-to-Peer Login Program."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"smsjobs.getStatus":{"comment":"Get SMS jobs status (official clients only).","throws":[{"code":400,"name":"NOT_JOINED","comment":"The current user hasn't joined the Peer-to-Peer Login Program."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"smsjobs.updateSettings":{"comment":"Update SMS job settings (official clients only).","arguments":{"flags":"Flags, see TL conditional fields","allow_international":"Allow international numbers?"},"throws":[{"code":400,"name":"NOT_JOINED","comment":"The current user hasn't joined the Peer-to-Peer Login Program."}],"available":"user"},"smsjobs.getSmsJob":{"comment":"Get info about an SMS job (official clients only).","arguments":{"job_id":"Job ID"},"throws":[{"code":400,"name":"SMSJOB_ID_INVALID","comment":"The specified job ID is invalid."}],"available":"user"},"smsjobs.finishJob":{"comment":"Finish an SMS job (official clients only).","arguments":{"flags":"Flags, see TL conditional fields","job_id":"Job ID.","error":"If failed, the error."},"throws":[{"code":400,"name":"SMSJOB_ID_INVALID","comment":"The specified job ID is invalid."}],"available":"user"},"smsjobs.leave":{"comment":"Disable SMS jobs (official clients only).","throws":[{"code":400,"name":"NOT_JOINED","comment":"The current user hasn't joined the Peer-to-Peer Login Program."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}},"channels.viewSponsoredMessage":{"comment":"Mark a specific sponsored message as read","arguments":{"channel":"Peer","random_id":"Message ID"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."}],"available":"user"},"stories.searchPosts":{"comment":"Globally search for stories using a hashtag or a location media area, see here » for more info on the full flow.\n\nEither hashtag or area must be set when invoking the method.","arguments":{"flags":"Flags, see TL conditional fields","hashtag":"Hashtag (without the #)","area":"A {@link RawMediaAreaGeoPoint} or a {@link RawMediaAreaVenue}.
Note {@link RawMediaAreaGeoPoint} areas may be searched only if they have an associated address.","peer":"If set, returns only stories posted by this peer.","offset":"Offset for pagination: initially an empty string, then the next_offset from the previously returned {@link stories.RawFoundStories}.","limit":"Maximum number of results to return, see pagination"},"throws":[{"code":400,"name":"HASHTAG_INVALID","comment":"The specified hashtag is invalid."}],"available":"user"},"chatlists.leaveChatlist":{"comment":"Delete a folder imported using a chat folder deep link »","arguments":{"chatlist":"Folder ID","peers":"Also leave the specified channels and groups"},"throws":[{"code":400,"name":"FILTER_ID_INVALID","comment":"The specified filter ID is invalid."}],"available":"user"},"premium.getUserBoosts":{"comment":"Returns the lists of boost that were applied to a channel/supergroup by a specific user (admins only)","arguments":{"peer":"The channel/supergroup","user_id":"The user"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."}],"available":"both"},"channels.clickSponsoredMessage":{"comment":"Informs the server that the user has either:","arguments":{"channel":"Channel where the sponsored message was posted","random_id":"Message ID"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."}],"available":"user"},"channels.getSponsoredMessages":{"comment":"Get a list of sponsored messages","arguments":{"channel":"Peer"},"throws":[{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"CHANNEL_PRIVATE","comment":"You haven't joined this channel/supergroup."},{"code":400,"name":"MSG_ID_INVALID","comment":"Invalid message ID provided."}],"available":"user"},"stories.sendReaction":{"comment":"React to a story.","arguments":{"flags":"Flags, see TL conditional fields","add_to_recent":"Whether to add this reaction to the recent reactions list ».","peer":"The peer that sent the story","story_id":"ID of the story to react to","reaction":"Reaction"},"throws":[{"code":400,"name":"PEER_ID_INVALID","comment":"The provided peer id is invalid."},{"code":400,"name":"REACTION_INVALID","comment":"The specified reaction is invalid."},{"code":400,"name":"STORY_ID_EMPTY","comment":"You specified no story IDs."},{"code":400,"name":"STORY_ID_INVALID","comment":"The specified story ID is invalid."}],"available":"user"},"fragment.getCollectibleInfo":{"comment":"Fetch information about a fragment collectible, see here » for more info on the full flow.","arguments":{"collectible":"Collectible to fetch info about."},"throws":[{"code":400,"name":"COLLECTIBLE_INVALID","comment":"The specified collectible is invalid."},{"code":400,"name":"COLLECTIBLE_NOT_FOUND","comment":"The specified collectible could not be found."}],"available":"user"},"channels.reportSponsoredMessage":{"comment":"Report a sponsored message », see here » for more info on the full flow.","arguments":{"channel":"The channel where the sponsored message can be seen.","random_id":"ID of the sponsored message.","option":"Chosen report option, initially an empty string, see here » for more info on the full flow."},"throws":[{"code":400,"name":"AD_EXPIRED","comment":"The ad has expired (too old or not found)."},{"code":400,"name":"CHANNEL_INVALID","comment":"The provided channel is invalid."},{"code":400,"name":"PREMIUM_ACCOUNT_REQUIRED","comment":"A premium account is required to execute this action."}],"available":"user"},"smsjobs.isEligibleToJoin":{"comment":"Check if we can process SMS jobs (official clients only).","throws":[{"code":403,"name":"NOT_ELIGIBLE","comment":"The current user is not eligible to join the Peer-to-Peer Login Program."}],"available":"user","arguments":{"gigagroup":"Is this a broadcast group?"}}},"unions":{"InputChatPhoto":"Defines a new group profile photo.","InputUser":"Defines a user for subsequent interaction.","InputGeoPoint":"Defines a GeoPoint.","InputFileLocation":"Defines the location of a file for download.","InputPeer":"Peer","storage.FileType":"Object describes the file type.","Peer":"Identifier of a private chat, basic group, group or channel (see here » for more info).","InputContact":"Object defines a contact from the user's phone book.","InputFile":"Defines a file uploaded by the client.","InputPhoto":"Defines a photo for further interaction.","Error":"An object containing a query error.","User":"Object defines a user.","ChatFull":"Full info about a channel, supergroup, gigagroup or basic group.","UserStatus":"User online status","ChatPhoto":"Object defines a group profile photo.","UserProfilePhoto":"Object contains info on the user's profile photo.","MessageAction":"Object describing actions connected to a service message.","Dialog":"Chat info.","PhotoSize":"Location of a certain size of a picture","InputMedia":"Defines media content of a message.","Chat":"Object defines a group.","Photo":"Object describes a photo.","GeoPoint":"Object defines a GeoPoint.","auth.ExportedAuthorization":"Exported authorization","auth.Authorization":"Object contains info on user authorization.","InputPeerNotifySettings":"Notifications settings.","PeerNotifySettings":"Notification settings.","PeerSettings":"List of actions that are possible when interacting with this user, to be shown as suggested actions in the chat bar","InputNotifyPeer":"Object defines the set of users and/or groups that generate notifications.","WallPaper":"Object contains info on a wallpaper.","ReportReason":"Report reason","Contact":"A contact of the current user.","Message":"Object describing a message.","ImportedContact":"Object contains info on a successfully imported contact.","UserFull":"Object contains extended user info.","contacts.Contacts":"Info on the current user's contact list.","contacts.Blocked":"Info on users from the current user's black list.","messages.Dialogs":"Object contains a list of chats with messages and auxiliary data.","contacts.ImportedContacts":"Object contains info on successfully imported contacts.","auth.SentCode":"Contains info on a confirmation code message sent via SMS, phone call or Telegram.","messages.Chats":"Object contains list of chats with auxiliary data.","MessageMedia":"Media","messages.ChatFull":"Full info about a channel, supergroup, gigagroup or basic group.","messages.AffectedHistory":"Object contains info on affected part of communication history with the user or in a chat.","MessagesFilter":"Object describes message filter.","updates.Difference":"Occurred changes.","photos.Photos":"Object contains list of photos with auxiliary data.","photos.Photo":"Photo with auxiliary data.","upload.File":"Contains info on file.","ChatParticipant":"Details of a group member.","DcOption":"Information for connection to data center.","Config":"Object contains info on API configuring parameters.","NearestDc":"Object contains info on nearest data center.","help.AppUpdate":"Contains info on app update availability.","InputEncryptedFile":"Object sets encrypted file for attachment","EncryptedChat":"Object contains info on an encrypted chat.","ContactStatus":"Contact status: online / offline.","InputEncryptedChat":"Object sets an encrypted chat ID.","ChatParticipants":"Object contains info on group members.","EncryptedFile":"Seta an encrypted file.","Updates":"Object which is perceived by the client without a call on its part when an event occurs.","Update":"Object contains info on events occurred.","help.Support":"Info about the support user, relevant to the current user.","messages.SentEncryptedMessage":"Contains info on message sent to an encrypted chat.","SendMessageAction":"User actions. Use this to provide users with detailed info about their chat partner's actions: typing or sending attachments of all kinds.","PrivacyKey":"Privacy keys together with privacy rules » indicate what can or can't someone do and are specified by a PrivacyKey constructor, and its input counterpart InputPrivacyKey.\n\nSee the privacy documentation » for more info.","contacts.Found":"Object contains info on users found by name substring and auxiliary data.","InputDocument":"Defines a document for subsequent interaction.","InputPrivacyKey":"Privacy keys together with privacy rules » indicate what can or can't someone do and are specified by a PrivacyKey constructor, and its input counterpart InputPrivacyKey.\n\nSee the privacy documentation » for more info.","NotifyPeer":"Object defines the set of users and/or groups that generate notifications.","InputPrivacyRule":"Privacy rules indicate who can or can't do something and are specified by a PrivacyRule, and its input counterpart InputPrivacyRule.\n\nSee the privacy documentation » for more info.","PrivacyRule":"Privacy rules together with privacy keys indicate what can or can't someone do and are specified by a PrivacyRule constructor, and its input counterpart InputPrivacyRule.\n\nSee the privacy documentation » for more info.","Document":"A document.","messages.DhConfig":"Contains Diffie-Hellman key generation protocol parameters.","account.PrivacyRules":"Privacy rules","DocumentAttribute":"Various possible attributes of a document (used to define if it's a sticker, a GIF, a video, a mask sticker, an image, an audio, and so on)","AccountDaysTTL":"Time-to-live of current account","messages.Messages":"Object contains information on list of messages with auxiliary data.","messages.Stickers":"Stickers","StickerPack":"Stickerpack","messages.AffectedMessages":"Messages affected by changes","WebPage":"Instant View webpage preview","messages.AllStickers":"All stickers","account.Authorizations":"Logged-in sessions","updates.State":"Object contains info on state for further updates.","EncryptedMessage":"Object contains encrypted message.","account.Password":"Configuration for two-factor authorization","account.PasswordInputSettings":"Constructor for setting up a new 2FA SRP password","account.PasswordSettings":"Private info associated to the password info (recovery email, telegram passport info & so on)","help.InviteText":"Object contains info on the text of a message with an invitation.","ReceivedNotifyMessage":"Confirmation of message receipt","auth.PasswordRecovery":"Recovery info of a 2FA password, only for accounts with a recovery email configured.","messages.StickerSet":"Stickerset","BotCommand":"Describes a bot command that can be used in a chat","BotInfo":"Info about bots (available bot commands, etc)","InputStickerSet":"Represents a stickerset","KeyboardButton":"Bot or inline keyboard buttons","KeyboardButtonRow":"Bot or inline keyboard rows","MessageEntity":"Message entities, representing styled text in a message","updates.ChannelDifference":"Contains the difference (new messages) between our local channel state and the remote state","ChatInvite":"Chat invite","contacts.ResolvedPeer":"Peer returned after resolving a @username","InputChannel":"Represents a channel","ChannelMessagesFilter":"Filter for fetching only certain types of channel messages","ChannelParticipant":"Channel participant","ReplyMarkup":"Reply markup for bot and inline keyboards","channels.ChannelParticipant":"Channel participant","help.TermsOfService":"Contains info about the latest telegram Terms Of Service.","messages.SavedGifs":"Saved GIFs","BotInlineResult":"Results of an inline query","InputBotInlineMessage":"Represents a sent inline message from the perspective of a bot","InputBotInlineResult":"Inline bot result","channels.ChannelParticipants":"Channel/supergroup participants","auth.CodeType":"Type of verification code that will be sent next if you call the resendCode method","messages.BotCallbackAnswer":"Callback answer of bot","MessageFwdHeader":"Info about a forwarded message","InlineBotSwitchPM":"The bot requested the user to message them in private","messages.MessageEditData":"Message edit data for media","InputBotInlineMessageID":"Represents a sent inline message from the perspective of a bot","messages.PeerDialogs":"List of dialogs","auth.SentCodeType":"Type of the verification code that was sent","BotInlineMessage":"Inline message","messages.FeaturedStickers":"Featured stickers","TopPeerCategory":"Top peer category","messages.RecentStickers":"Recent stickers","ChannelParticipantsFilter":"Filter for fetching channel participants","TopPeerCategoryPeers":"Top peers by top peer category","contacts.TopPeers":"Top peers","DraftMessage":"Represents a message draft.","messages.ArchivedStickers":"Archived stickers","ExportedChatInvite":"Exported chat invite","MessageRange":"Indicates a range of chat messages","messages.StickerSetInstallResult":"Result of stickerset installation process","ExportedMessageLink":"HTTP link and embed info of channel message","Game":"Indicates an already sent game","InputStickeredMedia":"Represents a media with attached stickers","StickerSetCovered":"Stickerset preview","MaskCoords":"Mask coordinates (if this is a mask sticker, attached to a photo)","InputGame":"A game to send","HighScore":"Game high score","messages.HighScores":"High scores (in games)","DataJSON":"Represent a JSON-encoded object","messages.BotResults":"Result of a query to an inline bot","LabeledPrice":"Labeled pricetag","PaymentSavedCredentials":"Saved payment credentials","Invoice":"Invoice","PaymentCharge":"Charged payment","WebDocument":"Remote document","RichText":"Rich text","PageBlock":"Represents an instant view page element","InputWebDocument":"Specifies a document that will have to be downloaded from the URL by the telegram servers","PhoneCallDiscardReason":"Why was the phone call discarded?","InputWebFileLocation":"Location of remote file","upload.WebFile":"Remote file","payments.PaymentResult":"Payment result","payments.ValidatedRequestedInfo":"Validated requested info","payments.PaymentReceipt":"Payment receipt","InputPaymentCredentials":"Payment credentials","payments.SavedInfo":"Saved payment info","TopPeer":"Top peer","InputStickerSetItem":"Sticker","ShippingOption":"Shipping options","InputPhoneCall":"Phone call","PhoneConnection":"Phone call connection","PhoneCallProtocol":"Phone call protocol","phone.PhoneCall":"Phone call","upload.CdnFile":"Represents the download status of a CDN file","CdnConfig":"Configuration for CDN file downloads.","StickerSet":"Represents a stickerset (stickerpack)","CdnPublicKey":"Public key to use only during handshakes to CDN DCs.","LangPackString":"Language pack string","payments.PaymentForm":"Payment form","LangPackLanguage":"Language pack language","ChannelAdminLogEvent":"An event in a channel admin log","channels.AdminLogResults":"Admin log events","PaymentRequestedInfo":"Requested payment info","PostAddress":"Shipping address","RecentMeUrl":"Recent t.me urls","PopularContact":"Popular contact","ChannelAdminLogEventAction":"Channel admin log event","Authorization":"Represents a logged-in session","InputSingleMedia":"A single media in an album or grouped media sent with {@link messages.RawSendMultiMediaRequest}.","WebAuthorization":"Web authorization","help.RecentMeUrls":"Recent t.me URLs","account.WebAuthorizations":"Web authorizations","FileHash":"Hash of an uploaded file, to be checked for validity after download","InputClientProxy":"Info about an MTProxy used to connect.","DialogPeer":"Peer, or all peers in a folder","InputMessage":"A message","LangPackDifference":"Language pack changes","account.TmpPassword":"Temporary password","ChannelAdminLogEventsFilter":"Filter for fetching events in the channel admin log","SecureFile":"Secure passport file, for more info see the passport docs »","InputSecureFile":"Secure passport file, for more info see the passport docs »","SecureValue":"Secure Telegram Passport value","SecureData":"Secure passport data, for more info see the passport docs »","PhoneCall":"Phone call","SecureValueHash":"Secure value hash","help.TermsOfServiceUpdate":"Update of Telegram's terms of service","InputDialogPeer":"Peer, or all peers in a certain folder","SecureCredentialsEncrypted":"Encrypted secure credentials","SecureValueType":"Secure value type","account.AuthorizationForm":"Authorization form","messages.FoundStickerSets":"Found stickersets","SecurePlainData":"Plaintext verified passport data.","help.DeepLinkInfo":"Contains information about an unsupported deep link »","SavedContact":"Saved contact","account.Takeout":"Takeout info","messages.FavedStickers":"Favorited stickers","SecureSecretSettings":"Telegram passport settings","SecureRequiredType":"Required secure file type","help.PassportConfig":"Telegram passport configuration","PageTableCell":"Represents a table in an instant view table","PasswordKdfAlgo":"Key derivation function to use when generating the password hash for SRP two-factor authorization","PageCaption":"Page caption","PageTableRow":"Table row","JSONValue":"JSON value","InputCheckPasswordSRP":"Constructors for checking the validity of a 2FA SRP password.\n\nSee here » for more info on the 2FA authentication flow for methods that require it, before and after login.","PageListOrderedItem":"Represents an instant view ordered list","PageListItem":"Item in block list","help.SupportName":"Get localized name for support user","PollAnswer":"Indicates a possible answer to a poll.","help.UserInfo":"User info","Poll":"Indicates a poll message","SecurePasswordKdfAlgo":"KDF algorithm to use for computing telegram passport hash","PollAnswerVoters":"How users voted on a certain poll answer","PollResults":"Results of poll","ChatOnlines":"Number of online users in a chat","SecureValueError":"Secure value error","Page":"Instant view page","ChatAdminRights":"Represents the rights of an admin in a channel/supergroup.","InputWallPaper":"Wallpaper","CodeSettings":"Settings for the code type to send","account.WallPapers":"Wallpapers","WallPaperSettings":"Wallpaper rendering information.","PageRelatedArticle":"Related articles","AutoDownloadSettings":"Media autodownload settings","EmojiKeywordsDifference":"New emoji keywords","EmojiKeyword":"Emoji keyword","account.AutoDownloadSettings":"Media autodownload settings","InputSecureValue":"Secure value, for more info see the passport docs »","StatsURL":"URL with chat statistics","account.SentEmailCode":"The email code that was sent","InputAppEvent":"Object contains info about an event that occurred in the application.","UrlAuthResult":"URL authorization result","RestrictionReason":"Restriction reason","ChannelLocation":"Geographical location of supergroup (geogroups)","InputFolderPeer":"Peer in a folder","FolderPeer":"Peer associated to folder","PeerLocated":"Geolocated peer","EmojiURL":"Emoji URL","EmojiLanguage":"Emoji language","Folder":"A folder","JSONObjectValue":"JSON key: value pair","Theme":"Cloud theme","account.Themes":"Installed themes","account.ContentSettings":"Sensitive content settings","auth.LoginToken":"Login token (for QR code login)","messages.InactiveChats":"Inactive chat list","BaseTheme":"Basic theme settings","ThemeSettings":"Theme settings","messages.VotesList":"How users voted in a poll","WebPageAttribute":"Webpage attributes","payments.BankCardData":"Credit card info, provided by the card's bank(s)","messages.SearchCounter":"Number of results that would be returned by a search","DialogFilter":"Dialog filter (folder »)","stats.BroadcastStats":"Channel statistics","StatsAbsValueAndPrev":"Channel statistics value pair","StatsDateRangeDays":"Channel statistics date range","StatsGraph":"Channel statistics graph","StatsPercentValue":"Channel statistics percentage","help.PromoData":"Info about pinned MTProxy or Public Service Announcement peers.","VideoSize":"Represents an animated video thumbnail","InputThemeSettings":"Theme settings","StatsGroupTopAdmin":"Most active admin in a supergroup","StatsGroupTopPoster":"Most active user in a supergroup","StatsGroupTopInviter":"Most active inviter in a supergroup","DialogFilterSuggested":"Suggested dialog filters (folder »)","GlobalPrivacySettings":"Global privacy settings","help.CountryCode":"Country code and phone number pattern of a specific country","help.CountriesList":"Name, ISO code, localized name and phone codes/patterns of all available countries","MessageViews":"View, forward counter + info about replies of a specific message","help.Country":"Name, ISO code, localized name and phone codes/patterns of a specific country","messages.MessageViews":"View, forward counter + info about replies","messages.DiscussionMessage":"Info about a message thread","MessageReplyHeader":"Reply information","ChatBannedRights":"Represents the rights of a normal user in a supergroup/channel/chat.","InputTheme":"Cloud theme","MessageReplies":"Info about post comments (for channels) or message replies (for groups)","PeerBlocked":"Info about a blocked user","InputGroupCall":"Indicates a group call","phone.GroupParticipants":"Info about the participants of a group call or livestream","stats.MessageStats":"Message statistics","GroupCallParticipant":"Info about a group call participant","messages.HistoryImportParsed":"Contains information about a chat export file, generated by a foreign chat app.","InlineQueryPeerType":"Inline query peer type.","messages.AffectedFoundMessages":"Messages found and affected by changes","messages.HistoryImport":"Identifier of a history import session, click here for more info ».","ChatInviteImporter":"When and which user joined the chat using a chat invite","messages.ExportedChatInvite":"Contains info about a chat invite, and eventually a pointer to the newest chat invite.","messages.ExportedChatInvites":"Info about chat invites exported by a certain admin.","ChatAdminWithInvites":"Info about chat invites generated by admins.","messages.ChatInviteImporters":"List of users that imported a chat invitation link.","BankCardOpenUrl":"Credit card info URL provided by the bank","messages.ChatAdminsWithInvites":"Info about chat invites generated by admins.","phone.ExportedGroupCallInvite":"An exported group call invitation.","GroupCallParticipantVideoSourceGroup":"Describes a group of video synchronization source identifiers","messages.CheckedHistoryImportPeer":"Contains a confirmation text to be shown to the user, upon importing chat history, click here for more info ».","phone.GroupCall":"Contains info about a group call, and partial info about its participants.","stickers.SuggestedShortName":"A suggested short name for the specified stickerpack","BotCommandScope":"Represents a scope where the bot commands, specified using {@link bots.RawSetBotCommandsRequest} will be valid.","phone.JoinAsPeers":"A list of peers that can be used to join a group call, presenting yourself as a specific user/channel.","SponsoredMessage":"A sponsored message","account.ResetPasswordResult":"Result of an {@link account.RawResetPasswordRequest} request.","messages.SponsoredMessages":"A set of sponsored messages associated with a channel","SearchResultsCalendarPeriod":"Information about found messages sent on a specific day, used to split the messages in {@link messages.RawSearchResultsCalendar} constructors by days.","messages.SearchResultsCalendar":"Information about found messages sent on a specific day","ReactionCount":"Number of users that reacted with a certain emoji","messages.PeerSettings":"Peer settings","AvailableReaction":"Animations associated with a message reaction","MessageReactions":"Message reactions »","messages.SearchResultsPositions":"Information about sparse positions of messages","SearchResultsPosition":"Information about a message in a specific position","users.UserFull":"Full user information, with attached context peers for reactions","stats.MegagroupStats":"Supergroup statistics","channels.SendAsPeers":"A list of peers that can be used to send messages in a specific group","GroupCall":"A group call","messages.AvailableReactions":"Animations and metadata associated with message reactions »","phone.GroupCallStreamChannels":"Info about RTMP streams in a group call or livestream","MessagePeerReaction":"How a certain peer reacted to the message","AttachMenuBotIconColor":"Represents an attachment menu icon color for bot mini apps »","GroupCallStreamChannel":"Info about an RTMP stream in a group call or livestream","AttachMenuBotIcon":"Represents an attachment menu icon for bot mini apps »","phone.GroupCallStreamRtmpUrl":"RTMP URL and stream key to be used in streaming software","auth.LoggedOut":"Future auth token » to be used on subsequent authorizations","WebViewResult":"Contains the webview URL with appropriate theme and user info parameters added","messages.MessageReactionsList":"List of peers that reacted to a specific message","AttachMenuBotsBot":"Represents a bot mini app that can be launched from the attachment menu »","WebViewMessageSent":"Contains information about an inline message sent by a Web App on behalf of a user.","BotMenuButton":"Indicates the action to execute when pressing the in-UI menu button for bots","AttachMenuBot":"Represents a bot mini app that can be launched from the attachment menu »","account.SavedRingtones":"Contains a list of saved notification sounds","account.SavedRingtone":"Contains information about a saved notification sound","AttachMenuPeerType":"Indicates a supported peer type for a bot mini app attachment menu","InputInvoice":"An invoice","PremiumGiftOption":"Telegram Premium gift option","payments.ExportedInvoice":"Exported invoice","InputStorePaymentPurpose":"Info about a Telegram Premium purchase","messages.TranscribedAudio":"Transcribed text from a voice message","PaymentFormMethod":"Represents a payment method","EmojiStatus":"Emoji status","GroupCallParticipantVideo":"Info about a video stream","ChatReactions":"Available chat reactions","account.EmojiStatuses":"A list of emoji statuses","EmailVerifyPurpose":"Email verification purpose","messages.Reactions":"A set of message reactions","account.EmailVerified":"Email verification status","EmailVerification":"Email verification code or token","PremiumSubscriptionOption":"Telegram Premium subscription option","StickerKeyword":"Keywords for a certain sticker","Reaction":"Message reaction","Username":"Contains information about a username","ForumTopic":"Contains information about a forum topic","MessageExtendedMedia":"Paid media, see here » for more info.","ExportedContactToken":"Describes a temporary profile link.","DefaultHistoryTTL":"Contains info about the default value of the Time-To-Live setting, applied to all new chats.","RequestPeerType":"Filtering criteria to use for the peer selection list shown to the user.","EmojiList":"Represents a list of custom emojis.","messages.EmojiGroups":"Represents a list of emoji categories.","EmojiGroup":"Represents an emoji category.","NotificationSound":"Represents a notification sound","TextWithEntities":"Styled text with message entities","AutoSaveException":"Peer-specific autosave settings","AutoSaveSettings":"Media autosave settings","help.AppConfig":"Contains various client configuration parameters","messages.BotApp":"Contains information about a direct link Mini App","InputChatlist":"Represents a folder","InlineBotWebView":"Specifies an inline mode mini app button, shown on top of the inline query results list.","account.AutoSaveSettings":"Contains media autosave settings","InputBotApp":"Used to fetch information about a direct link Mini App","ReadParticipantDate":"Contains info about when a certain participant has read a message","messages.TranslatedText":"Translated text with entities.","help.PremiumPromo":"Telegram Premium promotion information","chatlists.ExportedChatlistInvite":"Exported chat folder deep link ».","chatlists.ChatlistInvite":"Info about a chat folder deep link ».","chatlists.ChatlistUpdates":"Updated info about a chat folder deep link ».","chatlists.ExportedInvites":"A list of exported chat folder deep links ».","ExportedChatlistInvite":"An exported chat folder deep link ».","MessagePeerVote":"How a user voted in a poll","SendAsPeer":"Indicates a peer that can be used to send messages","StoryItem":"Represents a Telegram Story","bots.BotInfo":"Localized name, about text and description of a bot.","StoryViews":"Aggregated view and reaction information of a story","StoryView":"Story view date and reaction information","stories.StoryViewsList":"Reaction and view counters for a story","StoriesStealthMode":"Story stealth mode status","InputReplyTo":"Contains info about a message or story to reply to.","MediaAreaCoordinates":"Coordinates and size of a clicable rectangular area on top of a story.","stories.StoryViews":"Reaction and view counters for a list of stories","MediaArea":"Represents a story media area »","messages.ForumTopics":"Contains information about multiple forum topics","stories.Stories":"List of stories","stories.PeerStories":"Active story list of a specific peer.","BotApp":"Contains information about a direct link Mini App.","PremiumGiftCodeOption":"Giveaway option.","premium.BoostsList":"List of boosts that were applied to a peer by multiple users.","PrepaidGiveaway":"Contains info about a prepaid giveaway ».","payments.CheckedGiftCode":"Info about a Telegram Premium Giftcode.","payments.GiveawayInfo":"Info about a Telegram Premium Giveaway.","Boost":"Info about one or more boosts applied by a specific user.","MyBoost":"Contains information about a single boost slot ».","messages.WebPage":"Contains an instant view webpage.","stats.StoryStats":"Contains statistics about a story.","StoryFwdHeader":"Contains info about the original poster of a reposted story.","premium.BoostsStatus":"Contains info about the current boost status of a peer.","PublicForward":"Contains info about the forwards of a story as a message to public chats and reposts by public channels.","help.PeerColorSet":"Contains info about a color palette ».","PeerColor":"Represents a color palette ».","help.PeerColorOption":"Contains info about a color palette ».","premium.MyBoosts":"A list of peers we are currently boosting, and how many boost slots we have left.","stories.StoryReactionsList":"List of peers that reacted to a specific story","SavedDialog":"Represents a saved message dialog ».","PostInteractionCounters":"Interaction counters","help.PeerColors":"Contains info about multiple color palettes ».","messages.SavedReactionTags":"List of reaction tag » names assigned by the user.","SavedReactionTag":"Info about a saved message reaction tag ».","OutboxReadDate":"Exact read date of a private message we sent to another user.","stats.PublicForwards":"Contains info about the forwards of a story as a message to public chats and reposts by public channels.","stories.AllStories":"Full list of active (or active and hidden) stories.","smsjobs.Status":"Status","SmsJob":"Info about an SMS job.","ExportedStoryLink":"Represents a story deep link","BusinessWeeklyOpen":"A time interval, indicating the opening hours of a Telegram Business.","BusinessGreetingMessage":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","BusinessWorkHours":"Specifies a set of Telegram Business opening hours.","InputBusinessRecipients":"Specifies the chats that can receive Telegram Business away » and greeting » messages.\n\nIf exclude_selected is set, specifies all chats that cannot receive Telegram Business away » and greeting » messages.","BusinessAwayMessageSchedule":"Specifies when should the Telegram Business away messages be sent.","BusinessRecipients":"Specifies the chats that can receive Telegram Business away » and greeting » messages.","messages.SavedDialogs":"Represents some saved message dialogs ».","InputBusinessAwayMessage":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","BusinessLocation":"Represents the location of a Telegram Business ».","InputBusinessGreetingMessage":"Describes a Telegram Business greeting, automatically sent to new users writing to us in private for the first time, or after a certain inactivity period.","PeerStories":"Stories associated to a peer","help.TimezonesList":"Timezone information that may be used elsewhere in the API, such as to set Telegram Business opening hours ».","messages.QuickReplies":"Info about quick reply shortcuts ».","InputQuickReplyShortcut":"Represents a quick reply shortcut ».","Birthday":"Birthday information for a user.","account.ConnectedBots":"Info about currently connected business bots.","InputBusinessIntro":"Telegram Business introduction ».","messages.DialogFilters":"Folder information","BotBusinessConnection":"Contains info about a bot business connection.","StoryReaction":"How a certain peer reacted to or interacted with a story","smsjobs.EligibilityToJoin":"SMS jobs eligibility","InputCollectible":"Represents a Fragment collectible ».","fragment.CollectibleInfo":"Info about a fragment collectible.","InputBusinessBotRecipients":"Specifies the private chats that a connected business bot » may interact with.","BusinessAwayMessage":"Describes a Telegram Business away message, automatically sent to users writing to us when we're offline, during closing hours, while we're on vacation, or in some other custom time period when we cannot immediately answer to the user.","MissingInvitee":"Info about why a specific user could not be invited ».","ConnectedBot":"Contains info about a connected business bot ».","BusinessBotRecipients":"Specifies the private chats that a connected business bot » may receive messages and interact with.","Timezone":"Timezone information.","contacts.ContactBirthdays":"Birthday information of our contacts.","messages.InvitedUsers":"Contains info about successfully or unsuccessfully invited » users.","InputBusinessChatLink":"Contains info about a business chat deep link » to be created by the current account.","AttachMenuBots":"Represents a list of bot mini apps that can be launched from the attachment menu »","messages.MyStickers":"The list of stickersets owned by the current account ».","BusinessChatLink":"Contains info about a business chat deep link » created by the current account.","account.BusinessChatLinks":"Contains info about business chat deep links » created by the current account.","BroadcastRevenueTransaction":"A channel ad revenue » transaction.","RequestedPeer":"Info about a peer, shared by a user with the currently logged in bot using {@link messages.RawSendBotRequestedPeerRequest}.","stats.BroadcastRevenueTransactions":"Channel ad revenue transactions ».","ReactionsNotifySettings":"Reaction notification settings, see here » for more info.","ContactBirthday":"Birthday information of a contact.","AvailableEffect":"Describes a message effect ».","BroadcastRevenueBalances":"Channel ad revenue balance » information.","stats.BroadcastRevenueStats":"Channel revenue ad statistics, see here » for more info.","FactCheck":"Represents a fact-check » created by an independent fact-checker.","StarsTransactionPeer":"Source of an incoming Telegram Star transaction, or its recipient for outgoing Telegram Star transactions.","account.ResolvedBusinessChatLinks":"Contains info about a single resolved business chat deep link ».","StarsTransaction":"Represents a Telegram Stars transaction ».","QuickReply":"A quick reply shortcut.","StarsTopupOption":"Telegram Stars topup option.","payments.StarsStatus":"Info about the current Telegram Star subscriptions, balance and transaction history ».","stories.FoundStories":"Stories found using global story search ».","FoundStory":"A story found using global story search ».","SponsoredMessageReportOption":"A report option for a sponsored message ».","GeoPointAddress":"Address optionally associated to a {@link RawGeoPoint}.","StarsRevenueStatus":"Describes Telegram Star revenue balances ».","BusinessIntro":"Telegram Business introduction ».","messages.AvailableEffects":"Full list of usable animated message effects ».","bots.PreviewInfo":"Contains info about Main Mini App previews, see here » for more info.","payments.StarsRevenueAdsAccountUrl":"Contains a URL leading to a page where the user will be able to place ads for the channel/bot, paying using Telegram Stars.","BotPreviewMedia":"Represents a Main Mini App preview media, see here » for more info.","StarsSubscriptionPricing":"Pricing of a Telegram Star subscription ».","bots.PopularAppBots":"Popular Main Mini Apps, to be used in the apps tab of global search ».","StarsGiftOption":"Telegram Stars gift option.","InputStarsTransaction":"Used to fetch info about a Telegram Star transaction ».","StarsSubscription":"Represents a Telegram Star subscription ».","channels.SponsoredMessageReportResult":"Status of the method call used to report a sponsored message ».","MessageReactor":"Info about a user in the paid Star reactions leaderboard for a message.","StarsGiveawayWinnersOption":"Represents a possible option for the number of winners in a star giveaway","UserStarGift":"Represents a gift, displayed on a user's profile page.","payments.UserStarGifts":"Gifts displayed on a user's profile.","ReportResult":"Represents a report menu or result","payments.StarGifts":"Available gifts ».","StarsGiveawayOption":"Contains info about a Telegram Star giveaway option.","payments.StarsRevenueWithdrawalUrl":"Contains the URL to use to withdraw Telegram Star revenue.","ReactionNotificationsFrom":"Reaction notification settings","MessageReportOption":"Report menu option","payments.StarsRevenueStats":"Star revenue statistics, see here » for more info.\n\nNote that all balances and currency amounts and graph values are in Stars.","stats.BroadcastRevenueWithdrawalUrl":"Contains the URL to use to withdraw channel ad revenue.","StarGift":"Represents a star gift, see here » for more info."}} \ No newline at end of file diff --git a/packages/tl/package.json b/packages/tl/package.json index 60118fe1..64c8dcf8 100644 --- a/packages/tl/package.json +++ b/packages/tl/package.json @@ -1,6 +1,6 @@ { "name": "@mtcute/tl", - "version": "189.0.0", + "version": "194.0.0", "description": "TL schema used for mtcute", "author": "alina sireneva ", "license": "MIT",