1
bot/models/voice_chat.go

22 lines
603 B
Go
Raw Permalink Normal View History

2022-04-29 17:21:42 +08:00
package models
// VoiceChatScheduled https://core.telegram.org/bots/api#videochatscheduled
type VoiceChatScheduled struct {
StartDate int `json:"start_date"`
}
// VoiceChatStarted https://core.telegram.org/bots/api#videochatstarted
type VoiceChatStarted struct {
Duration int `json:"duration"`
}
// VoiceChatEnded https://core.telegram.org/bots/api#videochatended
type VoiceChatEnded struct {
Duration int `json:"duration"`
}
// VoiceChatParticipantsInvited https://core.telegram.org/bots/api#videochatparticipantsinvited
type VoiceChatParticipantsInvited struct {
Users []User `json:"users"`
}