/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /** * Simplified workflow response (for list endpoints) */ export type WorkflowSummary = { /** * Creation timestamp */ created: string; /** * Workflow description */ description?: string | null; /** * Whether the workflow is enabled */ enabled: boolean; /** * Workflow ID */ id: number; /** * Human-readable label */ label: string; /** * Pack reference */ pack_ref: string; /** * Unique reference identifier */ ref: string; /** * Tags */ tags: Array; /** * Last update timestamp */ updated: string; /** * Workflow version */ version: string; };