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 SubscribersControllerBulkUpdateSubscriberPreferencesRequest = { /** * The identifier of the subscriber */ subscriberId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; bulkUpdateSubscriberPreferencesDto: components.BulkUpdateSubscriberPreferencesDto; }; export type SubscribersControllerBulkUpdateSubscriberPreferencesResponse = { headers: { [k: string]: Array; }; result: Array; }; /** @internal */ export type SubscribersControllerBulkUpdateSubscriberPreferencesRequest$Outbound = { subscriberId: string; "idempotency-key"?: string | undefined; BulkUpdateSubscriberPreferencesDto: components.BulkUpdateSubscriberPreferencesDto$Outbound; }; /** @internal */ export declare const SubscribersControllerBulkUpdateSubscriberPreferencesRequest$outboundSchema: z.ZodType; export declare function subscribersControllerBulkUpdateSubscriberPreferencesRequestToJSON(subscribersControllerBulkUpdateSubscriberPreferencesRequest: SubscribersControllerBulkUpdateSubscriberPreferencesRequest): string; /** @internal */ export declare const SubscribersControllerBulkUpdateSubscriberPreferencesResponse$inboundSchema: z.ZodType; export declare function subscribersControllerBulkUpdateSubscriberPreferencesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollerbulkupdatesubscriberpreferences.d.ts.map