Layer 227
constructor
documentAttributeSticker#fb0a5727 = DocumentAttribute;

Parameters

Name Type Description
Mask flags .1? true Whether this is a mask sticker
Alt string Alternative emoji representation of sticker
Stickerset InputStickerSet Associated stickerset
MaskCoords flags .0? MaskCoords Mask coordinates (if this is a mask sticker, attached to a photo)

Gogram Example

// Creating DocumentAttributeSticker constructor
obj := &tg.DocumentAttributeSticker{
    Mask: nil,
    Alt: "Hello, World!",
    Stickerset: &tg.InputStickerSet{},
    MaskCoords: nil,
}