telegram_bots_api/api/params/set_sticker_position_in_set.rs
1use serde::Serialize;
2
3/// <https://core.telegram.org/bots/api#setstickerpositioninset>
4/// Use this method to move a sticker in a set created by the bot to a specific position. Returns True on success.
5#[derive(Debug, Serialize, Default)]
6pub struct SetStickerPositionInSet {
7 pub sticker: String,
8 pub position: i64,
9}