mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-24 09:16:12 +01:00
commit
8714e99fdd
76 changed files with 2310 additions and 27 deletions
|
@ -184,6 +184,10 @@ macro_rules! impl_payload {
|
|||
}
|
||||
|
||||
impl $Method {
|
||||
// We mirror Telegram API and can't do anything with too many arguments.
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
// It's just easier for macros to generate such code.
|
||||
#[allow(clippy::redundant_field_names)]
|
||||
$vi fn new($($($fields : impl_payload!(@convert? $FTy $([$conv])?)),*)?) -> Self {
|
||||
Self {
|
||||
$(
|
||||
|
|
30
src/payloads/add_sticker_to_set.rs
Normal file
30
src/payloads/add_sticker_to_set.rs
Normal file
|
@ -0,0 +1,30 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{InputSticker, MaskPosition, True};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to add a new sticker to a set created by the bot. Animated stickers can be added to animated sticker sets and only to them. Animated sticker sets can have up to 50 stickers. Static sticker sets can have up to 120 stickers. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Clone, Serialize)]
|
||||
pub AddStickerToSet (AddStickerToSetSetters) => True {
|
||||
required {
|
||||
/// User identifier of sticker file owner
|
||||
pub user_id: i32,
|
||||
/// Sticker set name
|
||||
pub name: String [into],
|
||||
/// **PNG** or **TGS** image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px. 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 info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
#[serde(flatten)]
|
||||
pub sticker: InputSticker,
|
||||
/// One or more emoji corresponding to the sticker
|
||||
pub emojis: String [into],
|
||||
}
|
||||
optional {
|
||||
/// A JSON-serialized object for position where the mask should be placed on faces
|
||||
pub mask_position: MaskPosition,
|
||||
}
|
||||
}
|
||||
}
|
38
src/payloads/answer_callback_query.rs
Normal file
38
src/payloads/answer_callback_query.rs
Normal file
|
@ -0,0 +1,38 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::True;
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
///
|
||||
/// [@Botfather]: https://t.me/botfather
|
||||
/// [inline keyboards]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub AnswerCallbackQuery (AnswerCallbackQuerySetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the query to be answered
|
||||
pub callback_query_id: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Text of the notification. If not specified, nothing will be shown to the user, 0-200 characters
|
||||
pub text: String [into],
|
||||
/// If true, an alert will be shown by the client instead of a notification at the top of the chat screen. Defaults to false.
|
||||
pub show_alert: bool,
|
||||
/// 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.
|
||||
///
|
||||
/// [@Botfather]: https://t.me/botfather
|
||||
/// [`Game`]: crate::types::Game
|
||||
/// [callback_game]: https://core.telegram.org/bots/api#inlinekeyboardbutton
|
||||
pub url: String [into],
|
||||
/// 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.
|
||||
pub cache_time: u32,
|
||||
}
|
||||
}
|
||||
}
|
36
src/payloads/answer_inline_query.rs
Normal file
36
src/payloads/answer_inline_query.rs
Normal file
|
@ -0,0 +1,36 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{InlineQueryResult, True};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send answers to an inline query. On success, _True_ is returned. No more than **50** results per query are allowed.
|
||||
#[derive(Debug, PartialEq, Clone, Serialize)]
|
||||
pub AnswerInlineQuery (AnswerInlineQuerySetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the answered query
|
||||
pub inline_query_id: String [into],
|
||||
/// A JSON-serialized array of results for the inline query
|
||||
pub results: Vec<InlineQueryResult> [collect],
|
||||
}
|
||||
optional {
|
||||
/// The maximum amount of time in seconds that the result of the inline query may be cached on the server. Defaults to 300.
|
||||
pub cache_time: u32,
|
||||
/// 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
|
||||
pub is_personal: bool,
|
||||
/// 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.
|
||||
pub next_offset: String [into],
|
||||
/// If passed, clients will display a button with specified text that switches the user to a private chat with the bot and sends the bot a start message with the parameter switch_pm_parameter
|
||||
pub switch_pm_text: String [into],
|
||||
/// [Deep-linking] parameter for the /start message sent to the bot when user presses the switch button. 1-64 characters, only `A-Z`, `a-z`, `0-9`, `_` and `-` are allowed.
|
||||
///
|
||||
/// _Example_: An inline bot that sends YouTube videos can ask the user to connect the bot to their YouTube account to adapt search results accordingly. To do this, it displays a 'Connect your YouTube account' button above the results, or even before showing any. The user presses the button, switches to a private chat with the bot and, in doing so, passes a start parameter that instructs the bot to return an oauth link. Once done, the bot can offer a [switch_inline] button so that the user can easily return to the chat where they wanted to use the bot's inline capabilities.
|
||||
///
|
||||
/// [switch_inline]: https://core.telegram.org/bots/api#inlinekeyboardmarkup
|
||||
/// [Deep-linking]: https://core.telegram.org/bots#deep-linking
|
||||
pub switch_pm_parameter: String [into],
|
||||
}
|
||||
}
|
||||
}
|
25
src/payloads/answer_pre_checkout_query.rs
Normal file
25
src/payloads/answer_pre_checkout_query.rs
Normal file
|
@ -0,0 +1,25 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::True;
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
///
|
||||
/// [`Update`]: crate::types::Update
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub AnswerPreCheckoutQuery (AnswerPreCheckoutQuerySetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the query to be answered
|
||||
pub pre_checkout_query_id: String [into],
|
||||
/// 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.
|
||||
pub ok: bool,
|
||||
}
|
||||
optional {
|
||||
/// 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.
|
||||
pub error_message: String [into],
|
||||
}
|
||||
}
|
||||
}
|
27
src/payloads/answer_shipping_query.rs
Normal file
27
src/payloads/answer_shipping_query.rs
Normal file
|
@ -0,0 +1,27 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ShippingOption, True};
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
///
|
||||
/// [`Update`]: crate::types::Update
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub AnswerShippingQuery (AnswerShippingQuerySetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the query to be answered
|
||||
pub shipping_query_id: String [into],
|
||||
/// Specify 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)
|
||||
pub ok: bool,
|
||||
}
|
||||
optional {
|
||||
/// Required if ok is True. A JSON-serialized array of available shipping options.
|
||||
pub shipping_options: Vec<ShippingOption> [collect],
|
||||
/// 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.
|
||||
pub error_message: String [into],
|
||||
}
|
||||
}
|
||||
}
|
35
src/payloads/create_new_sticker_set.rs
Normal file
35
src/payloads/create_new_sticker_set.rs
Normal file
|
@ -0,0 +1,35 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{InputFile, MaskPosition, True};
|
||||
|
||||
impl_payload! {
|
||||
/// 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. You must use exactly one of the fields _png\_sticker_ or _tgs\_sticker_. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Clone, Serialize)]
|
||||
pub CreateNewStickerSet (CreateNewStickerSetSetters) => True {
|
||||
required {
|
||||
/// User identifier of sticker file owner
|
||||
pub user_id: i32,
|
||||
/// 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\_<bot username>”. <bot\_username>_ is case insensitive. 1-64 characters.
|
||||
pub name: String [into],
|
||||
/// Sticker set title, 1-64 characters
|
||||
pub title: String [into],
|
||||
/// One or more emoji corresponding to the sticker
|
||||
pub emojis: String [into],
|
||||
}
|
||||
optional {
|
||||
/// **PNG** image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px. 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 info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub png_sticker: InputFile,
|
||||
/// **TGS** animation with the sticker, uploaded using multipart/form-data. See https://core.telegram.org/animated_stickers#technical-requirements for technical requirements
|
||||
pub tgs_sticker: InputFile,
|
||||
/// Pass _True_, if a set of mask stickers should be created
|
||||
pub contains_masks: bool,
|
||||
/// A JSON-serialized object for position where the mask should be placed on faces
|
||||
pub mask_position: MaskPosition,
|
||||
}
|
||||
}
|
||||
}
|
17
src/payloads/delete_chat_photo.rs
Normal file
17
src/payloads/delete_chat_photo.rs
Normal file
|
@ -0,0 +1,17 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::ChatId;
|
||||
|
||||
impl_payload! {
|
||||
/// 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 admin rights. Returns True on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub DeleteChatPhoto (DeleteChatPhotoSetters) => String {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
}
|
||||
}
|
||||
}
|
19
src/payloads/delete_chat_sticker_set.rs
Normal file
19
src/payloads/delete_chat_sticker_set.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, True};
|
||||
|
||||
impl_payload! {
|
||||
/// 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 admin 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.
|
||||
///
|
||||
/// [`GetChat`]: crate::payloads::GetChat
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub DeleteChatStickerSet (DeleteChatStickerSetSetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
}
|
||||
}
|
||||
}
|
28
src/payloads/delete_message.rs
Normal file
28
src/payloads/delete_message.rs
Normal file
|
@ -0,0 +1,28 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, True};
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
/// - 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.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub DeleteMessage (DeleteMessageSetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).
|
||||
pub chat_id: ChatId [into],
|
||||
/// Identifier of the message to delete
|
||||
pub message_id: i32,
|
||||
}
|
||||
}
|
||||
}
|
17
src/payloads/delete_sticker_from_set.rs
Normal file
17
src/payloads/delete_sticker_from_set.rs
Normal file
|
@ -0,0 +1,17 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::True;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to delete a sticker from a set created by the bot. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub DeleteStickerFromSet (DeleteStickerFromSetSetters) => True {
|
||||
required {
|
||||
/// File identifier of the sticker
|
||||
pub sticker: String [into],
|
||||
}
|
||||
}
|
||||
}
|
16
src/payloads/delete_webhook.rs
Normal file
16
src/payloads/delete_webhook.rs
Normal file
|
@ -0,0 +1,16 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::True;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to remove webhook integration if you decide to switch back to [`GetUpdates`]. Returns True on success. Requires no parameters.
|
||||
///
|
||||
/// [`GetUpdates`]: crate::payloads::GetUpdates
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Default, Clone, Serialize)]
|
||||
pub DeleteWebhook (DeleteWebhookSetters) => True {
|
||||
|
||||
}
|
||||
}
|
33
src/payloads/edit_message_caption.rs
Normal file
33
src/payloads/edit_message_caption.rs
Normal file
|
@ -0,0 +1,33 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InlineKeyboardMarkup, Message, ParseMode};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to edit captions of messages. On success, the edited Message is returned.
|
||||
///
|
||||
/// See also: [`EditMessageCaptionInline`](crate::payloads::EditMessageCaptionInline)
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub EditMessageCaption (EditMessageCaptionSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).
|
||||
pub chat_id: ChatId [into],
|
||||
/// Identifier of the message to edit
|
||||
pub message_id: i32,
|
||||
/// New caption of the message, 0-1024 characters after entities parsing
|
||||
pub caption: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Mode for parsing entities in the message text. See [formatting options] for more details.
|
||||
///
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub parse_mode: ParseMode,
|
||||
/// A JSON-serialized object for an [inline keyboard].
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: InlineKeyboardMarkup,
|
||||
}
|
||||
}
|
||||
}
|
31
src/payloads/edit_message_caption_inline.rs
Normal file
31
src/payloads/edit_message_caption_inline.rs
Normal file
|
@ -0,0 +1,31 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{InlineKeyboardMarkup, ParseMode, True};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to edit captions of messages. On success, _True_ is returned.
|
||||
///
|
||||
/// See also: [`EditMessageCaption`](crate::payloads::EditMessageCaption)
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub EditMessageCaptionInline (EditMessageCaptionInlineSetters) => True {
|
||||
required {
|
||||
/// Identifier of the inline message
|
||||
pub inline_message_id: String [into],
|
||||
/// New caption of the message, 0-1024 characters after entities parsing
|
||||
pub caption: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Mode for parsing entities in the message text. See [formatting options] for more details.
|
||||
///
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub parse_mode: ParseMode,
|
||||
/// A JSON-serialized object for an [inline keyboard].
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: InlineKeyboardMarkup,
|
||||
}
|
||||
}
|
||||
}
|
34
src/payloads/edit_message_live_location.rs
Normal file
34
src/payloads/edit_message_live_location.rs
Normal file
|
@ -0,0 +1,34 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, Message, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
///
|
||||
/// See also: [`EditMessageLiveLocationInline`](crate::payloads::EditMessageLiveLocationInline)
|
||||
///
|
||||
/// [`StopMessageLiveLocation`]: crate::payloads::StopMessageLiveLocation
|
||||
#[derive(Debug, PartialEq, Clone, Serialize)]
|
||||
pub EditMessageLiveLocation (EditMessageLiveLocationSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Identifier of the message to edit
|
||||
pub message_id: i32,
|
||||
/// Latitude of new location
|
||||
pub latitude: f64,
|
||||
/// Longitude of new location
|
||||
pub longitude: f64,
|
||||
}
|
||||
optional {
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
32
src/payloads/edit_message_live_location_inline.rs
Normal file
32
src/payloads/edit_message_live_location_inline.rs
Normal file
|
@ -0,0 +1,32 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{Message, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
///
|
||||
/// See also: [`EditMessageLiveLocation`](crate::payloads::EditMessageLiveLocation)
|
||||
///
|
||||
/// [`StopMessageLiveLocation`]: crate::payloads::StopMessageLiveLocation
|
||||
#[derive(Debug, PartialEq, Clone, Serialize)]
|
||||
pub EditMessageLiveLocationInline (EditMessageLiveLocationInlineSetters) => Message {
|
||||
required {
|
||||
/// Identifier of the inline message
|
||||
pub inline_message_id: String [into],
|
||||
/// Latitude of new location
|
||||
pub latitude: f64,
|
||||
/// Longitude of new location
|
||||
pub longitude: f64,
|
||||
}
|
||||
optional {
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
29
src/payloads/edit_message_media.rs
Normal file
29
src/payloads/edit_message_media.rs
Normal file
|
@ -0,0 +1,29 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InlineKeyboardMarkup, InputMedia, Message};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to edit animation, audio, document, photo, or video messages. If a message is a part of a message album, then it can be edited only to a photo or a video. Otherwise, message type can be changed arbitrarily. When inline message is edited, new file can't be uploaded. Use previously uploaded file via its file_id or specify a URL. On success, the edited Message is returned.
|
||||
///
|
||||
/// See also: [`EditMessageMediaInline`](crate::payloads::EditMessageMediaInline)
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub EditMessageMedia (EditMessageMediaSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).
|
||||
pub chat_id: ChatId [into],
|
||||
/// Identifier of the message to edit
|
||||
pub message_id: i32,
|
||||
/// A JSON-serialized object for a new media content of the message
|
||||
pub media: InputMedia,
|
||||
}
|
||||
optional {
|
||||
/// A JSON-serialized object for an [inline keyboard].
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: InlineKeyboardMarkup,
|
||||
}
|
||||
}
|
||||
}
|
27
src/payloads/edit_message_media_inline.rs
Normal file
27
src/payloads/edit_message_media_inline.rs
Normal file
|
@ -0,0 +1,27 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{InlineKeyboardMarkup, InputMedia, True};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to edit animation, audio, document, photo, or video messages. If a message is a part of a message album, then it can be edited only to a photo or a video. Otherwise, message type can be changed arbitrarily. When inline message is edited, new file can't be uploaded. Use previously uploaded file via its file_id or specify a URL. On success, _True_ is returned.
|
||||
///
|
||||
/// See also: [`EditMessageMedia`](crate::payloads::EditMessageMedia)
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub EditMessageMediaInline (EditMessageMediaInlineSetters) => True {
|
||||
required {
|
||||
/// Identifier of the inline message
|
||||
pub inline_message_id: String [into],
|
||||
/// A JSON-serialized object for a new media content of the message
|
||||
pub media: InputMedia,
|
||||
}
|
||||
optional {
|
||||
/// A JSON-serialized object for an [inline keyboard].
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: InlineKeyboardMarkup,
|
||||
}
|
||||
}
|
||||
}
|
27
src/payloads/edit_message_reply_markup.rs
Normal file
27
src/payloads/edit_message_reply_markup.rs
Normal file
|
@ -0,0 +1,27 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InlineKeyboardMarkup, Message};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to edit only the reply markup of messages. On success, the edited Message is returned.
|
||||
///
|
||||
/// See also: [`EditMessageMediaInline`](crate::payloads::EditMessageMediaInline)
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub EditMessageReplyMarkup (EditMessageReplyMarkupSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).
|
||||
pub chat_id: ChatId [into],
|
||||
/// Identifier of the message to edit
|
||||
pub message_id: i32,
|
||||
}
|
||||
optional {
|
||||
/// A JSON-serialized object for an [inline keyboard].
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: InlineKeyboardMarkup,
|
||||
}
|
||||
}
|
||||
}
|
25
src/payloads/edit_message_reply_markup_inline.rs
Normal file
25
src/payloads/edit_message_reply_markup_inline.rs
Normal file
|
@ -0,0 +1,25 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{InlineKeyboardMarkup, True};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to edit only the reply markup of messages. On success, _True_ is returned.
|
||||
///
|
||||
/// See also: [`EditMessageReplyMarkup`](crate::payloads::EditMessageReplyMarkup)
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub EditMessageReplyMarkupInline (EditMessageReplyMarkupInlineSetters) => True {
|
||||
required {
|
||||
/// Identifier of the inline message
|
||||
pub inline_message_id: String [into],
|
||||
}
|
||||
optional {
|
||||
/// A JSON-serialized object for an [inline keyboard].
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: InlineKeyboardMarkup,
|
||||
}
|
||||
}
|
||||
}
|
37
src/payloads/edit_message_text.rs
Normal file
37
src/payloads/edit_message_text.rs
Normal file
|
@ -0,0 +1,37 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InlineKeyboardMarkup, Message, ParseMode};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to edit text and [games] messages. On success, the edited Message is returned.
|
||||
///
|
||||
/// See also: [`EditMessageTextInline`](crate::payloads::EditMessageTextInline)
|
||||
///
|
||||
/// [games]: https://core.telegram.org/bots/api#games
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub EditMessageText (EditMessageTextSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).
|
||||
pub chat_id: ChatId [into],
|
||||
/// Identifier of the message to edit
|
||||
pub message_id: i32,
|
||||
/// New text of the message, 1-4096 characters after entities parsing
|
||||
pub text: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Mode for parsing entities in the message text. See [formatting options] for more details.
|
||||
///
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub parse_mode: ParseMode,
|
||||
/// Disables link previews for links in this message
|
||||
pub disable_web_page_preview: bool,
|
||||
/// A JSON-serialized object for an [inline keyboard].
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: InlineKeyboardMarkup,
|
||||
}
|
||||
}
|
||||
}
|
35
src/payloads/edit_message_text_inline.rs
Normal file
35
src/payloads/edit_message_text_inline.rs
Normal file
|
@ -0,0 +1,35 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{InlineKeyboardMarkup, ParseMode, True};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to edit text and [games] messages. On success, _True_ is returned.
|
||||
///
|
||||
/// See also: [`EditMessageText`](crate::payloads::EditMessageText)
|
||||
///
|
||||
/// [games]: https://core.telegram.org/bots/api#games
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub EditMessageTextInline (EditMessageTextInlineSetters) => True {
|
||||
required {
|
||||
/// Identifier of the inline message
|
||||
pub inline_message_id: String [into],
|
||||
/// New text of the message, 1-4096 characters after entities parsing
|
||||
pub text: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Mode for parsing entities in the message text. See [formatting options] for more details.
|
||||
///
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub parse_mode: ParseMode,
|
||||
/// Disables link previews for links in this message
|
||||
pub disable_web_page_preview: bool,
|
||||
/// A JSON-serialized object for an [inline keyboard].
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: InlineKeyboardMarkup,
|
||||
}
|
||||
}
|
||||
}
|
19
src/payloads/export_chat_invite_link.rs
Normal file
19
src/payloads/export_chat_invite_link.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::ChatId;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to generate a new invite link for a chat; any previously generated link is revoked. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns the new invite link as String on success.
|
||||
///
|
||||
/// > Note: Each administrator in a chat generates their own invite links. Bots can't use invite links generated by other administrators. If you want your bot to work with invite links, it will need to generate its own link using exportChatInviteLink — after this the link will become available to the bot via the getChat method. If your bot needs to generate a new invite link replacing its previous one, use exportChatInviteLink again.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub ExportChatInviteLink (ExportChatInviteLinkSetters) => String {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
}
|
||||
}
|
||||
}
|
29
src/payloads/forward_message.rs
Normal file
29
src/payloads/forward_message.rs
Normal file
|
@ -0,0 +1,29 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, Message};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to forward messages of any kind. On success, the sent [`Message`] is returned.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub ForwardMessage (ForwardMessageSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Unique identifier for the chat where the original message was sent (or channel username in the format `@channelusername`)
|
||||
pub from_chat_id: ChatId [into],
|
||||
/// Message identifier in the chat specified in _from\_chat\_id_
|
||||
pub message_id: i32,
|
||||
}
|
||||
optional {
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
}
|
||||
}
|
||||
}
|
19
src/payloads/get_chat.rs
Normal file
19
src/payloads/get_chat.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{Chat, ChatId};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to get up to date information about the chat (current name of the user for one-on-one conversations, current username of a user, group or channel, etc.). Returns a [`Chat`] object on success.
|
||||
///
|
||||
/// [`Chat`]: crate::types::Chat
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub GetChat (GetChatSetters) => Chat {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
}
|
||||
}
|
||||
}
|
19
src/payloads/get_chat_administrators.rs
Normal file
19
src/payloads/get_chat_administrators.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, ChatMember};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to get a list of administrators in a chat. On success, returns an Array of [`ChatMember`] objects that contains information about all chat administrators except other bots. If the chat is a group or a supergroup and no administrators were appointed, only the creator will be returned.
|
||||
///
|
||||
/// [`ChatMember`]: crate::types::ChatMember
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub GetChatAdministrators (GetChatAdministratorsSetters) => ChatMember {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
}
|
||||
}
|
||||
}
|
21
src/payloads/get_chat_member.rs
Normal file
21
src/payloads/get_chat_member.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, ChatMember};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to get information about a member of a chat. Returns a [`ChatMember`] object on success.
|
||||
///
|
||||
/// [`ChatMember`]: crate::types::ChatMember
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub GetChatMember (GetChatMemberSetters) => ChatMember {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Unique identifier of the target user
|
||||
pub user_id: i32,
|
||||
}
|
||||
}
|
||||
}
|
17
src/payloads/get_chat_members_count.rs
Normal file
17
src/payloads/get_chat_members_count.rs
Normal file
|
@ -0,0 +1,17 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::ChatId;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to get the number of members in a chat. Returns _Int_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub GetChatMembersCount (GetChatMembersCountSetters) => u32 {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
}
|
||||
}
|
||||
}
|
20
src/payloads/get_file.rs
Normal file
20
src/payloads/get_file.rs
Normal file
|
@ -0,0 +1,20 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::File;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to get basic info 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<token>/<file_path>`, where `<file_path>` 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.
|
||||
///
|
||||
/// [`File`]: crate::types::File
|
||||
/// [`GetFile`]: crate::payloads::GetFile
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub GetFile (GetFileSetters) => File {
|
||||
required {
|
||||
/// File identifier to get info about
|
||||
pub file_id: String [into],
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,12 +1,16 @@
|
|||
use serde::{Deserialize, Serialize};
|
||||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::User;
|
||||
|
||||
impl_payload! {
|
||||
/// A filter method for testing your bot's auth token. Requires no parameters.
|
||||
/// Returns basic information about the bot in form of a [`User`] object.
|
||||
/// A simple method for testing your bot's auth token. Requires no parameters. Returns basic information about the bot in form of a [`User`] object.
|
||||
///
|
||||
/// [`User`]: crate::types::User
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy, Default, Deserialize, Serialize)]
|
||||
pub GetMe (GetMeSetters) => User {}
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Default, Clone, Serialize)]
|
||||
pub GetMe (GetMeSetters) => User {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
14
src/payloads/get_my_commands.rs
Normal file
14
src/payloads/get_my_commands.rs
Normal file
|
@ -0,0 +1,14 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to get the current list of the bot's commands. Requires no parameters. Returns Array of [`BotCommand`] on success.
|
||||
///
|
||||
/// [`BotCommand`]: crate::types::BotCommand
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Default, Clone, Serialize)]
|
||||
pub GetMyCommands (GetMyCommandsSetters) => u32 {
|
||||
|
||||
}
|
||||
}
|
17
src/payloads/get_sticker_set.rs
Normal file
17
src/payloads/get_sticker_set.rs
Normal file
|
@ -0,0 +1,17 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::True;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to get a sticker set. On success, a StickerSet object is returned.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub GetStickerSet (GetStickerSetSetters) => True {
|
||||
required {
|
||||
/// Name of the sticker set
|
||||
pub name: String [into],
|
||||
}
|
||||
}
|
||||
}
|
33
src/payloads/get_updates.rs
Normal file
33
src/payloads/get_updates.rs
Normal file
|
@ -0,0 +1,33 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{AllowedUpdate, Update};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to receive incoming updates using long polling ([wiki]). An Array of [`Update`] objects is returned.
|
||||
///
|
||||
/// [wiki]: https://en.wikipedia.org/wiki/Push_technology#Long_polling
|
||||
/// [`Update`]: crate::types::Update
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Default, Clone, Serialize)]
|
||||
pub GetUpdates (GetUpdatesSetters) => Vec<Update> {
|
||||
|
||||
optional {
|
||||
/// 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 forgotten.
|
||||
///
|
||||
/// [`GetUpdates`]: crate::payloads::GetUpdates
|
||||
pub offset: i64,
|
||||
/// Limits the number of updates to be retrieved. Values between 1-100 are accepted. Defaults to 100.
|
||||
pub limit: u8,
|
||||
/// 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.
|
||||
pub timeout: u32,
|
||||
/// 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 updates regardless of type (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.
|
||||
///
|
||||
/// [`Update`]: crate::types::Update
|
||||
pub allowed_updates: Vec<AllowedUpdate> [collect],
|
||||
}
|
||||
}
|
||||
}
|
25
src/payloads/get_user_profile_photos.rs
Normal file
25
src/payloads/get_user_profile_photos.rs
Normal file
|
@ -0,0 +1,25 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::UserProfilePhotos;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to get a list of profile pictures for a user. Returns a [`UserProfilePhotos`] object.
|
||||
///
|
||||
/// [`UserProfilePhotos`]: crate::types::UserProfilePhotos
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub GetUserProfilePhotos (GetUserProfilePhotosSetters) => UserProfilePhotos {
|
||||
required {
|
||||
/// Unique identifier of the target user
|
||||
pub user_id: i32,
|
||||
}
|
||||
optional {
|
||||
/// Sequential number of the first photo to be returned. By default, all photos are returned.
|
||||
pub offset: u32,
|
||||
/// Limits the number of photos to be retrieved. Values between 1-100 are accepted. Defaults to 100.
|
||||
pub limit: u8,
|
||||
}
|
||||
}
|
||||
}
|
17
src/payloads/get_webhook_info.rs
Normal file
17
src/payloads/get_webhook_info.rs
Normal file
|
@ -0,0 +1,17 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::WebhookInfo;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to get current webhook status. Requires no parameters. On success, returns a [`WebhookInfo`] object. If the bot is using [`GetUpdates`], will return an object with the _url_ field empty.
|
||||
///
|
||||
/// [`GetUpdates`]: crate::payloads::GetUpdates
|
||||
/// [`WebhookInfo`]: crate::types::WebhookInfo
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Default, Clone, Serialize)]
|
||||
pub GetWebhookInfo (GetWebhookInfoSetters) => WebhookInfo {
|
||||
|
||||
}
|
||||
}
|
25
src/payloads/kick_chat_member.rs
Normal file
25
src/payloads/kick_chat_member.rs
Normal file
|
@ -0,0 +1,25 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, True};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to kick a user from a group, a supergroup or a channel. In the case of supergroups and channels, the user will not be able to return to the group 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 admin rights. Returns _True_ on success.
|
||||
///
|
||||
/// [unbanned]: crate::payloads::UnbanChatMember
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub KickChatMember (KickChatMemberSetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Unique identifier of the target user
|
||||
pub user_id: i32,
|
||||
}
|
||||
optional {
|
||||
/// 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
|
||||
pub until_date: u64,
|
||||
}
|
||||
}
|
||||
}
|
17
src/payloads/leave_chat.rs
Normal file
17
src/payloads/leave_chat.rs
Normal file
|
@ -0,0 +1,17 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::ChatId;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method for your bot to leave a group, supergroup or channel. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub LeaveChat (LeaveChatSetters) => String {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +1,168 @@
|
|||
//! Payloads - data types sended to relegram
|
||||
|
||||
/// This module reexports all setters traits as `_`. When used with a glob
|
||||
/// import:
|
||||
/// ```
|
||||
/// use teloxide_core::payloads::setters::*;
|
||||
/// ```
|
||||
/// It allows you to use all payloads setters, without polluting your namespace.
|
||||
pub mod setters;
|
||||
|
||||
// This block is auto generated by `cg` <https://github.com/teloxide/cg> (878e847).
|
||||
// **DO NOT EDIT THIS BLOCK**,
|
||||
// edit `cg` instead.
|
||||
mod add_sticker_to_set;
|
||||
mod answer_callback_query;
|
||||
mod answer_inline_query;
|
||||
mod answer_pre_checkout_query;
|
||||
mod answer_shipping_query;
|
||||
mod create_new_sticker_set;
|
||||
mod delete_chat_photo;
|
||||
mod delete_chat_sticker_set;
|
||||
mod delete_message;
|
||||
mod delete_sticker_from_set;
|
||||
mod delete_webhook;
|
||||
mod edit_message_caption;
|
||||
mod edit_message_caption_inline;
|
||||
mod edit_message_live_location;
|
||||
mod edit_message_live_location_inline;
|
||||
mod edit_message_media;
|
||||
mod edit_message_media_inline;
|
||||
mod edit_message_reply_markup;
|
||||
mod edit_message_reply_markup_inline;
|
||||
mod edit_message_text;
|
||||
mod edit_message_text_inline;
|
||||
mod export_chat_invite_link;
|
||||
mod forward_message;
|
||||
mod get_chat;
|
||||
mod get_chat_administrators;
|
||||
mod get_chat_member;
|
||||
mod get_chat_members_count;
|
||||
mod get_file;
|
||||
mod get_me;
|
||||
mod get_my_commands;
|
||||
mod get_sticker_set;
|
||||
mod get_updates;
|
||||
mod get_user_profile_photos;
|
||||
mod get_webhook_info;
|
||||
mod kick_chat_member;
|
||||
mod leave_chat;
|
||||
mod pin_chat_message;
|
||||
mod promote_chat_member;
|
||||
mod restrict_chat_member;
|
||||
mod send_animation;
|
||||
mod send_audio;
|
||||
mod send_chat_action;
|
||||
mod send_contact;
|
||||
mod send_dice;
|
||||
mod send_document;
|
||||
mod send_invoice;
|
||||
mod send_location;
|
||||
mod send_media_group;
|
||||
mod send_message;
|
||||
mod send_photo;
|
||||
mod send_poll;
|
||||
mod send_sticker;
|
||||
mod send_venue;
|
||||
mod send_video;
|
||||
mod send_video_note;
|
||||
mod send_voice;
|
||||
mod set_chat_administrator_custom_title;
|
||||
mod set_chat_description;
|
||||
mod set_chat_permissions;
|
||||
mod set_chat_photo;
|
||||
mod set_chat_sticker_set;
|
||||
mod set_chat_title;
|
||||
mod set_my_commands;
|
||||
mod set_passport_data_errors;
|
||||
mod set_sticker_position_in_set;
|
||||
mod set_sticker_set_thumb;
|
||||
mod set_webhook;
|
||||
mod stop_message_live_location;
|
||||
mod stop_message_live_location_inline;
|
||||
mod stop_poll;
|
||||
mod unban_chat_member;
|
||||
mod unpin_chat_message;
|
||||
mod upload_sticker_file;
|
||||
|
||||
pub use add_sticker_to_set::{AddStickerToSet, AddStickerToSetSetters};
|
||||
pub use answer_callback_query::{AnswerCallbackQuery, AnswerCallbackQuerySetters};
|
||||
pub use answer_inline_query::{AnswerInlineQuery, AnswerInlineQuerySetters};
|
||||
pub use answer_pre_checkout_query::{AnswerPreCheckoutQuery, AnswerPreCheckoutQuerySetters};
|
||||
pub use answer_shipping_query::{AnswerShippingQuery, AnswerShippingQuerySetters};
|
||||
pub use create_new_sticker_set::{CreateNewStickerSet, CreateNewStickerSetSetters};
|
||||
pub use delete_chat_photo::{DeleteChatPhoto, DeleteChatPhotoSetters};
|
||||
pub use delete_chat_sticker_set::{DeleteChatStickerSet, DeleteChatStickerSetSetters};
|
||||
pub use delete_message::{DeleteMessage, DeleteMessageSetters};
|
||||
pub use delete_sticker_from_set::{DeleteStickerFromSet, DeleteStickerFromSetSetters};
|
||||
pub use delete_webhook::{DeleteWebhook, DeleteWebhookSetters};
|
||||
pub use edit_message_caption::{EditMessageCaption, EditMessageCaptionSetters};
|
||||
pub use edit_message_caption_inline::{EditMessageCaptionInline, EditMessageCaptionInlineSetters};
|
||||
pub use edit_message_live_location::{EditMessageLiveLocation, EditMessageLiveLocationSetters};
|
||||
pub use edit_message_live_location_inline::{
|
||||
EditMessageLiveLocationInline, EditMessageLiveLocationInlineSetters,
|
||||
};
|
||||
pub use edit_message_media::{EditMessageMedia, EditMessageMediaSetters};
|
||||
pub use edit_message_media_inline::{EditMessageMediaInline, EditMessageMediaInlineSetters};
|
||||
pub use edit_message_reply_markup::{EditMessageReplyMarkup, EditMessageReplyMarkupSetters};
|
||||
pub use edit_message_reply_markup_inline::{
|
||||
EditMessageReplyMarkupInline, EditMessageReplyMarkupInlineSetters,
|
||||
};
|
||||
pub use edit_message_text::{EditMessageText, EditMessageTextSetters};
|
||||
pub use edit_message_text_inline::{EditMessageTextInline, EditMessageTextInlineSetters};
|
||||
pub use export_chat_invite_link::{ExportChatInviteLink, ExportChatInviteLinkSetters};
|
||||
pub use forward_message::{ForwardMessage, ForwardMessageSetters};
|
||||
pub use get_chat::{GetChat, GetChatSetters};
|
||||
pub use get_chat_administrators::{GetChatAdministrators, GetChatAdministratorsSetters};
|
||||
pub use get_chat_member::{GetChatMember, GetChatMemberSetters};
|
||||
pub use get_chat_members_count::{GetChatMembersCount, GetChatMembersCountSetters};
|
||||
pub use get_file::{GetFile, GetFileSetters};
|
||||
pub use get_me::{GetMe, GetMeSetters};
|
||||
pub use get_my_commands::{GetMyCommands, GetMyCommandsSetters};
|
||||
pub use get_sticker_set::{GetStickerSet, GetStickerSetSetters};
|
||||
pub use get_updates::{GetUpdates, GetUpdatesSetters};
|
||||
pub use get_user_profile_photos::{GetUserProfilePhotos, GetUserProfilePhotosSetters};
|
||||
pub use get_webhook_info::{GetWebhookInfo, GetWebhookInfoSetters};
|
||||
pub use kick_chat_member::{KickChatMember, KickChatMemberSetters};
|
||||
pub use leave_chat::{LeaveChat, LeaveChatSetters};
|
||||
pub use pin_chat_message::{PinChatMessage, PinChatMessageSetters};
|
||||
pub use promote_chat_member::{PromoteChatMember, PromoteChatMemberSetters};
|
||||
pub use restrict_chat_member::{RestrictChatMember, RestrictChatMemberSetters};
|
||||
pub use send_animation::{SendAnimation, SendAnimationSetters};
|
||||
pub use send_audio::{SendAudio, SendAudioSetters};
|
||||
pub use send_chat_action::{SendChatAction, SendChatActionSetters};
|
||||
pub use send_contact::{SendContact, SendContactSetters};
|
||||
pub use send_dice::{SendDice, SendDiceSetters};
|
||||
pub use send_document::{SendDocument, SendDocumentSetters};
|
||||
pub use send_invoice::{SendInvoice, SendInvoiceSetters};
|
||||
pub use send_location::{SendLocation, SendLocationSetters};
|
||||
pub use send_media_group::{SendMediaGroup, SendMediaGroupSetters};
|
||||
pub use send_message::{SendMessage, SendMessageSetters};
|
||||
pub use send_photo::{SendPhoto, SendPhotoSetters};
|
||||
pub use send_poll::{SendPoll, SendPollSetters};
|
||||
pub use send_sticker::{SendSticker, SendStickerSetters};
|
||||
pub use send_venue::{SendVenue, SendVenueSetters};
|
||||
pub use send_video::{SendVideo, SendVideoSetters};
|
||||
pub use send_video_note::{SendVideoNote, SendVideoNoteSetters};
|
||||
pub use send_voice::{SendVoice, SendVoiceSetters};
|
||||
pub use set_chat_administrator_custom_title::{
|
||||
SetChatAdministratorCustomTitle, SetChatAdministratorCustomTitleSetters,
|
||||
};
|
||||
pub use set_chat_description::{SetChatDescription, SetChatDescriptionSetters};
|
||||
pub use set_chat_permissions::{SetChatPermissions, SetChatPermissionsSetters};
|
||||
pub use set_chat_photo::{SetChatPhoto, SetChatPhotoSetters};
|
||||
pub use set_chat_sticker_set::{SetChatStickerSet, SetChatStickerSetSetters};
|
||||
pub use set_chat_title::{SetChatTitle, SetChatTitleSetters};
|
||||
pub use set_my_commands::{SetMyCommands, SetMyCommandsSetters};
|
||||
pub use set_passport_data_errors::{SetPassportDataErrors, SetPassportDataErrorsSetters};
|
||||
pub use set_sticker_position_in_set::{SetStickerPositionInSet, SetStickerPositionInSetSetters};
|
||||
pub use set_sticker_set_thumb::{SetStickerSetThumb, SetStickerSetThumbSetters};
|
||||
pub use set_webhook::{SetWebhook, SetWebhookSetters};
|
||||
pub use stop_message_live_location::{StopMessageLiveLocation, StopMessageLiveLocationSetters};
|
||||
pub use stop_message_live_location_inline::{
|
||||
StopMessageLiveLocationInline, StopMessageLiveLocationInlineSetters,
|
||||
};
|
||||
pub use stop_poll::{StopPoll, StopPollSetters};
|
||||
pub use unban_chat_member::{UnbanChatMember, UnbanChatMemberSetters};
|
||||
pub use unpin_chat_message::{UnpinChatMessage, UnpinChatMessageSetters};
|
||||
pub use upload_sticker_file::{UploadStickerFile, UploadStickerFileSetters};
|
||||
|
|
23
src/payloads/pin_chat_message.rs
Normal file
23
src/payloads/pin_chat_message.rs
Normal file
|
@ -0,0 +1,23 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::ChatId;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to pin a message in a group, a supergroup, or a channel. The bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' admin right in the supergroup or 'can_edit_messages' admin right in the channel. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub PinChatMessage (PinChatMessageSetters) => String {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Identifier of a message to pin
|
||||
pub message_id: i32,
|
||||
}
|
||||
optional {
|
||||
/// 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.
|
||||
pub disable_notification: bool,
|
||||
}
|
||||
}
|
||||
}
|
37
src/payloads/promote_chat_member.rs
Normal file
37
src/payloads/promote_chat_member.rs
Normal file
|
@ -0,0 +1,37 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, True};
|
||||
|
||||
impl_payload! {
|
||||
/// 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 admin rights. Pass _False_ for all boolean parameters to demote a user. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub PromoteChatMember (PromoteChatMemberSetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Unique identifier of the target user
|
||||
pub user_id: i32,
|
||||
}
|
||||
optional {
|
||||
/// Pass True, if the administrator can change chat title, photo and other settings
|
||||
pub can_change_info: bool,
|
||||
/// Pass True, if the administrator can create channel posts, channels only
|
||||
pub can_post_messages: bool,
|
||||
/// Pass True, if the administrator can edit messages of other users and can pin messages, channels only
|
||||
pub can_edit_messages: bool,
|
||||
/// Pass True, if the administrator can delete messages of other users
|
||||
pub can_delete_messages: bool,
|
||||
/// Pass True, if the administrator can invite new users to the chat
|
||||
pub can_invite_users: bool,
|
||||
/// Pass True, if the administrator can restrict, ban or unban chat members
|
||||
pub can_restrict_members: bool,
|
||||
/// Pass True, if the administrator can pin messages, supergroups only
|
||||
pub can_pin_messages: bool,
|
||||
/// Pass True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that he has promoted, directly or indirectly (promoted by administrators that were appointed by him)
|
||||
pub can_promote_members: bool,
|
||||
}
|
||||
}
|
||||
}
|
25
src/payloads/restrict_chat_member.rs
Normal file
25
src/payloads/restrict_chat_member.rs
Normal file
|
@ -0,0 +1,25 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, ChatPermissions, True};
|
||||
|
||||
impl_payload! {
|
||||
/// 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 admin rights. Pass _True_ for all permissions to lift restrictions from a user. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub RestrictChatMember (RestrictChatMemberSetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Unique identifier of the target user
|
||||
pub user_id: i32,
|
||||
/// A JSON-serialized object for new user permissions
|
||||
pub permissions: ChatPermissions,
|
||||
}
|
||||
optional {
|
||||
/// 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
|
||||
pub until_date: u64,
|
||||
}
|
||||
}
|
||||
}
|
52
src/payloads/send_animation.rs
Normal file
52
src/payloads/send_animation.rs
Normal file
|
@ -0,0 +1,52 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InputFile, Message, ParseMode, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendAnimation (SendAnimationSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Animation 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 info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub animation: InputFile,
|
||||
/// Animation caption (may also be used when resending videos by _file\_id_), 0-1024 characters after entities parsing
|
||||
pub caption: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Duration of the animation in seconds
|
||||
pub duration: u32,
|
||||
/// Animation width
|
||||
pub width: u32,
|
||||
/// Animation height
|
||||
pub height: u32,
|
||||
/// 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://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. [More info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub thumb: InputFile,
|
||||
/// Mode for parsing entities in the animation caption. See [formatting options] for more details.
|
||||
///
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub parse_mode: ParseMode,
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
55
src/payloads/send_audio.rs
Normal file
55
src/payloads/send_audio.rs
Normal file
|
@ -0,0 +1,55 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InputFile, Message, ParseMode, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
/// [`SendVoice`]: crate::payloads::SendVoice
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendAudio (SendAudioSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// 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 info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub audio: InputFile,
|
||||
/// Audio caption, 0-1024 characters after entities parsing
|
||||
pub caption: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Mode for parsing entities in the audio caption. See [formatting options] for more details.
|
||||
///
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub parse_mode: ParseMode,
|
||||
/// Duration of the audio in seconds
|
||||
pub duration: u32,
|
||||
/// Performer
|
||||
pub performer: String [into],
|
||||
/// Track name
|
||||
pub title: String [into],
|
||||
/// 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://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. [More info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub thumb: InputFile,
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
33
src/payloads/send_chat_action.rs
Normal file
33
src/payloads/send_chat_action.rs
Normal file
|
@ -0,0 +1,33 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatAction, ChatId, Message};
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
///
|
||||
/// [ImageBot]: https://t.me/imagebot
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendChatAction (SendChatActionSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// 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_audio or upload_audio for [audio files], upload_document for [general files], find_location for [location data], record_video_note or upload_video_note for [video notes].
|
||||
///
|
||||
/// [audio files]: crate::payloads::SendAudio
|
||||
/// [video notes]: crate::payloads::SendVideoNote
|
||||
/// [videos]: crate::payloads::SendVideo
|
||||
/// [text messages]: crate::payloads::SendMessage
|
||||
/// [photos]: crate::payloads::SendPhoto
|
||||
/// [general files]: crate::payloads::SendDocument
|
||||
/// [location data]: crate::payloads::SendLocation
|
||||
pub action: ChatAction,
|
||||
}
|
||||
}
|
||||
}
|
42
src/payloads/send_contact.rs
Normal file
42
src/payloads/send_contact.rs
Normal file
|
@ -0,0 +1,42 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, Message, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send phone contacts. On success, the sent [`Message`] is returned.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Clone, Serialize)]
|
||||
pub SendContact (SendContactSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Contact's phone number
|
||||
pub phone_number: f64,
|
||||
/// Contact's first name
|
||||
pub first_name: f64,
|
||||
}
|
||||
optional {
|
||||
/// Contact's last name
|
||||
pub last_name: String [into],
|
||||
/// Additional data about the contact in the form of a [vCard], 0-2048 bytes
|
||||
///
|
||||
/// [vCard]: https://en.wikipedia.org/wiki/VCard
|
||||
pub vcard: String [into],
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
34
src/payloads/send_dice.rs
Normal file
34
src/payloads/send_dice.rs
Normal file
|
@ -0,0 +1,34 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, DiceEmoji, Message, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send an animated emoji that will display a random value. On success, the sent [`Message`] is returned.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendDice (SendDiceSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Emoji on which the dice throw animation is based. Currently, must be one of “🎲”, “🎯”, or “🏀”. Dice can have values 1-6 for “🎲” and “🎯”, and values 1-5 for “🏀”. Defaults to “🎲”
|
||||
pub emoji: DiceEmoji,
|
||||
}
|
||||
optional {
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
46
src/payloads/send_document.rs
Normal file
46
src/payloads/send_document.rs
Normal file
|
@ -0,0 +1,46 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InputFile, Message, ParseMode, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendDocument (SendDocumentSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// 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 info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub document: InputFile,
|
||||
/// Document caption (may also be used when resending documents by _file\_id_), 0-1024 characters after entities parsing
|
||||
pub caption: String [into],
|
||||
}
|
||||
optional {
|
||||
/// 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://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. [More info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub thumb: InputFile,
|
||||
/// Mode for parsing entities in the audio caption. See [formatting options] for more details.
|
||||
///
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub parse_mode: ParseMode,
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
71
src/payloads/send_invoice.rs
Normal file
71
src/payloads/send_invoice.rs
Normal file
|
@ -0,0 +1,71 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{InlineKeyboardMarkup, LabeledPrice, Message};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send invoices. On success, the sent [`Message`] is returned.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendInvoice (SendInvoiceSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target private chat
|
||||
pub chat_id: i32,
|
||||
/// Product name, 1-32 characters
|
||||
pub title: String [into],
|
||||
/// Product description, 1-255 characters
|
||||
pub description: String [into],
|
||||
/// Bot-defined invoice payload, 1-128 bytes. This will not be displayed to the user, use for your internal processes.
|
||||
pub payload: String [into],
|
||||
/// Payments provider token, obtained via [Botfather]
|
||||
///
|
||||
/// [Botfather]: https://t.me/botfather
|
||||
pub provider_token: String [into],
|
||||
/// Unique deep-linking parameter that can be used to generate this invoice when used as a start parameter
|
||||
pub start_parameter: String [into],
|
||||
/// Three-letter ISO 4217 currency code, see more on currencies
|
||||
pub currency: String [into],
|
||||
/// Price breakdown, a JSON-serialized list of components (e.g. product price, tax, discount, delivery cost, delivery tax, bonus, etc.)
|
||||
pub prices: Vec<LabeledPrice> [collect],
|
||||
}
|
||||
optional {
|
||||
/// A 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.
|
||||
pub provider_data: String [into],
|
||||
/// 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.
|
||||
pub photo_url: String [into],
|
||||
/// Photo size
|
||||
pub photo_size: String [into],
|
||||
/// Photo width
|
||||
pub photo_width: String [into],
|
||||
/// Photo height
|
||||
pub photo_height: String [into],
|
||||
/// Pass _True_, if you require the user's full name to complete the order
|
||||
pub need_name: bool,
|
||||
/// Pass _True_, if you require the user's phone number to complete the order
|
||||
pub need_phone_number: bool,
|
||||
/// Pass _True_, if you require the user's email address to complete the order
|
||||
pub need_email: bool,
|
||||
/// Pass _True_, if you require the user's shipping address to complete the order
|
||||
pub need_shipping_address: bool,
|
||||
/// Pass _True_, if user's phone number should be sent to provider
|
||||
pub send_phone_number_to_provider: bool,
|
||||
/// Pass _True_, if user's email address should be sent to provider
|
||||
pub send_email_to_provider: bool,
|
||||
/// Pass _True_, if the final price depends on the shipping method
|
||||
pub is_flexible: bool,
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// 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.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: InlineKeyboardMarkup,
|
||||
}
|
||||
}
|
||||
}
|
40
src/payloads/send_location.rs
Normal file
40
src/payloads/send_location.rs
Normal file
|
@ -0,0 +1,40 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, Message, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send point on the map. On success, the sent [`Message`] is returned.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Clone, Serialize)]
|
||||
pub SendLocation (SendLocationSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Latitude of the location
|
||||
pub latitude: f64,
|
||||
/// Longitude of the location
|
||||
pub longitude: f64,
|
||||
/// Period in seconds for which the location will be updated (see [Live Locations], should be between 60 and 86400.
|
||||
///
|
||||
/// [Live Locations]: https://telegram.org/blog/live-locations
|
||||
pub live_period: u32,
|
||||
}
|
||||
optional {
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
29
src/payloads/send_media_group.rs
Normal file
29
src/payloads/send_media_group.rs
Normal file
|
@ -0,0 +1,29 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InputMedia, Message};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send a group of photos or videos as an album. On success, an array of the sent [`Message`]s is returned.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendMediaGroup (SendMediaGroupSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// A JSON-serialized array describing photos and videos to be sent, must include 2-10 items
|
||||
pub media: Vec<InputMedia> [collect],
|
||||
}
|
||||
optional {
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,42 +1,40 @@
|
|||
use serde::{Deserialize, Serialize};
|
||||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, Message, ParseMode, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send text messages.
|
||||
///
|
||||
/// On success, the sent [`Message`] is returned.
|
||||
/// Use this method to send text messages. On success, the sent [`Message`] is returned.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[serde_with_macros::skip_serializing_none]
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Deserialize, Serialize)]
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendMessage (SendMessageSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel
|
||||
/// (in the format `@channelusername`)
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Text of the message to be sent
|
||||
/// Text of the message to be sent, 1-4096 characters after entities parsing
|
||||
pub text: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Send [Markdown] or [HTML], if you want Telegram apps to show
|
||||
/// [bold, italic, fixed-width text or inline URLs] in your bot's message.
|
||||
/// Mode for parsing entities in the message text. See [formatting options] for more details.
|
||||
///
|
||||
/// [Markdown]: crate::types::ParseMode::Markdown
|
||||
/// [HTML]: crate::types::ParseMode::HTML
|
||||
/// [bold, italic, fixed-width text or inline URLs]: crate::types::ParseMode
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub parse_mode: ParseMode,
|
||||
/// Disables link previews for links in this message
|
||||
pub disable_web_page_preview: bool,
|
||||
/// Sends the message silently.
|
||||
/// Users will receive a notification with no sound.
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, [id] of the original message
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [id]: crate::types::Message::id
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options.
|
||||
pub reply_markup: ReplyMarkup,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
42
src/payloads/send_photo.rs
Normal file
42
src/payloads/send_photo.rs
Normal file
|
@ -0,0 +1,42 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InputFile, Message, ParseMode, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send photos. On success, the sent [`Message`] is returned.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendPhoto (SendPhotoSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// 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. [More info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub photo: InputFile,
|
||||
/// Photo caption (may also be used when resending photos by _file\_id_), 0-1024 characters after entities parsing
|
||||
pub caption: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Mode for parsing entities in the photo caption. See [formatting options] for more details.
|
||||
///
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub parse_mode: ParseMode,
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
56
src/payloads/send_poll.rs
Normal file
56
src/payloads/send_poll.rs
Normal file
|
@ -0,0 +1,56 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, Message, ParseMode, PollType, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send phone contacts. On success, the sent [`Message`] is returned.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendPoll (SendPollSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Poll question, 1-255 characters
|
||||
pub question: String [into],
|
||||
/// A JSON-serialized list of answer options, 2-10 strings 1-100 characters each
|
||||
pub options: Vec<String> [collect],
|
||||
/// Poll type, “quiz” or “regular”, defaults to “regular”
|
||||
pub type_: PollType,
|
||||
}
|
||||
optional {
|
||||
/// True, if the poll needs to be anonymous, defaults to True
|
||||
pub is_anonymous: bool,
|
||||
/// True, if the poll allows multiple answers, ignored for polls in quiz mode, defaults to False
|
||||
pub allows_multiple_answers: bool,
|
||||
/// 0-based identifier of the correct answer option, required for polls in quiz mode
|
||||
pub correct_option_id: u8,
|
||||
/// 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
|
||||
pub explanation: String [into],
|
||||
/// Mode for parsing entities in the message text. See [formatting options] for more details.
|
||||
///
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub explanation_parse_mode: ParseMode,
|
||||
/// Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date.
|
||||
pub open_period: u16,
|
||||
/// 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.
|
||||
pub close_date: u64,
|
||||
/// Pass True, if the poll needs to be immediately closed. This can be useful for poll preview.
|
||||
pub is_closed: bool,
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
36
src/payloads/send_sticker.rs
Normal file
36
src/payloads/send_sticker.rs
Normal file
|
@ -0,0 +1,36 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InputFile, Message, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send static .WEBP or [animated] .TGS stickers. On success, the sent Message is returned.
|
||||
///
|
||||
/// [animated]: https://telegram.org/blog/animated-stickers
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendSticker (SendStickerSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).
|
||||
pub chat_id: ChatId [into],
|
||||
/// Sticker 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. [More info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub sticker: InputFile,
|
||||
}
|
||||
optional {
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
44
src/payloads/send_venue.rs
Normal file
44
src/payloads/send_venue.rs
Normal file
|
@ -0,0 +1,44 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, Message, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send information about a venue. On success, the sent [`Message`] is returned.
|
||||
///
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Clone, Serialize)]
|
||||
pub SendVenue (SendVenueSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Latitude of new location
|
||||
pub latitude: f64,
|
||||
/// Longitude of new location
|
||||
pub longitude: f64,
|
||||
/// Name of the venue
|
||||
pub title: String [into],
|
||||
/// Address of the venue
|
||||
pub address: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Foursquare identifier of the venue
|
||||
pub foursquare_id: String [into],
|
||||
/// Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.)
|
||||
pub foursquare_type: String [into],
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
55
src/payloads/send_video.rs
Normal file
55
src/payloads/send_video.rs
Normal file
|
@ -0,0 +1,55 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InputFile, Message, ParseMode, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send video files, Telegram clients support mp4 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.
|
||||
///
|
||||
/// [`Document`]: crate::types::Document
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendVideo (SendVideoSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// 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 info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub video: InputFile,
|
||||
/// Video caption (may also be used when resending videos by _file\_id_), 0-1024 characters after entities parsing
|
||||
pub caption: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Duration of the video in seconds
|
||||
pub duration: u32,
|
||||
/// Video width
|
||||
pub width: u32,
|
||||
/// Video height
|
||||
pub height: u32,
|
||||
/// 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://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. [More info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub thumb: InputFile,
|
||||
/// Mode for parsing entities in the video caption. See [formatting options] for more details.
|
||||
///
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub parse_mode: ParseMode,
|
||||
/// Pass _True_, if the uploaded video is suitable for streaming
|
||||
pub supports_streaming: bool,
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
45
src/payloads/send_video_note.rs
Normal file
45
src/payloads/send_video_note.rs
Normal file
|
@ -0,0 +1,45 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InputFile, Message, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// As of [v.4.0], Telegram clients support rounded square mp4 videos of up to 1 minute long. Use this method to send video messages. On success, the sent [`Message`] is returned.
|
||||
///
|
||||
/// [v.4.0]: https://core.telegram.org/bots/api#document
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendVideoNote (SendVideoNoteSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// 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 info on Sending Files »]. Sending video notes by a URL is currently unsupported
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub video_note: InputFile,
|
||||
}
|
||||
optional {
|
||||
/// Duration of the video in seconds
|
||||
pub duration: u32,
|
||||
/// Video width and height, i.e. diameter of the video message
|
||||
pub length: u32,
|
||||
/// 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://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. [More info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub thumb: InputFile,
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
46
src/payloads/send_voice.rs
Normal file
46
src/payloads/send_voice.rs
Normal file
|
@ -0,0 +1,46 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InputFile, Message, ParseMode, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// 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 (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.
|
||||
///
|
||||
/// [`Audio`]: crate::types::Audio
|
||||
/// [`Message`]: crate::types::Message
|
||||
/// [`Document`]: crate::types::Document
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SendVoice (SendVoiceSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// 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 info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub voice: InputFile,
|
||||
/// Voice message caption, 0-1024 characters after entities parsing
|
||||
pub caption: String [into],
|
||||
}
|
||||
optional {
|
||||
/// Mode for parsing entities in the voice message caption. See [formatting options] for more details.
|
||||
///
|
||||
/// [formatting options]: https://core.telegram.org/bots/api#formatting-options
|
||||
pub parse_mode: ParseMode,
|
||||
/// Duration of the voice message in seconds
|
||||
pub duration: u32,
|
||||
/// Sends the message [silently]. Users will receive a notification with no sound.
|
||||
///
|
||||
/// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
|
||||
pub disable_notification: bool,
|
||||
/// If the message is a reply, ID of the original message
|
||||
pub reply_to_message_id: i32,
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
21
src/payloads/set_chat_administrator_custom_title.rs
Normal file
21
src/payloads/set_chat_administrator_custom_title.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, True};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to set a custom title for an administrator in a supergroup promoted by the bot. Returns _True_on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SetChatAdministratorCustomTitle (SetChatAdministratorCustomTitleSetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Unique identifier of the target user
|
||||
pub user_id: i32,
|
||||
/// New custom title for the administrator; 0-16 characters, emoji are not allowed
|
||||
pub custom_title: String [into],
|
||||
}
|
||||
}
|
||||
}
|
21
src/payloads/set_chat_description.rs
Normal file
21
src/payloads/set_chat_description.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::ChatId;
|
||||
|
||||
impl_payload! {
|
||||
/// 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 admin rights. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SetChatDescription (SetChatDescriptionSetters) => String {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
}
|
||||
optional {
|
||||
/// New chat description, 0-255 characters
|
||||
pub description: String [into],
|
||||
}
|
||||
}
|
||||
}
|
19
src/payloads/set_chat_permissions.rs
Normal file
19
src/payloads/set_chat_permissions.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, ChatPermissions, True};
|
||||
|
||||
impl_payload! {
|
||||
/// 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_ admin rights. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SetChatPermissions (SetChatPermissionsSetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// New default chat permissions
|
||||
pub permissions: ChatPermissions,
|
||||
}
|
||||
}
|
||||
}
|
19
src/payloads/set_chat_photo.rs
Normal file
19
src/payloads/set_chat_photo.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InputFile};
|
||||
|
||||
impl_payload! {
|
||||
/// 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 admin rights. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SetChatPhoto (SetChatPhotoSetters) => String {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// New chat photo, uploaded using multipart/form-data
|
||||
pub photo: InputFile,
|
||||
}
|
||||
}
|
||||
}
|
19
src/payloads/set_chat_sticker_set.rs
Normal file
19
src/payloads/set_chat_sticker_set.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, True};
|
||||
|
||||
impl_payload! {
|
||||
/// 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 admin 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.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SetChatStickerSet (SetChatStickerSetSetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Name of the sticker set to be set as the group sticker set
|
||||
pub sticker_set_name: String [into],
|
||||
}
|
||||
}
|
||||
}
|
19
src/payloads/set_chat_title.rs
Normal file
19
src/payloads/set_chat_title.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::ChatId;
|
||||
|
||||
impl_payload! {
|
||||
/// 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 admin rights. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SetChatTitle (SetChatTitleSetters) => String {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// New chat title, 1-255 characters
|
||||
pub title: String [into],
|
||||
}
|
||||
}
|
||||
}
|
17
src/payloads/set_my_commands.rs
Normal file
17
src/payloads/set_my_commands.rs
Normal file
|
@ -0,0 +1,17 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::BotCommand;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to change the list of the bot's commands. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SetMyCommands (SetMyCommandsSetters) => u32 {
|
||||
required {
|
||||
/// 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.
|
||||
pub commands: Vec<BotCommand> [collect],
|
||||
}
|
||||
}
|
||||
}
|
21
src/payloads/set_passport_data_errors.rs
Normal file
21
src/payloads/set_passport_data_errors.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{PassportElementError, True};
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SetPassportDataErrors (SetPassportDataErrorsSetters) => True {
|
||||
required {
|
||||
/// User identifier
|
||||
pub user_id: i32,
|
||||
/// A JSON-serialized array describing the errors
|
||||
pub errors: Vec<PassportElementError> [collect],
|
||||
}
|
||||
}
|
||||
}
|
19
src/payloads/set_sticker_position_in_set.rs
Normal file
19
src/payloads/set_sticker_position_in_set.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::True;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to move a sticker in a set created by the bot to a specific position. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SetStickerPositionInSet (SetStickerPositionInSetSetters) => True {
|
||||
required {
|
||||
/// File identifier of the sticker
|
||||
pub sticker: String [into],
|
||||
/// New sticker position in the set, zero-based
|
||||
pub position: u32,
|
||||
}
|
||||
}
|
||||
}
|
25
src/payloads/set_sticker_set_thumb.rs
Normal file
25
src/payloads/set_sticker_set_thumb.rs
Normal file
|
@ -0,0 +1,25 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{InputFile, True};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to set the thumbnail of a sticker set. Animated thumbnails can be set for animated sticker sets only. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SetStickerSetThumb (SetStickerSetThumbSetters) => True {
|
||||
required {
|
||||
/// Name of the sticker set
|
||||
pub name: String [into],
|
||||
/// User identifier of sticker file owner
|
||||
pub user_id: i32,
|
||||
}
|
||||
optional {
|
||||
/// A **PNG** image with the thumbnail, must be up to 128 kilobytes in size and have width and height exactly 100px, or a **TGS** animation with the thumbnail up to 32 kilobytes in size; see https://core.telegram.org/animated_stickers#technical-requirements for animated 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 info on Sending Files »]. Animated sticker set thumbnail can't be uploaded via HTTP URL.
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub thumb: InputFile,
|
||||
}
|
||||
}
|
||||
}
|
35
src/payloads/set_webhook.rs
Normal file
35
src/payloads/set_webhook.rs
Normal file
|
@ -0,0 +1,35 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{AllowedUpdate, InputFile, True};
|
||||
|
||||
impl_payload! {
|
||||
/// 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 request comes from Telegram, we recommend using a secret path in the URL, e.g. `https://www.example.com/<token>`. Since nobody else knows your bot's token, you can be pretty sure it's us.
|
||||
///
|
||||
/// [`Update`]: crate::types::Update
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub SetWebhook (SetWebhookSetters) => True {
|
||||
required {
|
||||
/// HTTPS url to send updates to. Use an empty string to remove webhook integration
|
||||
pub url: String [into],
|
||||
/// 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 updates regardless of type (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.
|
||||
///
|
||||
/// [`Update`]: crate::types::Update
|
||||
pub allowed_updates: Vec<AllowedUpdate> [collect],
|
||||
}
|
||||
optional {
|
||||
/// Upload your public key certificate so that the root certificate in use can be checked. See our [self-signed guide] for details.
|
||||
///
|
||||
/// [self-signed guide]: https://core.telegram.org/bots/self-signed
|
||||
pub certificate: InputFile,
|
||||
/// 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.
|
||||
pub max_connections: u8,
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1 +1,34 @@
|
|||
pub use crate::payloads::{GetMeSetters as _, SendMessageSetters as _};
|
||||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (878e847).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
|
||||
#[doc(no_inline)]
|
||||
pub use crate::payloads::{
|
||||
AddStickerToSetSetters as _, AnswerCallbackQuerySetters as _, AnswerInlineQuerySetters as _,
|
||||
AnswerPreCheckoutQuerySetters as _, AnswerShippingQuerySetters as _,
|
||||
CreateNewStickerSetSetters as _, DeleteChatPhotoSetters as _, DeleteChatStickerSetSetters as _,
|
||||
DeleteMessageSetters as _, DeleteStickerFromSetSetters as _, DeleteWebhookSetters as _,
|
||||
EditMessageCaptionInlineSetters as _, EditMessageCaptionSetters as _,
|
||||
EditMessageLiveLocationInlineSetters as _, EditMessageLiveLocationSetters as _,
|
||||
EditMessageMediaInlineSetters as _, EditMessageMediaSetters as _,
|
||||
EditMessageReplyMarkupInlineSetters as _, EditMessageReplyMarkupSetters as _,
|
||||
EditMessageTextInlineSetters as _, EditMessageTextSetters as _,
|
||||
ExportChatInviteLinkSetters as _, ForwardMessageSetters as _,
|
||||
GetChatAdministratorsSetters as _, GetChatMemberSetters as _, GetChatMembersCountSetters as _,
|
||||
GetChatSetters as _, GetFileSetters as _, GetMeSetters as _, GetMyCommandsSetters as _,
|
||||
GetStickerSetSetters as _, GetUpdatesSetters as _, GetUserProfilePhotosSetters as _,
|
||||
GetWebhookInfoSetters as _, KickChatMemberSetters as _, LeaveChatSetters as _,
|
||||
PinChatMessageSetters as _, PromoteChatMemberSetters as _, RestrictChatMemberSetters as _,
|
||||
SendAnimationSetters as _, SendAudioSetters as _, SendChatActionSetters as _,
|
||||
SendContactSetters as _, SendDiceSetters as _, SendDocumentSetters as _,
|
||||
SendInvoiceSetters as _, SendLocationSetters as _, SendMediaGroupSetters as _,
|
||||
SendMessageSetters as _, SendPhotoSetters as _, SendPollSetters as _, SendStickerSetters as _,
|
||||
SendVenueSetters as _, SendVideoNoteSetters as _, SendVideoSetters as _, SendVoiceSetters as _,
|
||||
SetChatAdministratorCustomTitleSetters as _, SetChatDescriptionSetters as _,
|
||||
SetChatPermissionsSetters as _, SetChatPhotoSetters as _, SetChatStickerSetSetters as _,
|
||||
SetChatTitleSetters as _, SetMyCommandsSetters as _, SetPassportDataErrorsSetters as _,
|
||||
SetStickerPositionInSetSetters as _, SetStickerSetThumbSetters as _, SetWebhookSetters as _,
|
||||
StopMessageLiveLocationInlineSetters as _, StopMessageLiveLocationSetters as _,
|
||||
StopPollSetters as _, UnbanChatMemberSetters as _, UnpinChatMessageSetters as _,
|
||||
UploadStickerFileSetters as _,
|
||||
};
|
||||
|
|
35
src/payloads/stop_message_live_location.rs
Normal file
35
src/payloads/stop_message_live_location.rs
Normal file
|
@ -0,0 +1,35 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, Message, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
///
|
||||
/// See also: [`StopMessageLiveLocationInline`](crate::payloads::StopMessageLiveLocationInline)
|
||||
///
|
||||
/// [`StopMessageLiveLocation`]: crate::payloads::StopMessageLiveLocation
|
||||
/// [`Message`]: crate::types::Message
|
||||
#[derive(Debug, PartialEq, Clone, Serialize)]
|
||||
pub StopMessageLiveLocation (StopMessageLiveLocationSetters) => Message {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Identifier of the message to edit
|
||||
pub message_id: i32,
|
||||
/// Latitude of new location
|
||||
pub latitude: f64,
|
||||
/// Longitude of new location
|
||||
pub longitude: f64,
|
||||
}
|
||||
optional {
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
32
src/payloads/stop_message_live_location_inline.rs
Normal file
32
src/payloads/stop_message_live_location_inline.rs
Normal file
|
@ -0,0 +1,32 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{Message, ReplyMarkup};
|
||||
|
||||
impl_payload! {
|
||||
/// 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.
|
||||
///
|
||||
/// See also: [`StopMessageLiveLocation`](crate::payloads::StopMessageLiveLocation)
|
||||
///
|
||||
/// [`StopMessageLiveLocation`]: crate::payloads::StopMessageLiveLocation
|
||||
#[derive(Debug, PartialEq, Clone, Serialize)]
|
||||
pub StopMessageLiveLocationInline (StopMessageLiveLocationInlineSetters) => Message {
|
||||
required {
|
||||
/// Identifier of the inline message
|
||||
pub inline_message_id: String [into],
|
||||
/// Latitude of new location
|
||||
pub latitude: f64,
|
||||
/// Longitude of new location
|
||||
pub longitude: f64,
|
||||
}
|
||||
optional {
|
||||
/// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove reply keyboard or to force a reply from the user.
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
/// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
|
||||
pub reply_markup: ReplyMarkup [into],
|
||||
}
|
||||
}
|
||||
}
|
25
src/payloads/stop_poll.rs
Normal file
25
src/payloads/stop_poll.rs
Normal file
|
@ -0,0 +1,25 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, InlineKeyboardMarkup, Poll};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to stop a poll which was sent by the bot. On success, the stopped Poll with the final results is returned.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub StopPoll (StopPollSetters) => Poll {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).
|
||||
pub chat_id: ChatId [into],
|
||||
/// Identifier of the message to edit
|
||||
pub message_id: i32,
|
||||
}
|
||||
optional {
|
||||
/// A JSON-serialized object for an [inline keyboard].
|
||||
///
|
||||
/// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
|
||||
pub reply_markup: InlineKeyboardMarkup,
|
||||
}
|
||||
}
|
||||
}
|
19
src/payloads/unban_chat_member.rs
Normal file
19
src/payloads/unban_chat_member.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{ChatId, True};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to unban a previously kicked 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. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub UnbanChatMember (UnbanChatMemberSetters) => True {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
/// Unique identifier of the target user
|
||||
pub user_id: i32,
|
||||
}
|
||||
}
|
||||
}
|
17
src/payloads/unpin_chat_message.rs
Normal file
17
src/payloads/unpin_chat_message.rs
Normal file
|
@ -0,0 +1,17 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::ChatId;
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to unpin a message in a group, a supergroup, or a channel. The bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' admin right in the supergroup or 'can_edit_messages' admin right in the channel. Returns _True_ on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub UnpinChatMessage (UnpinChatMessageSetters) => String {
|
||||
required {
|
||||
/// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
|
||||
pub chat_id: ChatId [into],
|
||||
}
|
||||
}
|
||||
}
|
21
src/payloads/upload_sticker_file.rs
Normal file
21
src/payloads/upload_sticker_file.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
// This file is auto generated by `cg` <https://github.com/teloxide/cg> (e634f65).
|
||||
// **DO NOT EDIT THIS FILE**,
|
||||
// edit `cg` instead.
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{File, InputFile};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to upload a .PNG file with a sticker for later use in _createNewStickerSet_ and _addStickerToSet_ methods (can be used multiple times). Returns the uploaded File on success.
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
|
||||
pub UploadStickerFile (UploadStickerFileSetters) => File {
|
||||
required {
|
||||
/// User identifier of sticker file owner
|
||||
pub user_id: i32,
|
||||
/// PNG image with the sticker, must be up to 512 kilobytes in size, dimensions must not exceed 512px, and either width or height must be exactly 512px. [More info on Sending Files »]
|
||||
///
|
||||
/// [More info on Sending Files »]: crate::types::InputFile
|
||||
pub png_sticker: InputFile,
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue