2022-04-29 17:21:42 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
// Voice https://core.telegram.org/bots/api#voice
|
|
|
|
type Voice struct {
|
|
|
|
FileID string `json:"file_id"`
|
|
|
|
FileUniqueID string `json:"file_unique_id"`
|
|
|
|
Duration int `json:"duration"`
|
|
|
|
MimeType string `json:"mime_type,omitempty"`
|
2023-01-13 22:18:22 +08:00
|
|
|
FileSize int64 `json:"file_size,omitempty"`
|
2022-04-29 17:21:42 +08:00
|
|
|
}
|