2022-04-29 17:21:42 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
// VideoNote https://core.telegram.org/bots/api#videonote
|
|
|
|
type VideoNote struct {
|
|
|
|
FileID string `json:"file_id"`
|
|
|
|
FileUniqueID string `json:"file_unique_id"`
|
|
|
|
Length int `json:"length"`
|
|
|
|
Duration int `json:"duration"`
|
2023-03-14 16:26:55 +08:00
|
|
|
Thumbnail *PhotoSize `json:"thumbnail,omitempty"`
|
2022-04-29 17:21:42 +08:00
|
|
|
FileSize int `json:"file_size,omitempty"`
|
|
|
|
}
|