1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
documentAttributeSticker | Defines a sticker | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: documentAttributeSticker
Defines a sticker
Attributes:
Name | Type | Required | Description |
---|---|---|---|
mask | Bool | Optional | Whether this is a mask sticker |
alt | string | Yes | Alternative emoji representation of sticker |
stickerset | InputStickerSet | Optional | Associated stickerset |
mask_coords | MaskCoords | Optional | Mask coordinates (if this is a mask sticker, attached to a photo) |
Type: DocumentAttribute
Example:
$documentAttributeSticker = ['_' => 'documentAttributeSticker', 'mask' => Bool, 'alt' => 'string', 'stickerset' => InputStickerSet, 'mask_coords' => MaskCoords];
Or, if you're into Lua:
documentAttributeSticker={_='documentAttributeSticker', mask=Bool, alt='string', stickerset=InputStickerSet, mask_coords=MaskCoords}