You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
562 B
17 lines
562 B
package models |
|
|
|
import "github.com/owncast/owncast/utils" |
|
|
|
// Status represents the status of the system. |
|
type Status struct { |
|
LastConnectTime *utils.NullTime `json:"lastConnectTime"` |
|
LastDisconnectTime *utils.NullTime `json:"lastDisconnectTime"` |
|
|
|
VersionNumber string `json:"versionNumber"` |
|
StreamTitle string `json:"streamTitle"` |
|
ViewerCount int `json:"viewerCount"` |
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"` |
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"` |
|
|
|
Online bool `json:"online"` |
|
}
|
|
|