File size: 783 Bytes
d6f631f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | package notification
const (
// AnnotationRuleTestEvent indicates that the event is generated as part of testing a notification rule
AnnotationRuleTestEvent = "notification.rule.test"
AnnotationEventFeatureKey = "event.feature.key"
AnnotationEventFeatureID = "event.feature.id"
AnnotationEventSubjectKey = "event.subject.key"
AnnotationEventSubjectID = "event.subject.id"
AnnotationEventCustomerID = "event.customer.id"
AnnotationEventCustomerKey = "event.customer.key"
// TODO[later]: deprecate this annotation and use a generic one
AnnotationBalanceEventDedupeHash = "event.balance.dedupe.hash"
AnnotationEventInvoiceID = "event.invoice.id"
AnnotationEventInvoiceNumber = "event.invoice.number"
AnnotationEventResendTimestamp = "event.resend.timestamp"
)
|