Skip to main content

teloxide_core_ng/payloads/
send_sticker.rs

1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::{
6    BusinessConnectionId, EffectId, InputFile, Message, Recipient, ReplyMarkup, ReplyParameters,
7    ThreadId,
8};
9
10impl_payload! {
11    @[multipart = sticker]
12    /// Use this method to send static .WEBP, .TGS or .WEBM stickers. On success, the sent Message is returned.
13    ///
14    /// [animated]: https://telegram.org/blog/animated-stickers
15    #[derive(Debug, Clone, Serialize)]
16    pub SendSticker (SendStickerSetters) => Message {
17        required {
18            /// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`).
19            pub chat_id: Recipient [into],
20            /// Sticker to send. Pass a file_id as FileId 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 »]
21            ///
22            /// [More info on Sending Files »]: crate::types::InputFile
23            pub sticker: InputFile,
24        }
25        optional {
26            /// Unique identifier of the business connection on behalf of which the message will be sent
27            pub business_connection_id: BusinessConnectionId,
28            /// Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
29            pub message_thread_id: ThreadId,
30            /// Emoji associated with the sticker; only for just uploaded stickers
31            pub emoji: String [into],
32            /// Sends the message [silently]. Users will receive a notification with no sound.
33            ///
34            /// [silently]: https://telegram.org/blog/channels-2-0#silent-messages
35            pub disable_notification: bool,
36            /// Protects the contents of sent messages from forwarding and saving
37            pub protect_content: bool,
38            /// Pass `true` to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance
39            pub allow_paid_broadcast: bool,
40            /// Unique identifier of the message effect to be added to the message; for private chats only
41            pub message_effect_id: EffectId,
42            /// Description of the message to reply to
43            pub reply_parameters: ReplyParameters,
44            /// Additional interface options. A JSON-serialized object for an [inline keyboard], [custom reply keyboard], instructions to remove a reply keyboard or to force a reply from the user. Not supported for messages sent on behalf of a business account.
45            ///
46            /// [inline keyboard]: https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
47            /// [custom reply keyboard]: https://core.telegram.org/bots#keyboards
48            pub reply_markup: ReplyMarkup [into],
49        }
50    }
51}