messages.ClearRecentStickers

class pyrogram.raw.functions.messages.ClearRecentStickers

Clear recent stickers

Details:
  • Layer: 223

  • ID: 8999602D

Parameters:

attached (bool, optional) – Set this flag to clear the list of stickers recently attached to photo or video files

Returns:

bool

TL Schema

messages.clearRecentStickers#8999602d
flags:#
attached:flags.0?true

= Bool

Parameter Tree

ClearRecentStickers
└── attachedtrue (optional)

Example

await app.invoke(
    ClearRecentStickers(
        attached=None,
    )
)