import type * as Extend from "../index"; /** * A summary representation of a workflow version (without steps). */ export interface WorkflowVersionSummary { /** 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; createdAt: Extend.CreatedAt; }