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 SubscribersControllerUpdateSubscriberPreferencesRequest = { /** * The identifier of the subscriber */ subscriberId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; patchSubscriberPreferencesDto: components.PatchSubscriberPreferencesDto; }; export type SubscribersControllerUpdateSubscriberPreferencesResponse = { headers: { [k: string]: Array; }; result: components.GetSubscriberPreferencesDto; }; /** @internal */ export type SubscribersControllerUpdateSubscriberPreferencesRequest$Outbound = { subscriberId: string; "idempotency-key"?: string | undefined; PatchSubscriberPreferencesDto: components.PatchSubscriberPreferencesDto$Outbound; }; /** @internal */ export declare const SubscribersControllerUpdateSubscriberPreferencesRequest$outboundSchema: z.ZodType; export declare function subscribersControllerUpdateSubscriberPreferencesRequestToJSON(subscribersControllerUpdateSubscriberPreferencesRequest: SubscribersControllerUpdateSubscriberPreferencesRequest): string; /** @internal */ export declare const SubscribersControllerUpdateSubscriberPreferencesResponse$inboundSchema: z.ZodType; export declare function subscribersControllerUpdateSubscriberPreferencesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollerupdatesubscriberpreferences.d.ts.map