messages.UninstallStickerSet

class pyrogram.raw.functions.messages.UninstallStickerSet

Uninstall a stickerset

Details:
  • Layer: 227

  • ID: F96E55DE

Parameters:

stickerset (InputStickerSet) – The stickerset to uninstall

Returns:

bool

TL Schema

messages.uninstallStickerSet#f96e55de
stickerset:InputStickerSet

= Bool

Parameter Tree

UninstallStickerSet
└── stickerset → InputStickerSet
│ ├── id → long
│ └── access_hash → long
│ └── short_name → string
│ └── emoticon → string

Example

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