You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
telebot/voicechat.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"`
}