Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
380 Bytes
package nfymsg
// Alert represents outgoing notifications for alerts.
type Alert struct {
Base
AlertID int // The global alert number
Summary string
Details string
ServiceID string
ServiceName string
Meta map[string]string
// OriginalStatus is the status of the first Alert notification to this Dest for this AlertID.
OriginalStatus *SendResult
}