import * as z from "zod/v3"; export type WorkflowPreferenceRequestDto = { /** * Whether the preference is enabled. Used when condition is not provided. */ enabled?: boolean | undefined; /** * Optional condition using JSON Logic rules */ condition?: { [k: string]: any; } | undefined; /** * The workflow identifier */ workflowId: string; }; /** @internal */ export type WorkflowPreferenceRequestDto$Outbound = { enabled?: boolean | undefined; condition?: { [k: string]: any; } | undefined; workflowId: string; }; /** @internal */ export declare const WorkflowPreferenceRequestDto$outboundSchema: z.ZodType; export declare function workflowPreferenceRequestDtoToJSON(workflowPreferenceRequestDto: WorkflowPreferenceRequestDto): string; //# sourceMappingURL=workflowpreferencerequestdto.d.ts.map