template-monorepo/internal/model/notification/const.go

14 lines
385 B
Go
Raw Permalink Normal View History

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"
)