messages.SearchStickerSets

class pyrogram.raw.functions.messages.SearchStickerSets

Search for stickersets

Details:
  • Layer: 223

  • ID: 35705B8A

Parameters:
  • q (str) – Query string

  • hash (int 64-bit) – Hash used for caching, for more info click here.

  • exclude_featured (bool, optional) – Exclude featured stickersets from results

Returns:

messages.FoundStickerSets

TL Schema

messages.searchStickerSets#35705b8a
flags:#
exclude_featured:flags.0?true
q:string
hash:long

= messages.FoundStickerSets

Parameter Tree

SearchStickerSets
├── exclude_featuredtrue (optional)
├── qstring
└── hashlong

Example

await app.invoke(
    SearchStickerSets(
        exclude_featured=None,
        q="text",
        hash=0,
    )
)