2020-06-23 04:11:56 +03:00
|
|
|
package models
|
2020-06-03 03:35:49 +03:00
|
|
|
|
2020-10-05 20:07:09 +03:00
|
|
|
import "github.com/owncast/owncast/utils"
|
2020-06-25 08:52:05 +03:00
|
|
|
|
2020-11-13 02:14:59 +03:00
|
|
|
// Status represents the status of the system.
|
2020-06-03 03:35:49 +03:00
|
|
|
type Status struct {
|
2021-08-04 03:47:16 +03:00
|
|
|
LastConnectTime *utils.NullTime `json:"lastConnectTime"`
|
|
|
|
LastDisconnectTime *utils.NullTime `json:"lastDisconnectTime"`
|
2020-11-04 04:34:25 +03:00
|
|
|
|
2023-05-30 20:31:43 +03:00
|
|
|
VersionNumber string `json:"versionNumber"`
|
|
|
|
StreamTitle string `json:"streamTitle"`
|
|
|
|
ViewerCount int `json:"viewerCount"`
|
|
|
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
|
|
|
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
|
|
|
|
|
|
|
|
Online bool `json:"online"`
|
2020-06-03 03:35:49 +03:00
|
|
|
}
|