12 lines
383 B
Go
12 lines
383 B
Go
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"`
|
|
Thumbnail *PhotoSize `json:"thumbnail,omitempty"`
|
|
FileSize int `json:"file_size,omitempty"`
|
|
}
|