2022-03-25 07:06:47 +01:00
|
|
|
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"`
|
2022-03-28 01:27:38 +02:00
|
|
|
Representation int `json:"representation"`
|
2022-03-25 07:06:47 +01:00
|
|
|
}
|