1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
use crate::types::*;

/// Use this method to delete a sticker from a set created by the bot. Returns True on success.
#[derive(Debug, Serialize, TelegramApi, Setters, New)]
#[return_type = "True"]
#[new(vis = "pub")]
#[set(vis = "pub")]
pub struct DeleteStickerFromSet {
    /// File identifier of the sticker
    pub(crate) sticker: String,
}