19 lines
725 B
C#
19 lines
725 B
C#
namespace StellaOps.Notify.Queue;
|
|
|
|
internal static class NotifyQueueFields
|
|
{
|
|
public const string Payload = "payload";
|
|
public const string EventId = "eventId";
|
|
public const string DeliveryId = "deliveryId";
|
|
public const string Tenant = "tenant";
|
|
public const string Kind = "kind";
|
|
public const string Attempt = "attempt";
|
|
public const string EnqueuedAt = "enqueuedAt";
|
|
public const string TraceId = "traceId";
|
|
public const string PartitionKey = "partitionKey";
|
|
public const string ChannelId = "channelId";
|
|
public const string ChannelType = "channelType";
|
|
public const string IdempotencyKey = "idempotency";
|
|
public const string AttributePrefix = "attr:";
|
|
}
|