14 lines
385 B
Go
14 lines
385 B
Go
package notification
|
|
|
|
// MongoDB field names for notifications collections.
|
|
const (
|
|
BSONFieldID = "_id"
|
|
BSONFieldTenantID = "tenant_id"
|
|
BSONFieldOccurredAt = "occurred_at"
|
|
BSONFieldKind = "kind"
|
|
BSONFieldIdempotencyKey = "idempotency_key"
|
|
BSONFieldUID = "uid"
|
|
BSONFieldStatus = "status"
|
|
BSONFieldAttempts = "attempts"
|
|
)
|