File size: 380 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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
}
|