messages.InstallStickerSet

class pyrogram.raw.functions.messages.InstallStickerSet

Install a stickerset

Details:
  • Layer: 223

  • ID: C78FE460

Parameters:
  • stickerset (InputStickerSet) – Stickerset to install

  • archived (bool) – Whether to archive stickerset

Returns:

messages.StickerSetInstallResult

TL Schema

messages.installStickerSet#c78fe460
stickerset:InputStickerSet
archived:Bool

= messages.StickerSetInstallResult

Parameter Tree

InstallStickerSet
├── stickersetInputStickerSet
│ ├── InputStickerSetEmpty
│ ├── InputStickerSetID
│ │ ├── idlong
│ │ └── access_hashlong
│ │ └── short_namestring
│ ├── InputStickerSetDice
│ │ └── emoticonstring
└── archivedBool

Example

await app.invoke(
    InstallStickerSet(
        stickerset=InputStickerSetEmpty(),
        archived=True,
    )
)