Interface WorkflowPayload

The workflow.

interface WorkflowPayload {
    enabled: boolean;
    fields: Record<string, string | number | boolean>;
    id: string;
}

Properties

Properties

enabled: boolean

Whether the workflow is enabled.

fields: Record<string, string | number | boolean>

A map of workflow field names and their values.

id: string

The ID of the workflow.