stickers.RemoveStickerFromSet

class pyrogram.raw.functions.stickers.RemoveStickerFromSet

Remove a sticker from the set where it belongs. The sticker set must have been created by the current user/bot.

Details:
  • Layer: 227

  • ID: F7760F51

Parameters:

sticker (InputDocument) – The sticker to remove

Returns:

messages.StickerSet

TL Schema

stickers.removeStickerFromSet#f7760f51
sticker:InputDocument

= messages.StickerSet

Parameter Tree

RemoveStickerFromSet
└── sticker → InputDocument
└── InputDocument
├── id → long
├── access_hash → long
└── file_reference → bytes

Example

await app.invoke(
    RemoveStickerFromSet(
        sticker=InputDocumentEmpty(),
    )
)