Type Alias FlowStatusModule

FlowStatusModule: {
    approvers?: {
        approver: string;
        resume_id: number;
    }[];
    branch_chosen?: {
        branch?: number;
        type: "branch" | "default";
    };
    branchall?: {
        branch: number;
        len: number;
    };
    count?: number;
    failed_retries?: string[];
    flow_jobs?: string[];
    id?: string;
    iterator?: {
        args?: unknown;
        index?: number;
        itered?: unknown[];
    };
    job?: string;
    type:
        | "WaitingForPriorSteps"
        | "WaitingForEvents"
        | "WaitingForExecutor"
        | "InProgress"
        | "Success"
        | "Failure";
}