messages.GetArchivedStickers

class pyrogram.raw.functions.messages.GetArchivedStickers

Get all archived stickers

Details:
  • Layer: 223

  • ID: 57F17692

Parameters:
  • offset_id (int 64-bit) – Offsets for pagination, for more info click here

  • limit (int 32-bit) – Maximum number of results to return, see pagination

  • masks (bool, optional) – Get mask stickers

  • emojis (bool, optional) – Get custom emoji stickers

Returns:

messages.ArchivedStickers

TL Schema

messages.getArchivedStickers#57f17692
flags:#
masks:flags.0?true
emojis:flags.1?true
offset_id:long
limit:int

= messages.ArchivedStickers

Parameter Tree

GetArchivedStickers
├── maskstrue (optional)
├── emojistrue (optional)
├── offset_idlong
└── limitint

Example

await app.invoke(
    GetArchivedStickers(
        masks=None,
        emojis=None,
        offset_id=0,
        limit=0,
    )
)