Interface WorkflowsChangelogEntry

interface WorkflowsChangelogEntry {
    entity: Link<"Entry">;
    event: string;
    eventAt: string;
    eventBy: SysLink;
    stepAnnotations: string[];
    stepId: string;
    stepName: string;
    workflow: VersionedLink<"Workflow">;
    workflowDefinition: Link<"WorkflowDefinition">;
    toPlainObject(): WorkflowsChangelogEntryProps;
}

Hierarchy (view full)

Properties

entity: Link<"Entry">
event: string
eventAt: string
eventBy: SysLink
stepAnnotations: string[]
stepId: string
stepName: string
workflow: VersionedLink<"Workflow">
workflowDefinition: Link<"WorkflowDefinition">

Methods