mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
10 lines
318 B
Go
10 lines
318 B
Go
package models
|
|
|
|
// StreamHealthOverview represents an overview of the current stream health.
|
|
type StreamHealthOverview struct {
|
|
Healthy bool `json:"healthy"`
|
|
HealthyPercentage int `json:"healthPercentage"`
|
|
Message string `json:"message"`
|
|
Representation int `json:"representation"`
|
|
}
|