messages.GetStickerSet
- class pyrogram.raw.functions.messages.GetStickerSet
Get info about a stickerset
- Details:
Layer:
223ID:
C8A0EC74
- Parameters:
stickerset (
InputStickerSet) – Stickersethash (
int32-bit) – Hash used for caching, for more info click here
- Returns:
TL Schema
messages.getStickerSet#c8a0ec74
stickerset:InputStickerSet
hash:int
= messages.StickerSet
Parameter Tree
GetStickerSet
├── stickerset →
InputStickerSet│ ├──
InputStickerSetEmpty│ ├──
InputStickerSetID│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputStickerSetShortName│ │ └── short_name →
string│ ├──
InputStickerSetDice│ │ └── emoticon →
string│ └──
InputStickerSetTonGifts└── hash →
intExample
await app.invoke(
GetStickerSet(
stickerset=InputStickerSetEmpty(),
hash=0,
)
)