me.alllex.tbot.api.model.TryMethods.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tbot-api-jvm Show documentation
Show all versions of tbot-api-jvm Show documentation
Fluent Kotlin bindings for Telegram Bot API
The newest version!
package me.alllex.tbot.api.model
import me.alllex.tbot.api.client.*
/**
* Use this method to receive incoming updates using long polling (wiki). Returns an Array of Update objects.
*
* @param offset Identifier of the first update to be returned. Must be greater by one than the highest among the identifiers of previously received updates. By default, updates starting with the earliest unconfirmed update are returned. An update is considered confirmed as soon as getUpdates is called with an offset higher than its update_id. The negative offset can be specified to retrieve updates starting from -offset update from the end of the updates queue. All previous updates will be forgotten.
* @param limit Limits the number of updates to be retrieved. Values between 1-100 are accepted. Defaults to 100.
* @param timeout Timeout in seconds for long polling. Defaults to 0, i.e. usual short polling. Should be positive, short polling should be used for testing purposes only.
* @param allowedUpdates A JSON-serialized list of the update types you want your bot to receive. For example, specify ["message", "edited_channel_post", "callback_query"] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member, message_reaction, and message_reaction_count (default). If not specified, the previous setting will be used. Please note that this parameter doesn't affect updates created before the call to the getUpdates, so unwanted updates may be received for a short period of time.
*/
suspend fun TelegramBotApiClient.tryGetUpdates(
offset: Long? = null,
limit: Long? = null,
timeout: Seconds? = null,
allowedUpdates: List? = null,
): TelegramResponse> =
tryGetUpdates(GetUpdatesRequest(offset, limit, timeout, allowedUpdates))
/**
* Use this method to specify a URL and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified URL, containing a JSON-serialized Update. In case of an unsuccessful request, we will give up after a reasonable amount of attempts. Returns True on success.
*
* If you'd like to make sure that the webhook was set by you, you can specify secret data in the parameter secret_token. If specified, the request will contain a header “X-Telegram-Bot-Api-Secret-Token” with the secret token as content.
*
* @param url HTTPS URL to send updates to. Use an empty string to remove webhook integration
* @param certificate Upload your public key certificate so that the root certificate in use can be checked. See our self-signed guide for details.
* @param ipAddress The fixed IP address which will be used to send webhook requests instead of the IP address resolved through DNS
* @param maxConnections The maximum allowed number of simultaneous HTTPS connections to the webhook for update delivery, 1-100. Defaults to 40. Use lower values to limit the load on your bot's server, and higher values to increase your bot's throughput.
* @param allowedUpdates A JSON-serialized list of the update types you want your bot to receive. For example, specify ["message", "edited_channel_post", "callback_query"] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member, message_reaction, and message_reaction_count (default). If not specified, the previous setting will be used. Please note that this parameter doesn't affect updates created before the call to the setWebhook, so unwanted updates may be received for a short period of time.
* @param dropPendingUpdates Pass True to drop all pending updates
* @param secretToken A secret token to be sent in a header “X-Telegram-Bot-Api-Secret-Token” in every webhook request, 1-256 characters. Only characters A-Z, a-z, 0-9, _ and - are allowed. The header is useful to ensure that the request comes from a webhook set by you.
*/
suspend fun TelegramBotApiClient.trySetWebhook(
url: String,
certificate: String? = null,
ipAddress: String? = null,
maxConnections: Long? = null,
allowedUpdates: List? = null,
dropPendingUpdates: Boolean? = null,
secretToken: String? = null,
): TelegramResponse =
trySetWebhook(SetWebhookRequest(url, certificate, ipAddress, maxConnections, allowedUpdates, dropPendingUpdates, secretToken))
/**
* Use this method to remove webhook integration if you decide to switch back to getUpdates. Returns True on success.
*
* @param dropPendingUpdates Pass True to drop all pending updates
*/
suspend fun TelegramBotApiClient.tryDeleteWebhook(
dropPendingUpdates: Boolean? = null,
): TelegramResponse =
tryDeleteWebhook(DeleteWebhookRequest(dropPendingUpdates))
/**
* Use this method to send text messages. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param text Text of the message to be sent, 1-4096 characters after entities parsing
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param parseMode Mode for parsing entities in the message text. See formatting options for more details.
* @param entities A JSON-serialized list of special entities that appear in message text, which can be specified instead of parse_mode
* @param linkPreviewOptions Link preview generation options for the message
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendMessage(
chatId: ChatId,
text: String,
messageThreadId: MessageThreadId? = null,
parseMode: ParseMode? = null,
entities: List? = null,
linkPreviewOptions: LinkPreviewOptions? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendMessage(SendMessageRequest(chatId, text, messageThreadId, parseMode, entities, linkPreviewOptions, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to forward messages of any kind. Service messages and messages with protected content can't be forwarded. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param fromChatId Unique identifier for the chat where the original message was sent (or channel username in the format @channelusername)
* @param messageId Message identifier in the chat specified in from_chat_id
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the forwarded message from forwarding and saving
*/
suspend fun TelegramBotApiClient.tryForwardMessage(
chatId: ChatId,
fromChatId: ChatId,
messageId: MessageId,
messageThreadId: MessageThreadId? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
): TelegramResponse =
tryForwardMessage(ForwardMessageRequest(chatId, fromChatId, messageId, messageThreadId, disableNotification, protectContent))
/**
* Use this method to forward multiple messages of any kind. If some of the specified messages can't be found or forwarded, they are skipped. Service messages and messages with protected content can't be forwarded. Album grouping is kept for forwarded messages. On success, an array of MessageId of the sent messages is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param fromChatId Unique identifier for the chat where the original messages were sent (or channel username in the format @channelusername)
* @param messageIds A JSON-serialized list of 1-100 identifiers of messages in the chat from_chat_id to forward. The identifiers must be specified in a strictly increasing order.
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param disableNotification Sends the messages silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the forwarded messages from forwarding and saving
*/
suspend fun TelegramBotApiClient.tryForwardMessages(
chatId: ChatId,
fromChatId: ChatId,
messageIds: List,
messageThreadId: MessageThreadId? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
): TelegramResponse> =
tryForwardMessages(ForwardMessagesRequest(chatId, fromChatId, messageIds, messageThreadId, disableNotification, protectContent))
/**
* Use this method to copy messages of any kind. Service messages, paid media messages, giveaway messages, giveaway winners messages, and invoice messages can't be copied. A quiz poll can be copied only if the value of the field correct_option_id is known to the bot. The method is analogous to the method forwardMessage, but the copied message doesn't have a link to the original message. Returns the MessageId of the sent message on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param fromChatId Unique identifier for the chat where the original message was sent (or channel username in the format @channelusername)
* @param messageId Message identifier in the chat specified in from_chat_id
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param caption New caption for media, 0-1024 characters after entities parsing. If not specified, the original caption is kept
* @param parseMode Mode for parsing entities in the new caption. See formatting options for more details.
* @param captionEntities A JSON-serialized list of special entities that appear in the new caption, which can be specified instead of parse_mode
* @param showCaptionAboveMedia Pass True, if the caption must be shown above the message media. Ignored if a new caption isn't specified.
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
*/
suspend fun TelegramBotApiClient.tryCopyMessage(
chatId: ChatId,
fromChatId: ChatId,
messageId: MessageId,
messageThreadId: MessageThreadId? = null,
caption: String? = null,
parseMode: ParseMode? = null,
captionEntities: List? = null,
showCaptionAboveMedia: Boolean? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
): TelegramResponse =
tryCopyMessage(CopyMessageRequest(chatId, fromChatId, messageId, messageThreadId, caption, parseMode, captionEntities, showCaptionAboveMedia, disableNotification, protectContent, replyParameters, replyMarkup))
/**
* Use this method to copy messages of any kind. If some of the specified messages can't be found or copied, they are skipped. Service messages, paid media messages, giveaway messages, giveaway winners messages, and invoice messages can't be copied. A quiz poll can be copied only if the value of the field correct_option_id is known to the bot. The method is analogous to the method forwardMessages, but the copied messages don't have a link to the original message. Album grouping is kept for copied messages. On success, an array of MessageId of the sent messages is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param fromChatId Unique identifier for the chat where the original messages were sent (or channel username in the format @channelusername)
* @param messageIds A JSON-serialized list of 1-100 identifiers of messages in the chat from_chat_id to copy. The identifiers must be specified in a strictly increasing order.
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param disableNotification Sends the messages silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent messages from forwarding and saving
* @param removeCaption Pass True to copy the messages without their captions
*/
suspend fun TelegramBotApiClient.tryCopyMessages(
chatId: ChatId,
fromChatId: ChatId,
messageIds: List,
messageThreadId: MessageThreadId? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
removeCaption: Boolean? = null,
): TelegramResponse> =
tryCopyMessages(CopyMessagesRequest(chatId, fromChatId, messageIds, messageThreadId, disableNotification, protectContent, removeCaption))
/**
* Use this method to send photos. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param photo Photo to send. Pass a file_id as String to send a photo that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a photo from the Internet, or upload a new photo using multipart/form-data. The photo must be at most 10 MB in size. The photo's width and height must not exceed 10000 in total. Width and height ratio must be at most 20. More information on Sending Files »
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param caption Photo caption (may also be used when resending photos by file_id), 0-1024 characters after entities parsing
* @param parseMode Mode for parsing entities in the photo caption. See formatting options for more details.
* @param captionEntities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode
* @param showCaptionAboveMedia Pass True, if the caption must be shown above the message media
* @param hasSpoiler Pass True if the photo needs to be covered with a spoiler animation
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendPhoto(
chatId: ChatId,
photo: String,
messageThreadId: MessageThreadId? = null,
caption: String? = null,
parseMode: ParseMode? = null,
captionEntities: List? = null,
showCaptionAboveMedia: Boolean? = null,
hasSpoiler: Boolean? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendPhoto(SendPhotoRequest(chatId, photo, messageThreadId, caption, parseMode, captionEntities, showCaptionAboveMedia, hasSpoiler, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to send audio files, if you want Telegram clients to display them in the music player. Your audio must be in the .MP3 or .M4A format. On success, the sent Message is returned. Bots can currently send audio files of up to 50 MB in size, this limit may be changed in the future.
*
* For sending voice messages, use the sendVoice method instead.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param audio Audio file to send. Pass a file_id as String to send an audio file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get an audio file from the Internet, or upload a new one using multipart/form-data. More information on Sending Files »
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param caption Audio caption, 0-1024 characters after entities parsing
* @param parseMode Mode for parsing entities in the audio caption. See formatting options for more details.
* @param captionEntities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode
* @param duration Duration of the audio in seconds
* @param performer Performer
* @param title Track name
* @param thumbnail Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://” if the thumbnail was uploaded using multipart/form-data under . More information on Sending Files »
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendAudio(
chatId: ChatId,
audio: String,
messageThreadId: MessageThreadId? = null,
caption: String? = null,
parseMode: ParseMode? = null,
captionEntities: List? = null,
duration: Seconds? = null,
performer: String? = null,
title: String? = null,
thumbnail: String? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendAudio(SendAudioRequest(chatId, audio, messageThreadId, caption, parseMode, captionEntities, duration, performer, title, thumbnail, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to send general files. On success, the sent Message is returned. Bots can currently send files of any type of up to 50 MB in size, this limit may be changed in the future.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param document File to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. More information on Sending Files »
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param thumbnail Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://” if the thumbnail was uploaded using multipart/form-data under . More information on Sending Files »
* @param caption Document caption (may also be used when resending documents by file_id), 0-1024 characters after entities parsing
* @param parseMode Mode for parsing entities in the document caption. See formatting options for more details.
* @param captionEntities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode
* @param disableContentTypeDetection Disables automatic server-side content type detection for files uploaded using multipart/form-data
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendDocument(
chatId: ChatId,
document: String,
messageThreadId: MessageThreadId? = null,
thumbnail: String? = null,
caption: String? = null,
parseMode: ParseMode? = null,
captionEntities: List? = null,
disableContentTypeDetection: Boolean? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendDocument(SendDocumentRequest(chatId, document, messageThreadId, thumbnail, caption, parseMode, captionEntities, disableContentTypeDetection, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to send video files, Telegram clients support MPEG4 videos (other formats may be sent as Document). On success, the sent Message is returned. Bots can currently send video files of up to 50 MB in size, this limit may be changed in the future.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param video Video to send. Pass a file_id as String to send a video that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a video from the Internet, or upload a new video using multipart/form-data. More information on Sending Files »
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param duration Duration of sent video in seconds
* @param width Video width
* @param height Video height
* @param thumbnail Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://” if the thumbnail was uploaded using multipart/form-data under . More information on Sending Files »
* @param caption Video caption (may also be used when resending videos by file_id), 0-1024 characters after entities parsing
* @param parseMode Mode for parsing entities in the video caption. See formatting options for more details.
* @param captionEntities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode
* @param showCaptionAboveMedia Pass True, if the caption must be shown above the message media
* @param hasSpoiler Pass True if the video needs to be covered with a spoiler animation
* @param supportsStreaming Pass True if the uploaded video is suitable for streaming
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendVideo(
chatId: ChatId,
video: String,
messageThreadId: MessageThreadId? = null,
duration: Seconds? = null,
width: Long? = null,
height: Long? = null,
thumbnail: String? = null,
caption: String? = null,
parseMode: ParseMode? = null,
captionEntities: List? = null,
showCaptionAboveMedia: Boolean? = null,
hasSpoiler: Boolean? = null,
supportsStreaming: Boolean? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendVideo(SendVideoRequest(chatId, video, messageThreadId, duration, width, height, thumbnail, caption, parseMode, captionEntities, showCaptionAboveMedia, hasSpoiler, supportsStreaming, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to send animation files (GIF or H.264/MPEG-4 AVC video without sound). On success, the sent Message is returned. Bots can currently send animation files of up to 50 MB in size, this limit may be changed in the future.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param animation Animation to send. Pass a file_id as String to send an animation that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get an animation from the Internet, or upload a new animation using multipart/form-data. More information on Sending Files »
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param duration Duration of sent animation in seconds
* @param width Animation width
* @param height Animation height
* @param thumbnail Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://” if the thumbnail was uploaded using multipart/form-data under . More information on Sending Files »
* @param caption Animation caption (may also be used when resending animation by file_id), 0-1024 characters after entities parsing
* @param parseMode Mode for parsing entities in the animation caption. See formatting options for more details.
* @param captionEntities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode
* @param showCaptionAboveMedia Pass True, if the caption must be shown above the message media
* @param hasSpoiler Pass True if the animation needs to be covered with a spoiler animation
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendAnimation(
chatId: ChatId,
animation: String,
messageThreadId: MessageThreadId? = null,
duration: Seconds? = null,
width: Long? = null,
height: Long? = null,
thumbnail: String? = null,
caption: String? = null,
parseMode: ParseMode? = null,
captionEntities: List? = null,
showCaptionAboveMedia: Boolean? = null,
hasSpoiler: Boolean? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendAnimation(SendAnimationRequest(chatId, animation, messageThreadId, duration, width, height, thumbnail, caption, parseMode, captionEntities, showCaptionAboveMedia, hasSpoiler, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to send audio files, if you want Telegram clients to display the file as a playable voice message. For this to work, your audio must be in an .OGG file encoded with OPUS, or in .MP3 format, or in .M4A format (other formats may be sent as Audio or Document). On success, the sent Message is returned. Bots can currently send voice messages of up to 50 MB in size, this limit may be changed in the future.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param voice Audio file to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. More information on Sending Files »
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param caption Voice message caption, 0-1024 characters after entities parsing
* @param parseMode Mode for parsing entities in the voice message caption. See formatting options for more details.
* @param captionEntities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode
* @param duration Duration of the voice message in seconds
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendVoice(
chatId: ChatId,
voice: String,
messageThreadId: MessageThreadId? = null,
caption: String? = null,
parseMode: ParseMode? = null,
captionEntities: List? = null,
duration: Seconds? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendVoice(SendVoiceRequest(chatId, voice, messageThreadId, caption, parseMode, captionEntities, duration, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* As of v.4.0, Telegram clients support rounded square MPEG4 videos of up to 1 minute long. Use this method to send video messages. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param videoNote Video note to send. Pass a file_id as String to send a video note that exists on the Telegram servers (recommended) or upload a new video using multipart/form-data. More information on Sending Files ». Sending video notes by a URL is currently unsupported
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param duration Duration of sent video in seconds
* @param length Video width and height, i.e. diameter of the video message
* @param thumbnail Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://” if the thumbnail was uploaded using multipart/form-data under . More information on Sending Files »
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendVideoNote(
chatId: ChatId,
videoNote: String,
messageThreadId: MessageThreadId? = null,
duration: Seconds? = null,
length: Long? = null,
thumbnail: String? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendVideoNote(SendVideoNoteRequest(chatId, videoNote, messageThreadId, duration, length, thumbnail, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to send paid media. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername). If the chat is a channel, all Telegram Star proceeds from this media will be credited to the chat's balance. Otherwise, they will be credited to the bot's balance.
* @param starCount The number of Telegram Stars that must be paid to buy access to the media
* @param media A JSON-serialized array describing the media to be sent; up to 10 items
* @param caption Media caption, 0-1024 characters after entities parsing
* @param parseMode Mode for parsing entities in the media caption. See formatting options for more details.
* @param captionEntities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode
* @param showCaptionAboveMedia Pass True, if the caption must be shown above the message media
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendPaidMedia(
chatId: ChatId,
starCount: Long,
media: List,
caption: String? = null,
parseMode: ParseMode? = null,
captionEntities: List? = null,
showCaptionAboveMedia: Boolean? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendPaidMedia(SendPaidMediaRequest(chatId, starCount, media, caption, parseMode, captionEntities, showCaptionAboveMedia, disableNotification, protectContent, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to send a group of photos, videos, documents or audios as an album. Documents and audio files can be only grouped in an album with messages of the same type. On success, an array of Messages that were sent is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param media A JSON-serialized array describing messages to be sent, must include 2-10 items
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param disableNotification Sends messages silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent messages from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendMediaGroup(
chatId: ChatId,
media: List,
messageThreadId: MessageThreadId? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse> =
trySendMediaGroup(SendMediaGroupRequest(chatId, media, messageThreadId, disableNotification, protectContent, messageEffectId, replyParameters, businessConnectionId))
/**
* Use this method to send point on the map. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param latitude Latitude of the location
* @param longitude Longitude of the location
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param horizontalAccuracy The radius of uncertainty for the location, measured in meters; 0-1500
* @param livePeriod Period in seconds during which the location will be updated (see Live Locations, should be between 60 and 86400, or 0x7FFFFFFF for live locations that can be edited indefinitely.
* @param heading For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.
* @param proximityAlertRadius For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendLocation(
chatId: ChatId,
latitude: Double,
longitude: Double,
messageThreadId: MessageThreadId? = null,
horizontalAccuracy: Double? = null,
livePeriod: Long? = null,
heading: Long? = null,
proximityAlertRadius: Long? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendLocation(SendLocationRequest(chatId, latitude, longitude, messageThreadId, horizontalAccuracy, livePeriod, heading, proximityAlertRadius, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to send information about a venue. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param latitude Latitude of the venue
* @param longitude Longitude of the venue
* @param title Name of the venue
* @param address Address of the venue
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param foursquareId Foursquare identifier of the venue
* @param foursquareType Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.)
* @param googlePlaceId Google Places identifier of the venue
* @param googlePlaceType Google Places type of the venue. (See supported types.)
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendVenue(
chatId: ChatId,
latitude: Double,
longitude: Double,
title: String,
address: String,
messageThreadId: MessageThreadId? = null,
foursquareId: String? = null,
foursquareType: String? = null,
googlePlaceId: String? = null,
googlePlaceType: String? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendVenue(SendVenueRequest(chatId, latitude, longitude, title, address, messageThreadId, foursquareId, foursquareType, googlePlaceId, googlePlaceType, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to send phone contacts. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param phoneNumber Contact's phone number
* @param firstName Contact's first name
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param lastName Contact's last name
* @param vcard Additional data about the contact in the form of a vCard, 0-2048 bytes
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendContact(
chatId: ChatId,
phoneNumber: String,
firstName: String,
messageThreadId: MessageThreadId? = null,
lastName: String? = null,
vcard: String? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendContact(SendContactRequest(chatId, phoneNumber, firstName, messageThreadId, lastName, vcard, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to send a native poll. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param question Poll question, 1-300 characters
* @param options A JSON-serialized list of 2-10 answer options
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param questionParseMode Mode for parsing entities in the question. See formatting options for more details. Currently, only custom emoji entities are allowed
* @param questionEntities A JSON-serialized list of special entities that appear in the poll question. It can be specified instead of question_parse_mode
* @param isAnonymous True, if the poll needs to be anonymous, defaults to True
* @param type Poll type, “quiz” or “regular”, defaults to “regular”
* @param allowsMultipleAnswers True, if the poll allows multiple answers, ignored for polls in quiz mode, defaults to False
* @param correctOptionId 0-based identifier of the correct answer option, required for polls in quiz mode
* @param explanation Text that is shown when a user chooses an incorrect answer or taps on the lamp icon in a quiz-style poll, 0-200 characters with at most 2 line feeds after entities parsing
* @param explanationParseMode Mode for parsing entities in the explanation. See formatting options for more details.
* @param explanationEntities A JSON-serialized list of special entities that appear in the poll explanation. It can be specified instead of explanation_parse_mode
* @param openPeriod Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date.
* @param closeDate Point in time (Unix timestamp) 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 open_period.
* @param isClosed Pass True if the poll needs to be immediately closed. This can be useful for poll preview.
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendPoll(
chatId: ChatId,
question: String,
options: List,
messageThreadId: MessageThreadId? = null,
questionParseMode: String? = null,
questionEntities: List? = null,
isAnonymous: Boolean? = null,
type: String? = null,
allowsMultipleAnswers: Boolean? = null,
correctOptionId: Long? = null,
explanation: String? = null,
explanationParseMode: String? = null,
explanationEntities: List? = null,
openPeriod: Seconds? = null,
closeDate: UnixTimestamp? = null,
isClosed: Boolean? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendPoll(SendPollRequest(chatId, question, options, messageThreadId, questionParseMode, questionEntities, isAnonymous, type, allowsMultipleAnswers, correctOptionId, explanation, explanationParseMode, explanationEntities, openPeriod, closeDate, isClosed, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to send an animated emoji that will display a random value. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param emoji Emoji on which the dice throw animation is based. Currently, must be one of “”, “”, “”, “”, “”, or “”. Dice can have values 1-6 for “”, “” and “”, values 1-5 for “” and “”, and values 1-64 for “”. Defaults to “”
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendDice(
chatId: ChatId,
messageThreadId: MessageThreadId? = null,
emoji: String? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendDice(SendDiceRequest(chatId, messageThreadId, emoji, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method when you need to tell the user that something is happening on the bot's side. The status is set for 5 seconds or less (when a message arrives from your bot, Telegram clients clear its typing status). Returns True on success.
*
* Example: The ImageBot needs some time to process a request and upload the image. Instead of sending a text message along the lines of “Retrieving image, please wait…”, the bot may use sendChatAction with action = upload_photo. The user will see a “sending photo” status for the bot.
*
* We only recommend using this method when a response from the bot will take a noticeable amount of time to arrive.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param action Type of action to broadcast. Choose one, depending on what the user is about to receive: typing for text messages, upload_photo for photos, record_video or upload_video for videos, record_voice or upload_voice for voice notes, upload_document for general files, choose_sticker for stickers, find_location for location data, record_video_note or upload_video_note for video notes.
* @param messageThreadId Unique identifier for the target message thread; for supergroups only
* @param businessConnectionId Unique identifier of the business connection on behalf of which the action will be sent
*/
suspend fun TelegramBotApiClient.trySendChatAction(
chatId: ChatId,
action: String,
messageThreadId: MessageThreadId? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendChatAction(SendChatActionRequest(chatId, action, messageThreadId, businessConnectionId))
/**
* Use this method to change the chosen reactions on a message. Service messages can't be reacted to. Automatically forwarded messages from a channel to its discussion group have the same available reactions as messages in the channel. Bots can't use paid reactions. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageId Identifier of the target message. If the message belongs to a media group, the reaction is set to the first non-deleted message in the group instead.
* @param reaction A JSON-serialized list of reaction types to set on the message. Currently, as non-premium users, bots can set up to one reaction per message. A custom emoji reaction can be used if it is either already present on the message or explicitly allowed by chat administrators. Paid reactions can't be used by bots.
* @param isBig Pass True to set the reaction with a big animation
*/
suspend fun TelegramBotApiClient.trySetMessageReaction(
chatId: ChatId,
messageId: MessageId,
reaction: List? = null,
isBig: Boolean? = null,
): TelegramResponse =
trySetMessageReaction(SetMessageReactionRequest(chatId, messageId, reaction, isBig))
/**
* Use this method to get a list of profile pictures for a user. Returns a UserProfilePhotos object.
*
* @param userId Unique identifier of the target user
* @param offset Sequential number of the first photo to be returned. By default, all photos are returned.
* @param limit Limits the number of photos to be retrieved. Values between 1-100 are accepted. Defaults to 100.
*/
suspend fun TelegramBotApiClient.tryGetUserProfilePhotos(
userId: UserId,
offset: Long? = null,
limit: Long? = null,
): TelegramResponse =
tryGetUserProfilePhotos(GetUserProfilePhotosRequest(userId, offset, limit))
/**
* Use this method to get basic information about a file and prepare it for downloading. For the moment, bots can download files of up to 20MB in size. On success, a File object is returned. The file can then be downloaded via the link https://api.telegram.org/file/bot/, where is taken from the response. It is guaranteed that the link will be valid for at least 1 hour. When the link expires, a new one can be requested by calling getFile again.
*
* @param fileId File identifier to get information about
*/
suspend fun TelegramBotApiClient.tryGetFile(
fileId: FileId,
): TelegramResponse =
tryGetFile(GetFileRequest(fileId))
/**
* Use this method to ban a user in a group, a supergroup or a channel. In the case of supergroups and channels, the user will not be able to return to the chat on their own using invite links, etc., unless unbanned first. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target group or username of the target supergroup or channel (in the format @channelusername)
* @param userId Unique identifier of the target user
* @param untilDate Date when the user will be unbanned; Unix time. If user is banned for more than 366 days or less than 30 seconds from the current time they are considered to be banned forever. Applied for supergroups and channels only.
* @param revokeMessages Pass True to delete all messages from the chat for the user that is being removed. If False, the user will be able to see messages in the group that were sent before the user was removed. Always True for supergroups and channels.
*/
suspend fun TelegramBotApiClient.tryBanChatMember(
chatId: ChatId,
userId: UserId,
untilDate: UnixTimestamp? = null,
revokeMessages: Boolean? = null,
): TelegramResponse =
tryBanChatMember(BanChatMemberRequest(chatId, userId, untilDate, revokeMessages))
/**
* Use this method to unban a previously banned user in a supergroup or channel. The user will not return to the group or channel automatically, but will be able to join via link, etc. The bot must be an administrator for this to work. By default, this method guarantees that after the call the user is not a member of the chat, but will be able to join it. So if the user is a member of the chat they will also be removed from the chat. If you don't want this, use the parameter only_if_banned. Returns True on success.
*
* @param chatId Unique identifier for the target group or username of the target supergroup or channel (in the format @channelusername)
* @param userId Unique identifier of the target user
* @param onlyIfBanned Do nothing if the user is not banned
*/
suspend fun TelegramBotApiClient.tryUnbanChatMember(
chatId: ChatId,
userId: UserId,
onlyIfBanned: Boolean? = null,
): TelegramResponse =
tryUnbanChatMember(UnbanChatMemberRequest(chatId, userId, onlyIfBanned))
/**
* Use this method to restrict a user in a supergroup. The bot must be an administrator in the supergroup for this to work and must have the appropriate administrator rights. Pass True for all permissions to lift restrictions from a user. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
* @param userId Unique identifier of the target user
* @param permissions A JSON-serialized object for new user permissions
* @param useIndependentChatPermissions Pass True if chat permissions are set independently. Otherwise, the can_send_other_messages and can_add_web_page_previews permissions will imply the can_send_messages, can_send_audios, can_send_documents, can_send_photos, can_send_videos, can_send_video_notes, and can_send_voice_notes permissions; the can_send_polls permission will imply the can_send_messages permission.
* @param untilDate Date when restrictions will be lifted for the user; Unix time. If user is restricted for more than 366 days or less than 30 seconds from the current time, they are considered to be restricted forever
*/
suspend fun TelegramBotApiClient.tryRestrictChatMember(
chatId: ChatId,
userId: UserId,
permissions: ChatPermissions,
useIndependentChatPermissions: Boolean? = null,
untilDate: UnixTimestamp? = null,
): TelegramResponse =
tryRestrictChatMember(RestrictChatMemberRequest(chatId, userId, permissions, useIndependentChatPermissions, untilDate))
/**
* Use this method to promote or demote a user in a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Pass False for all boolean parameters to demote a user. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param userId Unique identifier of the target user
* @param isAnonymous Pass True if the administrator's presence in the chat is hidden
* @param canManageChat Pass True if the administrator can access the chat event log, get boost list, see hidden supergroup and channel members, report spam messages and ignore slow mode. Implied by any other administrator privilege.
* @param canDeleteMessages Pass True if the administrator can delete messages of other users
* @param canManageVideoChats Pass True if the administrator can manage video chats
* @param canRestrictMembers Pass True if the administrator can restrict, ban or unban chat members, or access supergroup statistics
* @param canPromoteMembers Pass True if the administrator can add new administrators with a subset of their own privileges or demote administrators that they have promoted, directly or indirectly (promoted by administrators that were appointed by him)
* @param canChangeInfo Pass True if the administrator can change chat title, photo and other settings
* @param canInviteUsers Pass True if the administrator can invite new users to the chat
* @param canPostStories Pass True if the administrator can post stories to the chat
* @param canEditStories Pass True if the administrator can edit stories posted by other users, post stories to the chat page, pin chat stories, and access the chat's story archive
* @param canDeleteStories Pass True if the administrator can delete stories posted by other users
* @param canPostMessages Pass True if the administrator can post messages in the channel, or access channel statistics; for channels only
* @param canEditMessages Pass True if the administrator can edit messages of other users and can pin messages; for channels only
* @param canPinMessages Pass True if the administrator can pin messages; for supergroups only
* @param canManageTopics Pass True if the user is allowed to create, rename, close, and reopen forum topics; for supergroups only
*/
suspend fun TelegramBotApiClient.tryPromoteChatMember(
chatId: ChatId,
userId: UserId,
isAnonymous: Boolean? = null,
canManageChat: Boolean? = null,
canDeleteMessages: Boolean? = null,
canManageVideoChats: Boolean? = null,
canRestrictMembers: Boolean? = null,
canPromoteMembers: Boolean? = null,
canChangeInfo: Boolean? = null,
canInviteUsers: Boolean? = null,
canPostStories: Boolean? = null,
canEditStories: Boolean? = null,
canDeleteStories: Boolean? = null,
canPostMessages: Boolean? = null,
canEditMessages: Boolean? = null,
canPinMessages: Boolean? = null,
canManageTopics: Boolean? = null,
): TelegramResponse =
tryPromoteChatMember(PromoteChatMemberRequest(chatId, userId, isAnonymous, canManageChat, canDeleteMessages, canManageVideoChats, canRestrictMembers, canPromoteMembers, canChangeInfo, canInviteUsers, canPostStories, canEditStories, canDeleteStories, canPostMessages, canEditMessages, canPinMessages, canManageTopics))
/**
* Use this method to set a custom title for an administrator in a supergroup promoted by the bot. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
* @param userId Unique identifier of the target user
* @param customTitle New custom title for the administrator; 0-16 characters, emoji are not allowed
*/
suspend fun TelegramBotApiClient.trySetChatAdministratorCustomTitle(
chatId: ChatId,
userId: UserId,
customTitle: String,
): TelegramResponse =
trySetChatAdministratorCustomTitle(SetChatAdministratorCustomTitleRequest(chatId, userId, customTitle))
/**
* Use this method to ban a channel chat in a supergroup or a channel. Until the chat is unbanned, the owner of the banned chat won't be able to send messages on behalf of any of their channels. The bot must be an administrator in the supergroup or channel for this to work and must have the appropriate administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param senderChatId Unique identifier of the target sender chat
*/
suspend fun TelegramBotApiClient.tryBanChatSenderChat(
chatId: ChatId,
senderChatId: ChatId,
): TelegramResponse =
tryBanChatSenderChat(BanChatSenderChatRequest(chatId, senderChatId))
/**
* Use this method to unban a previously banned channel chat in a supergroup or channel. The bot must be an administrator for this to work and must have the appropriate administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param senderChatId Unique identifier of the target sender chat
*/
suspend fun TelegramBotApiClient.tryUnbanChatSenderChat(
chatId: ChatId,
senderChatId: ChatId,
): TelegramResponse =
tryUnbanChatSenderChat(UnbanChatSenderChatRequest(chatId, senderChatId))
/**
* Use this method to set default chat permissions for all members. The bot must be an administrator in the group or a supergroup for this to work and must have the can_restrict_members administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
* @param permissions A JSON-serialized object for new default chat permissions
* @param useIndependentChatPermissions Pass True if chat permissions are set independently. Otherwise, the can_send_other_messages and can_add_web_page_previews permissions will imply the can_send_messages, can_send_audios, can_send_documents, can_send_photos, can_send_videos, can_send_video_notes, and can_send_voice_notes permissions; the can_send_polls permission will imply the can_send_messages permission.
*/
suspend fun TelegramBotApiClient.trySetChatPermissions(
chatId: ChatId,
permissions: ChatPermissions,
useIndependentChatPermissions: Boolean? = null,
): TelegramResponse =
trySetChatPermissions(SetChatPermissionsRequest(chatId, permissions, useIndependentChatPermissions))
/**
* Use this method to generate a new primary invite link for a chat; any previously generated primary link is revoked. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the new invite link as String on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
*/
suspend fun TelegramBotApiClient.tryExportChatInviteLink(
chatId: ChatId,
): TelegramResponse =
tryExportChatInviteLink(ExportChatInviteLinkRequest(chatId))
/**
* Use this method to create an additional invite link for a chat. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. The link can be revoked using the method revokeChatInviteLink. Returns the new invite link as ChatInviteLink object.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param name Invite link name; 0-32 characters
* @param expireDate Point in time (Unix timestamp) when the link will expire
* @param memberLimit The maximum number of users that can be members of the chat simultaneously after joining the chat via this invite link; 1-99999
* @param createsJoinRequest True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified
*/
suspend fun TelegramBotApiClient.tryCreateChatInviteLink(
chatId: ChatId,
name: String? = null,
expireDate: UnixTimestamp? = null,
memberLimit: Long? = null,
createsJoinRequest: Boolean? = null,
): TelegramResponse =
tryCreateChatInviteLink(CreateChatInviteLinkRequest(chatId, name, expireDate, memberLimit, createsJoinRequest))
/**
* Use this method to edit a non-primary invite link created by the bot. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the edited invite link as a ChatInviteLink object.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param inviteLink The invite link to edit
* @param name Invite link name; 0-32 characters
* @param expireDate Point in time (Unix timestamp) when the link will expire
* @param memberLimit The maximum number of users that can be members of the chat simultaneously after joining the chat via this invite link; 1-99999
* @param createsJoinRequest True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified
*/
suspend fun TelegramBotApiClient.tryEditChatInviteLink(
chatId: ChatId,
inviteLink: String,
name: String? = null,
expireDate: UnixTimestamp? = null,
memberLimit: Long? = null,
createsJoinRequest: Boolean? = null,
): TelegramResponse =
tryEditChatInviteLink(EditChatInviteLinkRequest(chatId, inviteLink, name, expireDate, memberLimit, createsJoinRequest))
/**
* Use this method to create a subscription invite link for a channel chat. The bot must have the can_invite_users administrator rights. The link can be edited using the method editChatSubscriptionInviteLink or revoked using the method revokeChatInviteLink. Returns the new invite link as a ChatInviteLink object.
*
* @param chatId Unique identifier for the target channel chat or username of the target channel (in the format @channelusername)
* @param subscriptionPeriod The number of seconds the subscription will be active for before the next payment. Currently, it must always be 2592000 (30 days).
* @param subscriptionPrice The amount of Telegram Stars a user must pay initially and after each subsequent subscription period to be a member of the chat; 1-2500
* @param name Invite link name; 0-32 characters
*/
suspend fun TelegramBotApiClient.tryCreateChatSubscriptionInviteLink(
chatId: ChatId,
subscriptionPeriod: Seconds,
subscriptionPrice: Long,
name: String? = null,
): TelegramResponse =
tryCreateChatSubscriptionInviteLink(CreateChatSubscriptionInviteLinkRequest(chatId, subscriptionPeriod, subscriptionPrice, name))
/**
* Use this method to edit a subscription invite link created by the bot. The bot must have the can_invite_users administrator rights. Returns the edited invite link as a ChatInviteLink object.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param inviteLink The invite link to edit
* @param name Invite link name; 0-32 characters
*/
suspend fun TelegramBotApiClient.tryEditChatSubscriptionInviteLink(
chatId: ChatId,
inviteLink: String,
name: String? = null,
): TelegramResponse =
tryEditChatSubscriptionInviteLink(EditChatSubscriptionInviteLinkRequest(chatId, inviteLink, name))
/**
* Use this method to revoke an invite link created by the bot. If the primary link is revoked, a new link is automatically generated. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the revoked invite link as ChatInviteLink object.
*
* @param chatId Unique identifier of the target chat or username of the target channel (in the format @channelusername)
* @param inviteLink The invite link to revoke
*/
suspend fun TelegramBotApiClient.tryRevokeChatInviteLink(
chatId: ChatId,
inviteLink: String,
): TelegramResponse =
tryRevokeChatInviteLink(RevokeChatInviteLinkRequest(chatId, inviteLink))
/**
* Use this method to approve a chat join request. The bot must be an administrator in the chat for this to work and must have the can_invite_users administrator right. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param userId Unique identifier of the target user
*/
suspend fun TelegramBotApiClient.tryApproveChatJoinRequest(
chatId: ChatId,
userId: UserId,
): TelegramResponse =
tryApproveChatJoinRequest(ApproveChatJoinRequestRequest(chatId, userId))
/**
* Use this method to decline a chat join request. The bot must be an administrator in the chat for this to work and must have the can_invite_users administrator right. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param userId Unique identifier of the target user
*/
suspend fun TelegramBotApiClient.tryDeclineChatJoinRequest(
chatId: ChatId,
userId: UserId,
): TelegramResponse =
tryDeclineChatJoinRequest(DeclineChatJoinRequestRequest(chatId, userId))
/**
* Use this method to set a new profile photo for the chat. Photos can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param photo New chat photo, uploaded using multipart/form-data
*/
suspend fun TelegramBotApiClient.trySetChatPhoto(
chatId: ChatId,
photo: String,
): TelegramResponse =
trySetChatPhoto(SetChatPhotoRequest(chatId, photo))
/**
* Use this method to delete a chat photo. Photos can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
*/
suspend fun TelegramBotApiClient.tryDeleteChatPhoto(
chatId: ChatId,
): TelegramResponse =
tryDeleteChatPhoto(DeleteChatPhotoRequest(chatId))
/**
* Use this method to change the title of a chat. Titles can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param title New chat title, 1-128 characters
*/
suspend fun TelegramBotApiClient.trySetChatTitle(
chatId: ChatId,
title: String,
): TelegramResponse =
trySetChatTitle(SetChatTitleRequest(chatId, title))
/**
* Use this method to change the description of a group, a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param description New chat description, 0-255 characters
*/
suspend fun TelegramBotApiClient.trySetChatDescription(
chatId: ChatId,
description: String? = null,
): TelegramResponse =
trySetChatDescription(SetChatDescriptionRequest(chatId, description))
/**
* Use this method to add a message to the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageId Identifier of a message to pin
* @param disableNotification Pass True if it is not necessary to send a notification to all chat members about the new pinned message. Notifications are always disabled in channels and private chats.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be pinned
*/
suspend fun TelegramBotApiClient.tryPinChatMessage(
chatId: ChatId,
messageId: MessageId,
disableNotification: Boolean? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryPinChatMessage(PinChatMessageRequest(chatId, messageId, disableNotification, businessConnectionId))
/**
* Use this method to remove a message from the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageId Identifier of the message to unpin. Required if business_connection_id is specified. If not specified, the most recent pinned message (by sending date) will be unpinned.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be unpinned
*/
suspend fun TelegramBotApiClient.tryUnpinChatMessage(
chatId: ChatId,
messageId: MessageId? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryUnpinChatMessage(UnpinChatMessageRequest(chatId, messageId, businessConnectionId))
/**
* Use this method to clear the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
*/
suspend fun TelegramBotApiClient.tryUnpinAllChatMessages(
chatId: ChatId,
): TelegramResponse =
tryUnpinAllChatMessages(UnpinAllChatMessagesRequest(chatId))
/**
* Use this method for your bot to leave a group, supergroup or channel. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername)
*/
suspend fun TelegramBotApiClient.tryLeaveChat(
chatId: ChatId,
): TelegramResponse =
tryLeaveChat(LeaveChatRequest(chatId))
/**
* Use this method to get up-to-date information about the chat. Returns a ChatFullInfo object on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername)
*/
suspend fun TelegramBotApiClient.tryGetChat(
chatId: ChatId,
): TelegramResponse =
tryGetChat(GetChatRequest(chatId))
/**
* Use this method to get a list of administrators in a chat, which aren't bots. Returns an Array of ChatMember objects.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername)
*/
suspend fun TelegramBotApiClient.tryGetChatAdministrators(
chatId: ChatId,
): TelegramResponse> =
tryGetChatAdministrators(GetChatAdministratorsRequest(chatId))
/**
* Use this method to get the number of members in a chat. Returns Int on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername)
*/
suspend fun TelegramBotApiClient.tryGetChatMemberCount(
chatId: ChatId,
): TelegramResponse =
tryGetChatMemberCount(GetChatMemberCountRequest(chatId))
/**
* Use this method to get information about a member of a chat. The method is only guaranteed to work for other users if the bot is an administrator in the chat. Returns a ChatMember object on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername)
* @param userId Unique identifier of the target user
*/
suspend fun TelegramBotApiClient.tryGetChatMember(
chatId: ChatId,
userId: UserId,
): TelegramResponse =
tryGetChatMember(GetChatMemberRequest(chatId, userId))
/**
* Use this method to set a new group sticker set for a supergroup. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Use the field can_set_sticker_set optionally returned in getChat requests to check if the bot can use this method. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
* @param stickerSetName Name of the sticker set to be set as the group sticker set
*/
suspend fun TelegramBotApiClient.trySetChatStickerSet(
chatId: ChatId,
stickerSetName: String,
): TelegramResponse =
trySetChatStickerSet(SetChatStickerSetRequest(chatId, stickerSetName))
/**
* Use this method to delete a group sticker set from a supergroup. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Use the field can_set_sticker_set optionally returned in getChat requests to check if the bot can use this method. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
*/
suspend fun TelegramBotApiClient.tryDeleteChatStickerSet(
chatId: ChatId,
): TelegramResponse =
tryDeleteChatStickerSet(DeleteChatStickerSetRequest(chatId))
/**
* Use this method to create a topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns information about the created topic as a ForumTopic object.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
* @param name Topic name, 1-128 characters
* @param iconColor Color of the topic icon in RGB format. Currently, must be one of 7322096 (0x6FB9F0), 16766590 (0xFFD67E), 13338331 (0xCB86DB), 9367192 (0x8EEE98), 16749490 (0xFF93B2), or 16478047 (0xFB6F5F)
* @param iconCustomEmojiId Unique identifier of the custom emoji shown as the topic icon. Use getForumTopicIconStickers to get all allowed custom emoji identifiers.
*/
suspend fun TelegramBotApiClient.tryCreateForumTopic(
chatId: ChatId,
name: String,
iconColor: Long? = null,
iconCustomEmojiId: CustomEmojiId? = null,
): TelegramResponse =
tryCreateForumTopic(CreateForumTopicRequest(chatId, name, iconColor, iconCustomEmojiId))
/**
* Use this method to edit name and icon of a topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights, unless it is the creator of the topic. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
* @param messageThreadId Unique identifier for the target message thread of the forum topic
* @param name New topic name, 0-128 characters. If not specified or empty, the current name of the topic will be kept
* @param iconCustomEmojiId New unique identifier of the custom emoji shown as the topic icon. Use getForumTopicIconStickers to get all allowed custom emoji identifiers. Pass an empty string to remove the icon. If not specified, the current icon will be kept
*/
suspend fun TelegramBotApiClient.tryEditForumTopic(
chatId: ChatId,
messageThreadId: MessageThreadId,
name: String? = null,
iconCustomEmojiId: CustomEmojiId? = null,
): TelegramResponse =
tryEditForumTopic(EditForumTopicRequest(chatId, messageThreadId, name, iconCustomEmojiId))
/**
* Use this method to close an open topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights, unless it is the creator of the topic. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
* @param messageThreadId Unique identifier for the target message thread of the forum topic
*/
suspend fun TelegramBotApiClient.tryCloseForumTopic(
chatId: ChatId,
messageThreadId: MessageThreadId,
): TelegramResponse =
tryCloseForumTopic(CloseForumTopicRequest(chatId, messageThreadId))
/**
* Use this method to reopen a closed topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights, unless it is the creator of the topic. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
* @param messageThreadId Unique identifier for the target message thread of the forum topic
*/
suspend fun TelegramBotApiClient.tryReopenForumTopic(
chatId: ChatId,
messageThreadId: MessageThreadId,
): TelegramResponse =
tryReopenForumTopic(ReopenForumTopicRequest(chatId, messageThreadId))
/**
* Use this method to delete a forum topic along with all its messages in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_delete_messages administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
* @param messageThreadId Unique identifier for the target message thread of the forum topic
*/
suspend fun TelegramBotApiClient.tryDeleteForumTopic(
chatId: ChatId,
messageThreadId: MessageThreadId,
): TelegramResponse =
tryDeleteForumTopic(DeleteForumTopicRequest(chatId, messageThreadId))
/**
* Use this method to clear the list of pinned messages in a forum topic. The bot must be an administrator in the chat for this to work and must have the can_pin_messages administrator right in the supergroup. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
* @param messageThreadId Unique identifier for the target message thread of the forum topic
*/
suspend fun TelegramBotApiClient.tryUnpinAllForumTopicMessages(
chatId: ChatId,
messageThreadId: MessageThreadId,
): TelegramResponse =
tryUnpinAllForumTopicMessages(UnpinAllForumTopicMessagesRequest(chatId, messageThreadId))
/**
* Use this method to edit the name of the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
* @param name New topic name, 1-128 characters
*/
suspend fun TelegramBotApiClient.tryEditGeneralForumTopic(
chatId: ChatId,
name: String,
): TelegramResponse =
tryEditGeneralForumTopic(EditGeneralForumTopicRequest(chatId, name))
/**
* Use this method to close an open 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
*/
suspend fun TelegramBotApiClient.tryCloseGeneralForumTopic(
chatId: ChatId,
): TelegramResponse =
tryCloseGeneralForumTopic(CloseGeneralForumTopicRequest(chatId))
/**
* Use this method to reopen a closed 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. The topic will be automatically unhidden if it was hidden. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
*/
suspend fun TelegramBotApiClient.tryReopenGeneralForumTopic(
chatId: ChatId,
): TelegramResponse =
tryReopenGeneralForumTopic(ReopenGeneralForumTopicRequest(chatId))
/**
* Use this method to hide the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. The topic will be automatically closed if it was open. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
*/
suspend fun TelegramBotApiClient.tryHideGeneralForumTopic(
chatId: ChatId,
): TelegramResponse =
tryHideGeneralForumTopic(HideGeneralForumTopicRequest(chatId))
/**
* Use this method to unhide the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
*/
suspend fun TelegramBotApiClient.tryUnhideGeneralForumTopic(
chatId: ChatId,
): TelegramResponse =
tryUnhideGeneralForumTopic(UnhideGeneralForumTopicRequest(chatId))
/**
* Use this method to clear the list of pinned messages in a General forum topic. The bot must be an administrator in the chat for this to work and must have the can_pin_messages administrator right in the supergroup. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target supergroup (in the format @supergroupusername)
*/
suspend fun TelegramBotApiClient.tryUnpinAllGeneralForumTopicMessages(
chatId: ChatId,
): TelegramResponse =
tryUnpinAllGeneralForumTopicMessages(UnpinAllGeneralForumTopicMessagesRequest(chatId))
/**
* Use this method to send answers to callback queries sent from inline keyboards. The answer will be displayed to the user as a notification at the top of the chat screen or as an alert. On success, True is returned.
*
* Alternatively, the user can be redirected to the specified Game URL. For this option to work, you must first create a game for your bot via @BotFather and accept the terms. Otherwise, you may use links like t.me/your_bot?start=XXXX that open your bot with a parameter.
*
* @param callbackQueryId Unique identifier for the query to be answered
* @param text Text of the notification. If not specified, nothing will be shown to the user, 0-200 characters
* @param showAlert If True, an alert will be shown by the client instead of a notification at the top of the chat screen. Defaults to false.
* @param url URL that will be opened by the user's client. If you have created a Game and accepted the conditions via @BotFather, specify the URL that opens your game - note that this will only work if the query comes from a callback_game button. Otherwise, you may use links like t.me/your_bot?start=XXXX that open your bot with a parameter.
* @param cacheTime The maximum amount of time in seconds that the result of the callback query may be cached client-side. Telegram apps will support caching starting in version 3.14. Defaults to 0.
*/
suspend fun TelegramBotApiClient.tryAnswerCallbackQuery(
callbackQueryId: CallbackQueryId,
text: String? = null,
showAlert: Boolean? = null,
url: String? = null,
cacheTime: Seconds? = null,
): TelegramResponse =
tryAnswerCallbackQuery(AnswerCallbackQueryRequest(callbackQueryId, text, showAlert, url, cacheTime))
/**
* Use this method to get the list of boosts added to a chat by a user. Requires administrator rights in the chat. Returns a UserChatBoosts object.
*
* @param chatId Unique identifier for the chat or username of the channel (in the format @channelusername)
* @param userId Unique identifier of the target user
*/
suspend fun TelegramBotApiClient.tryGetUserChatBoosts(
chatId: ChatId,
userId: UserId,
): TelegramResponse =
tryGetUserChatBoosts(GetUserChatBoostsRequest(chatId, userId))
/**
* Use this method to get information about the connection of the bot with a business account. Returns a BusinessConnection object on success.
*
* @param businessConnectionId Unique identifier of the business connection
*/
suspend fun TelegramBotApiClient.tryGetBusinessConnection(
businessConnectionId: BusinessConnectionId,
): TelegramResponse =
tryGetBusinessConnection(GetBusinessConnectionRequest(businessConnectionId))
/**
* Use this method to change the list of the bot's commands. See this manual for more details about bot commands. Returns True on success.
*
* @param commands A JSON-serialized list of bot commands to be set as the list of the bot's commands. At most 100 commands can be specified.
* @param scope A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to BotCommandScopeDefault.
* @param languageCode A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands
*/
suspend fun TelegramBotApiClient.trySetMyCommands(
commands: List,
scope: BotCommandScope? = null,
languageCode: String? = null,
): TelegramResponse =
trySetMyCommands(SetMyCommandsRequest(commands, scope, languageCode))
/**
* Use this method to delete the list of the bot's commands for the given scope and user language. After deletion, higher level commands will be shown to affected users. Returns True on success.
*
* @param scope A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to BotCommandScopeDefault.
* @param languageCode A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands
*/
suspend fun TelegramBotApiClient.tryDeleteMyCommands(
scope: BotCommandScope? = null,
languageCode: String? = null,
): TelegramResponse =
tryDeleteMyCommands(DeleteMyCommandsRequest(scope, languageCode))
/**
* Use this method to get the current list of the bot's commands for the given scope and user language. Returns an Array of BotCommand objects. If commands aren't set, an empty list is returned.
*
* @param scope A JSON-serialized object, describing scope of users. Defaults to BotCommandScopeDefault.
* @param languageCode A two-letter ISO 639-1 language code or an empty string
*/
suspend fun TelegramBotApiClient.tryGetMyCommands(
scope: BotCommandScope? = null,
languageCode: String? = null,
): TelegramResponse> =
tryGetMyCommands(GetMyCommandsRequest(scope, languageCode))
/**
* Use this method to change the bot's name. Returns True on success.
*
* @param name New bot name; 0-64 characters. Pass an empty string to remove the dedicated name for the given language.
* @param languageCode A two-letter ISO 639-1 language code. If empty, the name will be shown to all users for whose language there is no dedicated name.
*/
suspend fun TelegramBotApiClient.trySetMyName(
name: String? = null,
languageCode: String? = null,
): TelegramResponse =
trySetMyName(SetMyNameRequest(name, languageCode))
/**
* Use this method to get the current bot name for the given user language. Returns BotName on success.
*
* @param languageCode A two-letter ISO 639-1 language code or an empty string
*/
suspend fun TelegramBotApiClient.tryGetMyName(
languageCode: String? = null,
): TelegramResponse =
tryGetMyName(GetMyNameRequest(languageCode))
/**
* Use this method to change the bot's description, which is shown in the chat with the bot if the chat is empty. Returns True on success.
*
* @param description New bot description; 0-512 characters. Pass an empty string to remove the dedicated description for the given language.
* @param languageCode A two-letter ISO 639-1 language code. If empty, the description will be applied to all users for whose language there is no dedicated description.
*/
suspend fun TelegramBotApiClient.trySetMyDescription(
description: String? = null,
languageCode: String? = null,
): TelegramResponse =
trySetMyDescription(SetMyDescriptionRequest(description, languageCode))
/**
* Use this method to get the current bot description for the given user language. Returns BotDescription on success.
*
* @param languageCode A two-letter ISO 639-1 language code or an empty string
*/
suspend fun TelegramBotApiClient.tryGetMyDescription(
languageCode: String? = null,
): TelegramResponse =
tryGetMyDescription(GetMyDescriptionRequest(languageCode))
/**
* Use this method to change the bot's short description, which is shown on the bot's profile page and is sent together with the link when users share the bot. Returns True on success.
*
* @param shortDescription New short description for the bot; 0-120 characters. Pass an empty string to remove the dedicated short description for the given language.
* @param languageCode A two-letter ISO 639-1 language code. If empty, the short description will be applied to all users for whose language there is no dedicated short description.
*/
suspend fun TelegramBotApiClient.trySetMyShortDescription(
shortDescription: String? = null,
languageCode: String? = null,
): TelegramResponse =
trySetMyShortDescription(SetMyShortDescriptionRequest(shortDescription, languageCode))
/**
* Use this method to get the current bot short description for the given user language. Returns BotShortDescription on success.
*
* @param languageCode A two-letter ISO 639-1 language code or an empty string
*/
suspend fun TelegramBotApiClient.tryGetMyShortDescription(
languageCode: String? = null,
): TelegramResponse =
tryGetMyShortDescription(GetMyShortDescriptionRequest(languageCode))
/**
* Use this method to change the bot's menu button in a private chat, or the default menu button. Returns True on success.
*
* @param chatId Unique identifier for the target private chat. If not specified, default bot's menu button will be changed
* @param menuButton A JSON-serialized object for the bot's new menu button. Defaults to MenuButtonDefault
*/
suspend fun TelegramBotApiClient.trySetChatMenuButton(
chatId: ChatId? = null,
menuButton: MenuButton? = null,
): TelegramResponse =
trySetChatMenuButton(SetChatMenuButtonRequest(chatId, menuButton))
/**
* Use this method to get the current value of the bot's menu button in a private chat, or the default menu button. Returns MenuButton on success.
*
* @param chatId Unique identifier for the target private chat. If not specified, default bot's menu button will be returned
*/
suspend fun TelegramBotApiClient.tryGetChatMenuButton(
chatId: ChatId? = null,
): TelegramResponse =
tryGetChatMenuButton(GetChatMenuButtonRequest(chatId))
/**
* Use this method to change the default administrator rights requested by the bot when it's added as an administrator to groups or channels. These rights will be suggested to users, but they are free to modify the list before adding the bot. Returns True on success.
*
* @param rights A JSON-serialized object describing new default administrator rights. If not specified, the default administrator rights will be cleared.
* @param forChannels Pass True to change the default administrator rights of the bot in channels. Otherwise, the default administrator rights of the bot for groups and supergroups will be changed.
*/
suspend fun TelegramBotApiClient.trySetMyDefaultAdministratorRights(
rights: ChatAdministratorRights? = null,
forChannels: Boolean? = null,
): TelegramResponse =
trySetMyDefaultAdministratorRights(SetMyDefaultAdministratorRightsRequest(rights, forChannels))
/**
* Use this method to get the current default administrator rights of the bot. Returns ChatAdministratorRights on success.
*
* @param forChannels Pass True to get default administrator rights of the bot in channels. Otherwise, default administrator rights of the bot for groups and supergroups will be returned.
*/
suspend fun TelegramBotApiClient.tryGetMyDefaultAdministratorRights(
forChannels: Boolean? = null,
): TelegramResponse =
tryGetMyDefaultAdministratorRights(GetMyDefaultAdministratorRightsRequest(forChannels))
/**
* Use this method to edit text and game messages. On success the edited Message is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent.
*
* @param text New text of the message, 1-4096 characters after entities parsing
* @param chatId Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageId Required if inline_message_id is not specified. Identifier of the message to edit
* @param parseMode Mode for parsing entities in the message text. See formatting options for more details.
* @param entities A JSON-serialized list of special entities that appear in message text, which can be specified instead of parse_mode
* @param linkPreviewOptions Link preview generation options for the message
* @param replyMarkup A JSON-serialized object for an inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryEditMessageText(
text: String,
chatId: ChatId,
messageId: MessageId,
parseMode: ParseMode? = null,
entities: List? = null,
linkPreviewOptions: LinkPreviewOptions? = null,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryEditMessageText(EditMessageTextRequest(text = text, chatId = chatId, messageId = messageId, parseMode = parseMode, entities = entities, linkPreviewOptions = linkPreviewOptions, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to edit text and game messages. On success True is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent.
*
* @param text New text of the message, 1-4096 characters after entities parsing
* @param inlineMessageId Required if chat_id and message_id are not specified. Identifier of the inline message
* @param parseMode Mode for parsing entities in the message text. See formatting options for more details.
* @param entities A JSON-serialized list of special entities that appear in message text, which can be specified instead of parse_mode
* @param linkPreviewOptions Link preview generation options for the message
* @param replyMarkup A JSON-serialized object for an inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryEditInlineMessageText(
text: String,
inlineMessageId: InlineMessageId,
parseMode: ParseMode? = null,
entities: List? = null,
linkPreviewOptions: LinkPreviewOptions? = null,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryEditInlineMessageText(EditMessageTextRequest(text = text, inlineMessageId = inlineMessageId, parseMode = parseMode, entities = entities, linkPreviewOptions = linkPreviewOptions, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to edit captions of messages. On success the edited Message is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent.
*
* @param chatId Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageId Required if inline_message_id is not specified. Identifier of the message to edit
* @param caption New caption of the message, 0-1024 characters after entities parsing
* @param parseMode Mode for parsing entities in the message caption. See formatting options for more details.
* @param captionEntities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode
* @param showCaptionAboveMedia Pass True, if the caption must be shown above the message media. Supported only for animation, photo and video messages.
* @param replyMarkup A JSON-serialized object for an inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryEditMessageCaption(
chatId: ChatId,
messageId: MessageId,
caption: String? = null,
parseMode: ParseMode? = null,
captionEntities: List? = null,
showCaptionAboveMedia: Boolean? = null,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryEditMessageCaption(EditMessageCaptionRequest(chatId = chatId, messageId = messageId, caption = caption, parseMode = parseMode, captionEntities = captionEntities, showCaptionAboveMedia = showCaptionAboveMedia, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to edit captions of messages. On success True is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent.
*
* @param inlineMessageId Required if chat_id and message_id are not specified. Identifier of the inline message
* @param caption New caption of the message, 0-1024 characters after entities parsing
* @param parseMode Mode for parsing entities in the message caption. See formatting options for more details.
* @param captionEntities A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode
* @param showCaptionAboveMedia Pass True, if the caption must be shown above the message media. Supported only for animation, photo and video messages.
* @param replyMarkup A JSON-serialized object for an inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryEditInlineMessageCaption(
inlineMessageId: InlineMessageId,
caption: String? = null,
parseMode: ParseMode? = null,
captionEntities: List? = null,
showCaptionAboveMedia: Boolean? = null,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryEditInlineMessageCaption(EditMessageCaptionRequest(inlineMessageId = inlineMessageId, caption = caption, parseMode = parseMode, captionEntities = captionEntities, showCaptionAboveMedia = showCaptionAboveMedia, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to edit animation, audio, document, photo, or video messages. If a message is part of a message album, then it can be edited only to an audio for audio albums, only to a document for document albums and to a photo or a video otherwise. When an inline message is edited, a new file can't be uploaded; use a previously uploaded file via its file_id or specify a URL. On success the edited Message is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent.
*
* @param media A JSON-serialized object for a new media content of the message
* @param chatId Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageId Required if inline_message_id is not specified. Identifier of the message to edit
* @param replyMarkup A JSON-serialized object for a new inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryEditMessageMedia(
media: InputMedia,
chatId: ChatId,
messageId: MessageId,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryEditMessageMedia(EditMessageMediaRequest(media = media, chatId = chatId, messageId = messageId, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to edit animation, audio, document, photo, or video messages. If a message is part of a message album, then it can be edited only to an audio for audio albums, only to a document for document albums and to a photo or a video otherwise. When an inline message is edited, a new file can't be uploaded; use a previously uploaded file via its file_id or specify a URL. On success True is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent.
*
* @param media A JSON-serialized object for a new media content of the message
* @param inlineMessageId Required if chat_id and message_id are not specified. Identifier of the inline message
* @param replyMarkup A JSON-serialized object for a new inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryEditInlineMessageMedia(
media: InputMedia,
inlineMessageId: InlineMessageId,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryEditInlineMessageMedia(EditMessageMediaRequest(media = media, inlineMessageId = inlineMessageId, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to edit live location messages. A location can be edited until its live_period expires or editing is explicitly disabled by a call to stopMessageLiveLocation. On success the edited Message is returned.
*
* @param latitude Latitude of new location
* @param longitude Longitude of new location
* @param chatId Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageId Required if inline_message_id is not specified. Identifier of the message to edit
* @param livePeriod New period in seconds during which the location can be updated, starting from the message send date. If 0x7FFFFFFF is specified, then the location can be updated forever. Otherwise, the new value must not exceed the current live_period by more than a day, and the live location expiration date must remain within the next 90 days. If not specified, then live_period remains unchanged
* @param horizontalAccuracy The radius of uncertainty for the location, measured in meters; 0-1500
* @param heading Direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.
* @param proximityAlertRadius The maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.
* @param replyMarkup A JSON-serialized object for a new inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryEditMessageLiveLocation(
latitude: Double,
longitude: Double,
chatId: ChatId,
messageId: MessageId,
livePeriod: Long? = null,
horizontalAccuracy: Double? = null,
heading: Long? = null,
proximityAlertRadius: Long? = null,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryEditMessageLiveLocation(EditMessageLiveLocationRequest(latitude = latitude, longitude = longitude, chatId = chatId, messageId = messageId, livePeriod = livePeriod, horizontalAccuracy = horizontalAccuracy, heading = heading, proximityAlertRadius = proximityAlertRadius, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to edit live location messages. A location can be edited until its live_period expires or editing is explicitly disabled by a call to stopMessageLiveLocation. On success True is returned.
*
* @param latitude Latitude of new location
* @param longitude Longitude of new location
* @param inlineMessageId Required if chat_id and message_id are not specified. Identifier of the inline message
* @param livePeriod New period in seconds during which the location can be updated, starting from the message send date. If 0x7FFFFFFF is specified, then the location can be updated forever. Otherwise, the new value must not exceed the current live_period by more than a day, and the live location expiration date must remain within the next 90 days. If not specified, then live_period remains unchanged
* @param horizontalAccuracy The radius of uncertainty for the location, measured in meters; 0-1500
* @param heading Direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.
* @param proximityAlertRadius The maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.
* @param replyMarkup A JSON-serialized object for a new inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryEditInlineMessageLiveLocation(
latitude: Double,
longitude: Double,
inlineMessageId: InlineMessageId,
livePeriod: Long? = null,
horizontalAccuracy: Double? = null,
heading: Long? = null,
proximityAlertRadius: Long? = null,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryEditInlineMessageLiveLocation(EditMessageLiveLocationRequest(latitude = latitude, longitude = longitude, inlineMessageId = inlineMessageId, livePeriod = livePeriod, horizontalAccuracy = horizontalAccuracy, heading = heading, proximityAlertRadius = proximityAlertRadius, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to stop updating a live location message before live_period expires. On success the edited Message is returned.
*
* @param chatId Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageId Required if inline_message_id is not specified. Identifier of the message with live location to stop
* @param replyMarkup A JSON-serialized object for a new inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryStopMessageLiveLocation(
chatId: ChatId,
messageId: MessageId,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryStopMessageLiveLocation(StopMessageLiveLocationRequest(chatId = chatId, messageId = messageId, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to stop updating a live location message before live_period expires. On success True is returned.
*
* @param inlineMessageId Required if chat_id and message_id are not specified. Identifier of the inline message
* @param replyMarkup A JSON-serialized object for a new inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryStopInlineMessageLiveLocation(
inlineMessageId: InlineMessageId,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryStopInlineMessageLiveLocation(StopMessageLiveLocationRequest(inlineMessageId = inlineMessageId, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to edit only the reply markup of messages. On success the edited Message is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent.
*
* @param chatId Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageId Required if inline_message_id is not specified. Identifier of the message to edit
* @param replyMarkup A JSON-serialized object for an inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryEditMessageReplyMarkup(
chatId: ChatId,
messageId: MessageId,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryEditMessageReplyMarkup(EditMessageReplyMarkupRequest(chatId = chatId, messageId = messageId, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to edit only the reply markup of messages. On success True is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within 48 hours from the time they were sent.
*
* @param inlineMessageId Required if chat_id and message_id are not specified. Identifier of the inline message
* @param replyMarkup A JSON-serialized object for an inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryEditInlineMessageReplyMarkup(
inlineMessageId: InlineMessageId,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryEditInlineMessageReplyMarkup(EditMessageReplyMarkupRequest(inlineMessageId = inlineMessageId, replyMarkup = replyMarkup, businessConnectionId = businessConnectionId))
/**
* Use this method to stop a poll which was sent by the bot. On success, the stopped Poll is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageId Identifier of the original message with the poll
* @param replyMarkup A JSON-serialized object for a new message inline keyboard.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message to be edited was sent
*/
suspend fun TelegramBotApiClient.tryStopPoll(
chatId: ChatId,
messageId: MessageId,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
tryStopPoll(StopPollRequest(chatId, messageId, replyMarkup, businessConnectionId))
/**
* Use this method to delete a message, including service messages, with the following limitations: - A message can only be deleted if it was sent less than 48 hours ago. - Service messages about a supergroup, channel, or forum topic creation can't be deleted. - A dice message in a private chat can only be deleted if it was sent more than 24 hours ago. - Bots can delete outgoing messages in private chats, groups, and supergroups. - Bots can delete incoming messages in private chats. - Bots granted can_post_messages permissions can delete outgoing messages in channels. - If the bot is an administrator of a group, it can delete any message there. - If the bot has can_delete_messages permission in a supergroup or a channel, it can delete any message there. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageId Identifier of the message to delete
*/
suspend fun TelegramBotApiClient.tryDeleteMessage(
chatId: ChatId,
messageId: MessageId,
): TelegramResponse =
tryDeleteMessage(DeleteMessageRequest(chatId, messageId))
/**
* Use this method to delete multiple messages simultaneously. If some of the specified messages can't be found, they are skipped. Returns True on success.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param messageIds A JSON-serialized list of 1-100 identifiers of messages to delete. See deleteMessage for limitations on which messages can be deleted
*/
suspend fun TelegramBotApiClient.tryDeleteMessages(
chatId: ChatId,
messageIds: List,
): TelegramResponse =
tryDeleteMessages(DeleteMessagesRequest(chatId, messageIds))
/**
* Use this method to send static .WEBP, animated .TGS, or video .WEBM stickers. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param sticker Sticker to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a .WEBP sticker from the Internet, or upload a new .WEBP, .TGS, or .WEBM sticker using multipart/form-data. More information on Sending Files ». Video and animated stickers can't be sent via an HTTP URL.
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param emoji Emoji associated with the sticker; only for just uploaded stickers
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendSticker(
chatId: ChatId,
sticker: String,
messageThreadId: MessageThreadId? = null,
emoji: String? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: ReplyMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendSticker(SendStickerRequest(chatId, sticker, messageThreadId, emoji, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to get a sticker set. On success, a StickerSet object is returned.
*
* @param name Name of the sticker set
*/
suspend fun TelegramBotApiClient.tryGetStickerSet(
name: String,
): TelegramResponse =
tryGetStickerSet(GetStickerSetRequest(name))
/**
* Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of Sticker objects.
*
* @param customEmojiIds A JSON-serialized list of custom emoji identifiers. At most 200 custom emoji identifiers can be specified.
*/
suspend fun TelegramBotApiClient.tryGetCustomEmojiStickers(
customEmojiIds: List,
): TelegramResponse> =
tryGetCustomEmojiStickers(GetCustomEmojiStickersRequest(customEmojiIds))
/**
* Use this method to upload a file with a sticker for later use in the createNewStickerSet, addStickerToSet, or replaceStickerInSet methods (the file can be used multiple times). Returns the uploaded File on success.
*
* @param userId User identifier of sticker file owner
* @param sticker A file with the sticker in .WEBP, .PNG, .TGS, or .WEBM format. See https://core.telegram.org/stickers for technical requirements. More information on Sending Files »
* @param stickerFormat Format of the sticker, must be one of “static”, “animated”, “video”
*/
suspend fun TelegramBotApiClient.tryUploadStickerFile(
userId: UserId,
sticker: String,
stickerFormat: String,
): TelegramResponse =
tryUploadStickerFile(UploadStickerFileRequest(userId, sticker, stickerFormat))
/**
* Use this method to create a new sticker set owned by a user. The bot will be able to edit the sticker set thus created. Returns True on success.
*
* @param userId User identifier of created sticker set owner
* @param name Short name of sticker set, to be used in t.me/addstickers/ URLs (e.g., animals). Can contain only English letters, digits and underscores. Must begin with a letter, can't contain consecutive underscores and must end in "_by_". is case insensitive. 1-64 characters.
* @param title Sticker set title, 1-64 characters
* @param stickers A JSON-serialized list of 1-50 initial stickers to be added to the sticker set
* @param stickerType Type of stickers in the set, pass “regular”, “mask”, or “custom_emoji”. By default, a regular sticker set is created.
* @param needsRepainting Pass True if stickers in the sticker set must be repainted to the color of text 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 sticker sets only
*/
suspend fun TelegramBotApiClient.tryCreateNewStickerSet(
userId: UserId,
name: String,
title: String,
stickers: List,
stickerType: String? = null,
needsRepainting: Boolean? = null,
): TelegramResponse =
tryCreateNewStickerSet(CreateNewStickerSetRequest(userId, name, title, stickers, stickerType, needsRepainting))
/**
* Use this method to add a new sticker to a set created by the bot. Emoji sticker sets can have up to 200 stickers. Other sticker sets can have up to 120 stickers. Returns True on success.
*
* @param userId User identifier of sticker set owner
* @param name Sticker set name
* @param sticker A JSON-serialized object with information about the added sticker. If exactly the same sticker had already been added to the set, then the set isn't changed.
*/
suspend fun TelegramBotApiClient.tryAddStickerToSet(
userId: UserId,
name: String,
sticker: InputSticker,
): TelegramResponse =
tryAddStickerToSet(AddStickerToSetRequest(userId, name, sticker))
/**
* Use this method to move a sticker in a set created by the bot to a specific position. Returns True on success.
*
* @param sticker File identifier of the sticker
* @param position New sticker position in the set, zero-based
*/
suspend fun TelegramBotApiClient.trySetStickerPositionInSet(
sticker: String,
position: Long,
): TelegramResponse =
trySetStickerPositionInSet(SetStickerPositionInSetRequest(sticker, position))
/**
* Use this method to delete a sticker from a set created by the bot. Returns True on success.
*
* @param sticker File identifier of the sticker
*/
suspend fun TelegramBotApiClient.tryDeleteStickerFromSet(
sticker: String,
): TelegramResponse =
tryDeleteStickerFromSet(DeleteStickerFromSetRequest(sticker))
/**
* Use this method to replace an existing sticker in a sticker set with a new one. The method is equivalent to calling deleteStickerFromSet, then addStickerToSet, then setStickerPositionInSet. Returns True on success.
*
* @param userId User identifier of the sticker set owner
* @param name Sticker set name
* @param oldSticker File identifier of the replaced sticker
* @param sticker A JSON-serialized object with information about the added sticker. If exactly the same sticker had already been added to the set, then the set remains unchanged.
*/
suspend fun TelegramBotApiClient.tryReplaceStickerInSet(
userId: UserId,
name: String,
oldSticker: String,
sticker: InputSticker,
): TelegramResponse =
tryReplaceStickerInSet(ReplaceStickerInSetRequest(userId, name, oldSticker, sticker))
/**
* Use this method to change the list of emoji assigned to a regular or custom emoji sticker. The sticker must belong to a sticker set created by the bot. Returns True on success.
*
* @param sticker File identifier of the sticker
* @param emojiList A JSON-serialized list of 1-20 emoji associated with the sticker
*/
suspend fun TelegramBotApiClient.trySetStickerEmojiList(
sticker: String,
emojiList: List,
): TelegramResponse =
trySetStickerEmojiList(SetStickerEmojiListRequest(sticker, emojiList))
/**
* Use this method to change search keywords assigned to a regular or custom emoji sticker. The sticker must belong to a sticker set created by the bot. Returns True on success.
*
* @param sticker File identifier of the sticker
* @param keywords A JSON-serialized list of 0-20 search keywords for the sticker with total length of up to 64 characters
*/
suspend fun TelegramBotApiClient.trySetStickerKeywords(
sticker: String,
keywords: List? = null,
): TelegramResponse =
trySetStickerKeywords(SetStickerKeywordsRequest(sticker, keywords))
/**
* Use this method to change the mask position of a mask sticker. The sticker must belong to a sticker set that was created by the bot. Returns True on success.
*
* @param sticker File identifier of the sticker
* @param maskPosition A JSON-serialized object with the position where the mask should be placed on faces. Omit the parameter to remove the mask position.
*/
suspend fun TelegramBotApiClient.trySetStickerMaskPosition(
sticker: String,
maskPosition: MaskPosition? = null,
): TelegramResponse =
trySetStickerMaskPosition(SetStickerMaskPositionRequest(sticker, maskPosition))
/**
* Use this method to set the title of a created sticker set. Returns True on success.
*
* @param name Sticker set name
* @param title Sticker set title, 1-64 characters
*/
suspend fun TelegramBotApiClient.trySetStickerSetTitle(
name: String,
title: String,
): TelegramResponse =
trySetStickerSetTitle(SetStickerSetTitleRequest(name, title))
/**
* Use this method to set the thumbnail of a regular or mask sticker set. The format of the thumbnail file must match the format of the stickers in the set. Returns True on success.
*
* @param name Sticker set name
* @param userId User identifier of the sticker set owner
* @param format Format of the thumbnail, must be one of “static” for a .WEBP or .PNG image, “animated” for a .TGS animation, or “video” for a WEBM video
* @param thumbnail A .WEBP or .PNG image with the thumbnail, must be up to 128 kilobytes in size and have a width and height of exactly 100px, or a .TGS animation with a thumbnail up to 32 kilobytes in size (see https://core.telegram.org/stickers#animation-requirements for animated sticker technical requirements), or a WEBM video with the thumbnail up to 32 kilobytes in size; see https://core.telegram.org/stickers#video-requirements for video sticker technical requirements. Pass a file_id as a String to send a file that already exists on the Telegram servers, pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. More information on Sending Files ». Animated and video sticker set thumbnails can't be uploaded via HTTP URL. If omitted, then the thumbnail is dropped and the first sticker is used as the thumbnail.
*/
suspend fun TelegramBotApiClient.trySetStickerSetThumbnail(
name: String,
userId: UserId,
format: String,
thumbnail: String? = null,
): TelegramResponse =
trySetStickerSetThumbnail(SetStickerSetThumbnailRequest(name, userId, format, thumbnail))
/**
* Use this method to set the thumbnail of a custom emoji sticker set. Returns True on success.
*
* @param name Sticker set name
* @param customEmojiId Custom emoji identifier of a sticker from the sticker set; pass an empty string to drop the thumbnail and use the first sticker as the thumbnail.
*/
suspend fun TelegramBotApiClient.trySetCustomEmojiStickerSetThumbnail(
name: String,
customEmojiId: CustomEmojiId? = null,
): TelegramResponse =
trySetCustomEmojiStickerSetThumbnail(SetCustomEmojiStickerSetThumbnailRequest(name, customEmojiId))
/**
* Use this method to delete a sticker set that was created by the bot. Returns True on success.
*
* @param name Sticker set name
*/
suspend fun TelegramBotApiClient.tryDeleteStickerSet(
name: String,
): TelegramResponse =
tryDeleteStickerSet(DeleteStickerSetRequest(name))
/**
* Use this method to send answers to an inline query. On success, True is returned. No more than 50 results per query are allowed.
*
* @param inlineQueryId Unique identifier for the answered query
* @param results A JSON-serialized array of results for the inline query
* @param cacheTime The maximum amount of time in seconds that the result of the inline query may be cached on the server. Defaults to 300.
* @param isPersonal Pass True 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.
* @param nextOffset 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.
* @param button A JSON-serialized object describing a button to be shown above inline query results
*/
suspend fun TelegramBotApiClient.tryAnswerInlineQuery(
inlineQueryId: InlineQueryId,
results: List,
cacheTime: Seconds? = null,
isPersonal: Boolean? = null,
nextOffset: String? = null,
button: InlineQueryResultsButton? = null,
): TelegramResponse =
tryAnswerInlineQuery(AnswerInlineQueryRequest(inlineQueryId, results, cacheTime, isPersonal, nextOffset, button))
/**
* Use this method to set the result of an interaction with a Web App and send a corresponding message on behalf of the user to the chat from which the query originated. On success, a SentWebAppMessage object is returned.
*
* @param webAppQueryId Unique identifier for the query to be answered
* @param result A JSON-serialized object describing the message to be sent
*/
suspend fun TelegramBotApiClient.tryAnswerWebAppQuery(
webAppQueryId: WebAppQueryId,
result: InlineQueryResult,
): TelegramResponse =
tryAnswerWebAppQuery(AnswerWebAppQueryRequest(webAppQueryId, result))
/**
* Use this method to send invoices. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat or username of the target channel (in the format @channelusername)
* @param title Product name, 1-32 characters
* @param description Product description, 1-255 characters
* @param payload Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes.
* @param currency Three-letter ISO 4217 currency code, see more on currencies. Pass “XTR” for payments in Telegram Stars.
* @param prices Price breakdown, a JSON-serialized list of components (e.g. product price, tax, discount, delivery cost, delivery tax, bonus, etc.). Must contain exactly one item for payments in Telegram Stars.
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param providerToken Payment provider token, obtained via @BotFather. Pass an empty string for payments in Telegram Stars.
* @param maxTipAmount The maximum accepted amount for tips in the smallest units of the currency (integer, not float/double). For example, for a maximum tip of US$ 1.45 pass max_tip_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). Defaults to 0. Not supported for payments in Telegram Stars.
* @param suggestedTipAmounts A JSON-serialized array 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.
* @param startParameter Unique deep-linking parameter. If left empty, 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. If non-empty, 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
* @param providerData JSON-serialized 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.
* @param photoUrl 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.
* @param photoSize Photo size in bytes
* @param photoWidth Photo width
* @param photoHeight Photo height
* @param needName Pass True if you require the user's full name to complete the order. Ignored for payments in Telegram Stars.
* @param needPhoneNumber Pass True if you require the user's phone number to complete the order. Ignored for payments in Telegram Stars.
* @param needEmail Pass True if you require the user's email address to complete the order. Ignored for payments in Telegram Stars.
* @param needShippingAddress Pass True if you require the user's shipping address to complete the order. Ignored for payments in Telegram Stars.
* @param sendPhoneNumberToProvider Pass True if the user's phone number should be sent to the provider. Ignored for payments in Telegram Stars.
* @param sendEmailToProvider Pass True if the user's email address should be sent to the provider. Ignored for payments in Telegram Stars.
* @param isFlexible Pass True if the final price depends on the shipping method. Ignored for payments in Telegram Stars.
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup A JSON-serialized object for an inline keyboard. If empty, one 'Pay total price' button will be shown. If not empty, the first button must be a Pay button.
*/
suspend fun TelegramBotApiClient.trySendInvoice(
chatId: ChatId,
title: String,
description: String,
payload: String,
currency: String,
prices: List,
messageThreadId: MessageThreadId? = null,
providerToken: String? = null,
maxTipAmount: Long? = null,
suggestedTipAmounts: List? = null,
startParameter: String? = null,
providerData: String? = null,
photoUrl: String? = null,
photoSize: Long? = null,
photoWidth: Long? = null,
photoHeight: Long? = null,
needName: Boolean? = null,
needPhoneNumber: Boolean? = null,
needEmail: Boolean? = null,
needShippingAddress: Boolean? = null,
sendPhoneNumberToProvider: Boolean? = null,
sendEmailToProvider: Boolean? = null,
isFlexible: Boolean? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: InlineKeyboardMarkup? = null,
): TelegramResponse =
trySendInvoice(SendInvoiceRequest(chatId, title, description, payload, currency, prices, messageThreadId, providerToken, maxTipAmount, suggestedTipAmounts, startParameter, providerData, photoUrl, photoSize, photoWidth, photoHeight, needName, needPhoneNumber, needEmail, needShippingAddress, sendPhoneNumberToProvider, sendEmailToProvider, isFlexible, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup))
/**
* Use this method to create a link for an invoice. Returns the created invoice link as String on success.
*
* @param title Product name, 1-32 characters
* @param description Product description, 1-255 characters
* @param payload Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes.
* @param currency Three-letter ISO 4217 currency code, see more on currencies. Pass “XTR” for payments in Telegram Stars.
* @param prices Price breakdown, a JSON-serialized list of components (e.g. product price, tax, discount, delivery cost, delivery tax, bonus, etc.). Must contain exactly one item for payments in Telegram Stars.
* @param providerToken Payment provider token, obtained via @BotFather. Pass an empty string for payments in Telegram Stars.
* @param maxTipAmount The maximum accepted amount for tips in the smallest units of the currency (integer, not float/double). For example, for a maximum tip of US$ 1.45 pass max_tip_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). Defaults to 0. Not supported for payments in Telegram Stars.
* @param suggestedTipAmounts A JSON-serialized array 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.
* @param providerData JSON-serialized 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.
* @param photoUrl URL of the product photo for the invoice. Can be a photo of the goods or a marketing image for a service.
* @param photoSize Photo size in bytes
* @param photoWidth Photo width
* @param photoHeight Photo height
* @param needName Pass True if you require the user's full name to complete the order. Ignored for payments in Telegram Stars.
* @param needPhoneNumber Pass True if you require the user's phone number to complete the order. Ignored for payments in Telegram Stars.
* @param needEmail Pass True if you require the user's email address to complete the order. Ignored for payments in Telegram Stars.
* @param needShippingAddress Pass True if you require the user's shipping address to complete the order. Ignored for payments in Telegram Stars.
* @param sendPhoneNumberToProvider Pass True if the user's phone number should be sent to the provider. Ignored for payments in Telegram Stars.
* @param sendEmailToProvider Pass True if the user's email address should be sent to the provider. Ignored for payments in Telegram Stars.
* @param isFlexible Pass True if the final price depends on the shipping method. Ignored for payments in Telegram Stars.
*/
suspend fun TelegramBotApiClient.tryCreateInvoiceLink(
title: String,
description: String,
payload: String,
currency: String,
prices: List,
providerToken: String? = null,
maxTipAmount: Long? = null,
suggestedTipAmounts: List? = null,
providerData: String? = null,
photoUrl: String? = null,
photoSize: Long? = null,
photoWidth: Long? = null,
photoHeight: Long? = null,
needName: Boolean? = null,
needPhoneNumber: Boolean? = null,
needEmail: Boolean? = null,
needShippingAddress: Boolean? = null,
sendPhoneNumberToProvider: Boolean? = null,
sendEmailToProvider: Boolean? = null,
isFlexible: Boolean? = null,
): TelegramResponse =
tryCreateInvoiceLink(CreateInvoiceLinkRequest(title, description, payload, currency, prices, providerToken, maxTipAmount, suggestedTipAmounts, providerData, photoUrl, photoSize, photoWidth, photoHeight, needName, needPhoneNumber, needEmail, needShippingAddress, sendPhoneNumberToProvider, sendEmailToProvider, isFlexible))
/**
* If you sent an invoice requesting a shipping address and the parameter is_flexible was specified, the Bot API will send an Update with a shipping_query field to the bot. Use this method to reply to shipping queries. On success, True is returned.
*
* @param shippingQueryId Unique identifier for the query to be answered
* @param ok Pass True if delivery to the specified address is possible and False if there are any problems (for example, if delivery to the specified address is not possible)
* @param shippingOptions Required if ok is True. A JSON-serialized array of available shipping options.
* @param errorMessage Required if ok is False. 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.
*/
suspend fun TelegramBotApiClient.tryAnswerShippingQuery(
shippingQueryId: ShippingQueryId,
ok: Boolean,
shippingOptions: List? = null,
errorMessage: String? = null,
): TelegramResponse =
tryAnswerShippingQuery(AnswerShippingQueryRequest(shippingQueryId, ok, shippingOptions, errorMessage))
/**
* Once the user has confirmed their payment and shipping details, the Bot API sends the final confirmation in the form of an Update with the field pre_checkout_query. Use this method to respond to such pre-checkout queries. On success, True is returned. Note: The Bot API must receive an answer within 10 seconds after the pre-checkout query was sent.
*
* @param preCheckoutQueryId Unique identifier for the query to be answered
* @param ok Specify True if everything is alright (goods are available, etc.) and the bot is ready to proceed with the order. Use False if there are any problems.
* @param errorMessage Required if ok is False. 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.
*/
suspend fun TelegramBotApiClient.tryAnswerPreCheckoutQuery(
preCheckoutQueryId: String,
ok: Boolean,
errorMessage: String? = null,
): TelegramResponse =
tryAnswerPreCheckoutQuery(AnswerPreCheckoutQueryRequest(preCheckoutQueryId, ok, errorMessage))
/**
* Returns the bot's Telegram Star transactions in chronological order. On success, returns a StarTransactions object.
*
* @param offset Number of transactions to skip in the response
* @param limit The maximum number of transactions to be retrieved. Values between 1-100 are accepted. Defaults to 100.
*/
suspend fun TelegramBotApiClient.tryGetStarTransactions(
offset: Long? = null,
limit: Long? = null,
): TelegramResponse =
tryGetStarTransactions(GetStarTransactionsRequest(offset, limit))
/**
* Refunds a successful payment in Telegram Stars. Returns True on success.
*
* @param userId Identifier of the user whose payment will be refunded
* @param telegramPaymentChargeId Telegram payment identifier
*/
suspend fun TelegramBotApiClient.tryRefundStarPayment(
userId: UserId,
telegramPaymentChargeId: TelegramPaymentChargeId,
): TelegramResponse =
tryRefundStarPayment(RefundStarPaymentRequest(userId, telegramPaymentChargeId))
/**
* Informs a user that some of the Telegram Passport elements they provided contains errors. The user will not be able to re-submit their Passport to you until the errors are fixed (the contents of the field for which you returned the error must change). Returns True on success.
*
* Use 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.
*
* @param userId User identifier
* @param errors A JSON-serialized array describing the errors
*/
suspend fun TelegramBotApiClient.trySetPassportDataErrors(
userId: UserId,
errors: List,
): TelegramResponse =
trySetPassportDataErrors(SetPassportDataErrorsRequest(userId, errors))
/**
* Use this method to send a game. On success, the sent Message is returned.
*
* @param chatId Unique identifier for the target chat
* @param gameShortName Short name of the game, serves as the unique identifier for the game. Set up your games via @BotFather.
* @param messageThreadId Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
* @param disableNotification Sends the message silently. Users will receive a notification with no sound.
* @param protectContent Protects the contents of the sent message from forwarding and saving
* @param messageEffectId Unique identifier of the message effect to be added to the message; for private chats only
* @param replyParameters Description of the message to reply to
* @param replyMarkup A JSON-serialized object for an inline keyboard. If empty, one 'Play game_title' button will be shown. If not empty, the first button must launch the game.
* @param businessConnectionId Unique identifier of the business connection on behalf of which the message will be sent
*/
suspend fun TelegramBotApiClient.trySendGame(
chatId: ChatId,
gameShortName: String,
messageThreadId: MessageThreadId? = null,
disableNotification: Boolean? = null,
protectContent: Boolean? = null,
messageEffectId: MessageEffectId? = null,
replyParameters: ReplyParameters? = null,
replyMarkup: InlineKeyboardMarkup? = null,
businessConnectionId: BusinessConnectionId? = null,
): TelegramResponse =
trySendGame(SendGameRequest(chatId, gameShortName, messageThreadId, disableNotification, protectContent, messageEffectId, replyParameters, replyMarkup, businessConnectionId))
/**
* Use this method to set the score of the specified user in a game message. On success the edited Message is returned. Returns an error, if the new score is not greater than the user's current score in the chat and force is False.
*
* @param userId User identifier
* @param score New score, must be non-negative
* @param force Pass True if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters
* @param disableEditMessage Pass True if the game message should not be automatically edited to include the current scoreboard
* @param chatId Required if inline_message_id is not specified. Unique identifier for the target chat
* @param messageId Required if inline_message_id is not specified. Identifier of the sent message
*/
suspend fun TelegramBotApiClient.trySetGameScore(
userId: UserId,
score: Long,
force: Boolean? = null,
disableEditMessage: Boolean? = null,
chatId: ChatId,
messageId: MessageId,
): TelegramResponse =
trySetGameScore(SetGameScoreRequest(userId = userId, score = score, force = force, disableEditMessage = disableEditMessage, chatId = chatId, messageId = messageId))
/**
* Use this method to set the score of the specified user in a game message. On success True is returned. Returns an error, if the new score is not greater than the user's current score in the chat and force is False.
*
* @param userId User identifier
* @param score New score, must be non-negative
* @param force Pass True if the high score is allowed to decrease. This can be useful when fixing mistakes or banning cheaters
* @param disableEditMessage Pass True if the game message should not be automatically edited to include the current scoreboard
* @param inlineMessageId Required if chat_id and message_id are not specified. Identifier of the inline message
*/
suspend fun TelegramBotApiClient.trySetInlineGameScore(
userId: UserId,
score: Long,
force: Boolean? = null,
disableEditMessage: Boolean? = null,
inlineMessageId: InlineMessageId,
): TelegramResponse =
trySetInlineGameScore(SetGameScoreRequest(userId = userId, score = score, force = force, disableEditMessage = disableEditMessage, inlineMessageId = inlineMessageId))
/**
* Use this method to get data for high score tables. Will return the score of the specified user and several of their neighbors in a game. Returns an Array of GameHighScore objects.
*
* This method will currently return scores for the target user, plus two of their closest neighbors on each side. Will also return the top three users if the user and their neighbors are not among them. Please note that this behavior is subject to change.
*
* @param userId Target user id
* @param chatId Required if inline_message_id is not specified. Unique identifier for the target chat
* @param messageId Required if inline_message_id is not specified. Identifier of the sent message
* @param inlineMessageId Required if chat_id and message_id are not specified. Identifier of the inline message
*/
suspend fun TelegramBotApiClient.tryGetGameHighScores(
userId: UserId,
chatId: ChatId? = null,
messageId: MessageId? = null,
inlineMessageId: InlineMessageId? = null,
): TelegramResponse> =
tryGetGameHighScores(GetGameHighScoresRequest(userId, chatId, messageId, inlineMessageId))