The trigger configuration associated with a workflow.

interface WorkflowTrigger {
    id?: string;
    parameters: {
        [key: string]: string;
    };
    ruleKey: string;
}

Properties

id?: string

The ID of the trigger.

parameters: {
    [key: string]: string;
}

The parameters of the trigger.

Type declaration

  • [key: string]: string

    The parameters of the trigger.

ruleKey: string

The rule key of the trigger.