messages.SearchStickerSets
- class pyrogram.raw.functions.messages.SearchStickerSets
Search for stickersets
- Details:
Layer:
223ID:
35705B8A
- Parameters:
q (
str) – Query stringhash (
int64-bit) – Hash used for caching, for more info click here.exclude_featured (
bool, optional) – Exclude featured stickersets from results
- Returns:
TL Schema
messages.searchStickerSets#35705b8a
flags:#
exclude_featured:flags.0?true
q:string
hash:long
= messages.FoundStickerSets
Parameter Tree
SearchStickerSets
├── exclude_featured →
true (optional)├── q →
string└── hash →
longExample
await app.invoke(
SearchStickerSets(
exclude_featured=None,
q="text",
hash=0,
)
)