UpdateStickerSetsOrder
- class pyrogram.raw.types.UpdateStickerSetsOrder
The order of stickersets was changed
Constructor of
Update.- Details:
Layer:
223ID:
BB2D201
- Parameters:
order (List of
int64-bit) – New sticker order by sticker IDmasks (
bool, optional) – Whether the updated stickers are mask stickersemojis (
bool, optional) – Whether the updated stickers are custom emoji stickers
TL Schema
updateStickerSetsOrder#bb2d201
flags:#
masks:flags.0?true
emojis:flags.1?true
order:Vector<long>
= Update
Parameter Tree
UpdateStickerSetsOrder
├── masks →
true (optional)├── emojis →
true (optional)└── order →
Vector < long >Example
UpdateStickerSetsOrder(
order=[0],
)