messages.SearchEmojiStickerSets
- class pyrogram.raw.functions.messages.SearchEmojiStickerSets
Search for custom emoji stickersets »
- Details:
Layer:
223ID:
92B4494C
- 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.searchEmojiStickerSets#92b4494c
flags:#
exclude_featured:flags.0?true
q:string
hash:long
= messages.FoundStickerSets
Parameter Tree
SearchEmojiStickerSets
├── exclude_featured →
true (optional)├── q →
string└── hash →
longExample
await app.invoke(
SearchEmojiStickerSets(
exclude_featured=None,
q="text",
hash=0,
)
)