openmeter / notification /annotations.go
Leon4gr45's picture
Upload folder using huggingface_hub (part 6)
d6f631f verified
Raw
History Blame Contribute Delete
783 Bytes
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"
)