Skip to content

messages.toggleStickerSets

Layer 225

Constructor ID: 0xb5052fea
Returns: Bool

Parameters

NameTypeDescription
uninstallbool (flags.0, optional)
archivebool (flags.1, optional)
unarchivebool (flags.2, optional)
stickersets[]InputStickerSet

Example

go
result, err := client.Raw(&tg.ToggleStickerSetsRequest{
    uninstall: false,
    archive: false,
    unarchive: false,
    stickersets: nil,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.