stickers.ChangeStickerPosition
- class pyrogram.raw.functions.stickers.ChangeStickerPosition
Changes the absolute position of a sticker in the set to which it belongs. The sticker set must have been created by the current user/bot.
- Details:
Layer:
223ID:
FFB6D4CA
- Parameters:
sticker (
InputDocument) – The stickerposition (
int32-bit) – The new position of the sticker, zero-based
- Returns:
TL Schema
stickers.changeStickerPosition#ffb6d4ca
sticker:InputDocument
position:int
= messages.StickerSet
Parameter Tree
ChangeStickerPosition
├── sticker →
InputDocument│ ├──
InputDocumentEmpty│ └──
InputDocument│ ├── id →
long│ ├── access_hash →
long│ └── file_reference →
bytes└── position →
intExample
await app.invoke(
ChangeStickerPosition(
sticker=InputDocumentEmpty(),
position=0,
)
)