import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WorkflowControllerGetWorkflowRequest = { workflowId: string; environmentId?: string | undefined; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type WorkflowControllerGetWorkflowResponse = { headers: { [k: string]: Array; }; result: components.WorkflowResponseDto; }; /** @internal */ export type WorkflowControllerGetWorkflowRequest$Outbound = { workflowId: string; environmentId?: string | undefined; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const WorkflowControllerGetWorkflowRequest$outboundSchema: z.ZodType; export declare function workflowControllerGetWorkflowRequestToJSON(workflowControllerGetWorkflowRequest: WorkflowControllerGetWorkflowRequest): string; /** @internal */ export declare const WorkflowControllerGetWorkflowResponse$inboundSchema: z.ZodType; export declare function workflowControllerGetWorkflowResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflowcontrollergetworkflow.d.ts.map