import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ChannelPreferenceDto } from "./channelpreferencedto.js"; import { WorkflowPreferenceDto } from "./workflowpreferencedto.js"; /** * A preference for the workflow. The values specified here will be used if no preference is specified for a channel. */ export type All = WorkflowPreferenceDto; export type WorkflowPreferencesDto = { /** * A preference for the workflow. The values specified here will be used if no preference is specified for a channel. */ all: WorkflowPreferenceDto; /** * Preferences for different communication channels */ channels: { [k: string]: ChannelPreferenceDto; }; }; /** @internal */ export declare const All$inboundSchema: z.ZodType; export declare function allFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WorkflowPreferencesDto$inboundSchema: z.ZodType; export declare function workflowPreferencesDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflowpreferencesdto.d.ts.map