Interface WorkflowQueryOptions

Options supplied when querying for workflow instances.

interface WorkflowQueryOptions {
    conversationId?: string;
    definitionId?: string;
    statuses?: WorkflowStatus[];
    limit?: number;
}

Properties

conversationId?: string
definitionId?: string
statuses?: WorkflowStatus[]
limit?: number