9 lines
268 B
Go
9 lines
268 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"`
|
||
|
}
|