File size: 236 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
package alert
import (
"time"
)
// State represents the current escalation state of an alert.
type State struct {
// ID is the ID of the alert.
ID int
StepNumber int
RepeatCount int
LastEscalation time.Time
}
|