import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SubscriberPreferencesWorkflowInfoDto = { /** * Workflow slug */ slug: string; /** * Unique identifier of the workflow */ identifier: string; /** * Display name of the workflow */ name: string; /** * last updated date */ updatedAt?: string | undefined; }; /** @internal */ export declare const SubscriberPreferencesWorkflowInfoDto$inboundSchema: z.ZodType; export declare function subscriberPreferencesWorkflowInfoDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberpreferencesworkflowinfodto.d.ts.map