mirror of
https://github.com/tucnak/telebot
synced 2024-11-05 06:00:58 +00:00
24 lines
660 B
Go
24 lines
660 B
Go
package telebot
|
|
|
|
// Sticker object represents a WebP image, so-called sticker.
|
|
type Sticker struct {
|
|
File
|
|
|
|
Width int `json:"width"`
|
|
Height int `json:"height"`
|
|
|
|
Thumbnail *Photo `json:"thumb,omitempty"`
|
|
Emoji string `json:"emoji,omitempty"`
|
|
SetName string `json:"set_name,omitempty"`
|
|
MaskPosition *MaskPosition `json:"mask_position,omitempty"`
|
|
}
|
|
|
|
// MaskPosition describes the position on faces where
|
|
// a mask should be placed by default.
|
|
type MaskPosition struct {
|
|
Feature MaskFeature `json:"point"`
|
|
XShift float32 `json:"x_shift"`
|
|
YShift float32 `json:"y_shift"`
|
|
Scale float32 `json:"scale"`
|
|
}
|