A single entry in the WorkflowHistoryPage.

interface WorkflowHistoryItemDto {
    isIntermediate?: boolean;
    workflowId?: string;
    workflowVersion?: number;
    writtenAt?: string;
}

Properties

isIntermediate?: boolean

Whether the version is an intermediate workflow state, sometimes created during workflow updates.

workflowId?: string
workflowVersion?: number
writtenAt?: string

The timestamp when this workflow version was created.