mirror of
https://github.com/tucnak/telebot
synced 2024-11-15 06:13:01 +00:00
18 lines
473 B
Go
18 lines
473 B
Go
package telebot
|
|
|
|
// VoiceChatStarted represents a service message about a voice chat
|
|
// started in the chat.
|
|
type VoiceChatStarted struct{}
|
|
|
|
// VoiceChatEnded represents a service message about a voice chat
|
|
// ended in the chat.
|
|
type VoiceChatEnded struct {
|
|
Duration int `json:"duration"`
|
|
}
|
|
|
|
// VoiceChatPartecipantsInvited represents a service message about new
|
|
// members invited to a voice chat
|
|
type VoiceChatPartecipantsInvited struct {
|
|
Users []User `json:"users"`
|
|
}
|