Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
236 Bytes
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
}