InputStickerSetItem

class pyrogram.raw.base.InputStickerSetItem

Sticker

Constructors:

This base type has 1 constructor available.

InputStickerSetItem

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
├── documentInputDocument
│ ├── InputDocumentEmpty
│ └── InputDocument
│ ├── idlong
│ ├── access_hashlong
│ └── file_referencebytes
├── emojistring
├── mask_coordsMaskCoords (optional)
│ └── MaskCoords
│ ├── nint
│ ├── xdouble
│ ├── ydouble
│ └── zoomdouble
└── keywordsstring (optional)

Example

InputStickerSetItem(
    document=InputDocumentEmpty(),
    emoji="text",
    mask_coords=MaskCoords(
        n=0,
        x=0.0,
        y=0.0,
        zoom=0.0
    ),
    keywords="text",
)