import type * as Extend from "../index"; /** * A summary representation of a workflow. */ export interface WorkflowSummary { /** 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; }