import type * as Extend from "../index"; /** * A workflow version with its step definitions. */ export interface WorkflowVersion { /** The type of object. Always `"workflow_version"`. */ object: "workflow_version"; /** The ID of the workflow version. */ id: string; /** The version number as a string, or `"draft"` for the draft version. */ version: string; /** The name of the workflow version. */ name: string | null; /** The step definitions for this version. */ steps: Extend.WorkflowStepDefinition[]; createdAt: Extend.CreatedAt; }