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: 223

  • ID: F7760F51

Parameters:

sticker (InputDocument) – The sticker to remove

Returns:

messages.StickerSet

TL Schema

stickers.removeStickerFromSet#f7760f51
sticker:InputDocument

= messages.StickerSet

Parameter Tree

RemoveStickerFromSet
└── stickerInputDocument
└── InputDocument
├── idlong
├── access_hashlong
└── file_referencebytes

Example

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