interface CreateEscalationParams {
    appId?: string;
    createdBy?: string;
    description?: string;
    entity?: string;
    envelope?: Record<string, unknown>;
    escalationPayload?: Record<string, unknown>;
    expiresAt?: Date;
    initiatedBy?: string;
    metadata?: Record<string, unknown>;
    namespace?: string;
    originId?: string;
    parentId?: string;
    priority?: number;
    role?: string;
    signalKey?: string;
    spanId?: string;
    subtype?: string;
    taskId?: string;
    taskQueue?: string;
    topic?: string;
    traceId?: string;
    type?: string;
    workflowId?: string;
    workflowType?: string;
}

Hierarchy (view full)

Properties

appId?: string
createdBy?: string
description?: string
entity?: string
envelope?: Record<string, unknown>
escalationPayload?: Record<string, unknown>
expiresAt?: Date
initiatedBy?: string
metadata?: Record<string, unknown>
namespace?: string
originId?: string
parentId?: string
priority?: number
role?: string
signalKey?: string
spanId?: string
subtype?: string
taskId?: string
taskQueue?: string
topic?: string
traceId?: string
type?: string
workflowId?: string
workflowType?: string