owncast/models/streamHealth.go
2022-03-27 16:27:38 -07:00

9 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"`
}