import type * as Extend from "../index"; /** * A workflow with its draft version and steps. */ export interface Workflow { /** The type of object. Always `"workflow"`. */ object: "workflow"; /** The ID of the workflow. */ id: string; /** The name of the workflow. */ name: string; createdAt: Extend.CreatedAt; updatedAt: Extend.UpdatedAt; draftVersion: Extend.WorkflowVersion; }