ReorderStickerSetsRequest

Only users can use this request. See code examples.

---functions---
messages.reorderStickerSets#78337739 flags:# masks:flags.0?true emojis:flags.1?true order:Vector<long> = Bool

Returns

Bool

This type has no instances available.

Parameters

orderlongA list must be supplied.
masksflagThis argument defaults to None and can be omitted.
emojisflagThis argument defaults to None and can be omitted.

Known RPC errors

This request can't cause any RPC error as far as we know.

Example

from telethon.sync import TelegramClient
from telethon import functions, types

with TelegramClient(name, api_id, api_hash) as client:
    result = client(functions.messages.ReorderStickerSetsRequest(
        order=[-12398745604826],
        masks=True,
        emojis=True
    ))
    print(result)