InputStickerSetItem
- class pyrogram.raw.base.InputStickerSetItem
Sticker
- Constructors:
This base type has 1 constructor available.
Sticker in a stickerset
TL Schema
inputStickerSetItem#32da9e9c
flags:#
document:InputDocument
emoji:string
mask_coords:flags.0?MaskCoords
keywords:flags.1?string
= InputStickerSetItem
Parameter Tree
InputStickerSetItem
├── document →
InputDocument│ ├──
InputDocumentEmpty│ └──
InputDocument│ ├── id →
long│ ├── access_hash →
long│ └── file_reference →
bytes├── emoji →
string├── mask_coords →
MaskCoords (optional)│ └──
MaskCoords│ ├── n →
int│ ├── x →
double│ ├── y →
double│ └── zoom →
double└── keywords →
string (optional)Example
InputStickerSetItem(
document=InputDocumentEmpty(),
emoji="text",
mask_coords=MaskCoords(
n=0,
x=0.0,
y=0.0,
zoom=0.0
),
keywords="text",
)