Layer 220
method Users
messages.getArchivedStickers#57f17692 flags:# masks:flags.0?true emojis:flags.1?true offset_id:long limit:int = messages.ArchivedStickers;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
Masks flags.0?true Get mask stickers
Emojis flags.1?true Get custom emoji stickers
OffsetId long Offsets for pagination, for more info click here
Limit int Maximum number of results to return, see pagination

Gogram Example

// MessagesGetArchivedStickers - using Params struct
result, err := client.MessagesGetArchivedStickers(&tg.MessagesGetArchivedStickersParams{
    OffsetId: int64(0),
    Limit: 0,

    // Optional fields:
    // Masks: true,
    // Emojis: true,
})
if err != nil {
    // handle error
}
// result is *tg.MessagesArchivedStickers