VideoSizeStickerMarkup
- class pyrogram.raw.types.VideoSizeStickerMarkup
An animated profile picture based on a sticker.
Constructor of
VideoSize.- Details:
Layer:
223ID:
DA082FE
- Parameters:
stickerset (
InputStickerSet) – Stickersetsticker_id (
int64-bit) – Sticker IDbackground_colors (List of
int32-bit) – 1, 2, 3 or 4 RBG-24 colors used to generate a solid (1), gradient (2) or freeform gradient (3, 4) background, similar to how fill wallpapers are generated. The rotation angle for gradient backgrounds is 0.
TL Schema
videoSizeStickerMarkup#da082fe
stickerset:InputStickerSet
sticker_id:long
background_colors:Vector<int>
= VideoSize
Parameter Tree
VideoSizeStickerMarkup
├── stickerset →
InputStickerSet│ ├──
InputStickerSetEmpty│ ├──
InputStickerSetID│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputStickerSetShortName│ │ └── short_name →
string│ ├──
InputStickerSetDice│ │ └── emoticon →
string│ └──
InputStickerSetTonGifts├── sticker_id →
long└── background_colors →
Vector < int >Example
VideoSizeStickerMarkup(
stickerset=InputStickerSetEmpty(),
sticker_id=0,
background_colors=[0],
)