2024-04-06 09:08:01 +00:00
|
|
|
package models
|
|
|
|
|
2024-07-17 03:03:35 +00:00
|
|
|
import (
|
|
|
|
"time"
|
2024-09-11 15:58:02 +00:00
|
|
|
|
|
|
|
"git.solsynth.dev/hydrogen/dealer/pkg/hyper"
|
|
|
|
"github.com/livekit/protocol/livekit"
|
2024-07-17 03:03:35 +00:00
|
|
|
)
|
2024-04-06 09:08:01 +00:00
|
|
|
|
|
|
|
type Call struct {
|
2024-09-11 15:58:02 +00:00
|
|
|
hyper.BaseModel
|
2024-04-06 09:08:01 +00:00
|
|
|
|
2024-04-26 16:04:01 +00:00
|
|
|
EndedAt *time.Time `json:"ended_at"`
|
2024-04-06 09:08:01 +00:00
|
|
|
|
|
|
|
ExternalID string `json:"external_id"`
|
|
|
|
FounderID uint `json:"founder_id"`
|
|
|
|
ChannelID uint `json:"channel_id"`
|
|
|
|
Founder ChannelMember `json:"founder"`
|
|
|
|
Channel Channel `json:"channel"`
|
2024-07-17 03:03:35 +00:00
|
|
|
|
|
|
|
Participants []*livekit.ParticipantInfo `json:"participants" gorm:"-"`
|
2024-04-06 09:08:01 +00:00
|
|
|
}
|