1
bot/models/video_chat.go

22 lines
603 B
Go
Raw Permalink Normal View History

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