messages.InstallStickerSet
- class pyrogram.raw.functions.messages.InstallStickerSet
Install a stickerset
- Details:
Layer:
223ID:
C78FE460
- Parameters:
stickerset (
InputStickerSet) – Stickerset to installarchived (
bool) – Whether to archive stickerset
- Returns:
TL Schema
messages.installStickerSet#c78fe460
stickerset:InputStickerSet
archived:Bool
= messages.StickerSetInstallResult
Parameter Tree
InstallStickerSet
├── stickerset →
InputStickerSet│ ├──
InputStickerSetEmpty│ ├──
InputStickerSetID│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputStickerSetShortName│ │ └── short_name →
string│ ├──
InputStickerSetDice│ │ └── emoticon →
string│ └──
InputStickerSetTonGifts└── archived →
BoolExample
await app.invoke(
InstallStickerSet(
stickerset=InputStickerSetEmpty(),
archived=True,
)
)