messages.UninstallStickerSet

class pyrogram.raw.functions.messages.UninstallStickerSet

Uninstall a stickerset

Details:
  • Layer: 223

  • ID: F96E55DE

Parameters:

stickerset (InputStickerSet) – The stickerset to uninstall

Returns:

bool

TL Schema

messages.uninstallStickerSet#f96e55de
stickerset:InputStickerSet

= Bool

Parameter Tree

UninstallStickerSet
└── stickersetInputStickerSet
│ ├── idlong
│ └── access_hashlong
│ └── short_namestring
│ └── emoticonstring

Example

await app.invoke(
    UninstallStickerSet(
        stickerset=InputStickerSetEmpty(),
    )
)