import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type WorkflowExecutionDTO = { closeTime?: Date | undefined; createdBy?: string | undefined; durationMs?: number | undefined; /** * e.g. plan, invoice, subscription */ entity?: string | undefined; /** * e.g. plan ID, invoice ID */ entityId?: string | undefined; runId?: string | undefined; startTime?: Date | undefined; status?: string | undefined; taskQueue?: string | undefined; totalDuration?: string | undefined; workflowId?: string | undefined; workflowType?: string | undefined; }; /** @internal */ export declare const WorkflowExecutionDTO$inboundSchema: z.ZodMiniType; export declare function workflowExecutionDTOFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflow-execution-dto.d.ts.map