teloxide_core/payloads/set_chat_sticker_set.rs
1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::{Recipient, True};
6
7impl_payload! {
8 /// 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.
9 #[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
10 pub SetChatStickerSet (SetChatStickerSetSetters) => True {
11 required {
12 /// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
13 pub chat_id: Recipient [into],
14 /// Name of the sticker set to be set as the group sticker set
15 pub sticker_set_name: String [into],
16 }
17 }
18}