messages.GetArchivedStickers
- class pyrogram.raw.functions.messages.GetArchivedStickers
Get all archived stickers
- Details:
Layer:
223ID:
57F17692
- Parameters:
offset_id (
int64-bit) – Offsets for pagination, for more info click herelimit (
int32-bit) – Maximum number of results to return, see paginationmasks (
bool, optional) – Get mask stickersemojis (
bool, optional) – Get custom emoji stickers
- Returns:
TL Schema
messages.getArchivedStickers#57f17692
flags:#
masks:flags.0?true
emojis:flags.1?true
offset_id:long
limit:int
= messages.ArchivedStickers
Parameter Tree
GetArchivedStickers
├── masks →
true (optional)├── emojis →
true (optional)├── offset_id →
long└── limit →
intExample
await app.invoke(
GetArchivedStickers(
masks=None,
emojis=None,
offset_id=0,
limit=0,
)
)