Add chat animation type documentation
parent
1f1d97f1e3
commit
a005cff757
20
types.go
20
types.go
|
@ -522,14 +522,26 @@ type StickerSet struct {
|
||||||
|
|
||||||
// ChatAnimation contains information about an animation.
|
// ChatAnimation contains information about an animation.
|
||||||
type ChatAnimation struct {
|
type ChatAnimation struct {
|
||||||
|
// FileID odentifier for this file, which can be used to download or reuse the file
|
||||||
FileID string `json:"file_id"`
|
FileID string `json:"file_id"`
|
||||||
|
// Width video width as defined by sender
|
||||||
Width int `json:"width"`
|
Width int `json:"width"`
|
||||||
|
// Height video height as defined by sender
|
||||||
Height int `json:"height"`
|
Height int `json:"height"`
|
||||||
|
// Duration of the video in seconds as defined by sender
|
||||||
Duration int `json:"duration"`
|
Duration int `json:"duration"`
|
||||||
Thumbnail *PhotoSize `json:"thumb"` // optional
|
// Thumbnail animation thumbnail as defined by sender
|
||||||
FileName string `json:"file_name"` // optional
|
// optional
|
||||||
MimeType string `json:"mime_type"` // optional
|
Thumbnail *PhotoSize `json:"thumb"`
|
||||||
FileSize int `json:"file_size"` // optional
|
// FileName original animation filename as defined by sender
|
||||||
|
// optional
|
||||||
|
FileName string `json:"file_name"`
|
||||||
|
// MimeType of the file as defined by sender
|
||||||
|
// optional
|
||||||
|
MimeType string `json:"mime_type"`
|
||||||
|
// FileSize file size
|
||||||
|
// optional
|
||||||
|
FileSize int `json:"file_size"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Video contains information about a video.
|
// Video contains information about a video.
|
||||||
|
|
Loading…
Reference in New Issue