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

/// Use this method to move a sticker in a set created by the bot to a specific position . Returns True on success.
#[derive(Debug, Serialize, TelegramApi)]
#[return_type = "True"]
pub struct SetStickerPositionInSet {
    /// File identifier of the sticker
    pub sticker: String,
    /// New sticker position in the set, zero-based
    pub position: Integer,
}