import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CreatedSubscriberDto } from "./createdsubscriberdto.js"; import { FailedOperationDto } from "./failedoperationdto.js"; import { UpdatedSubscriberDto } from "./updatedsubscriberdto.js"; export type BulkCreateSubscriberResponseDto = { /** * An array of subscribers that were successfully updated. */ updated: Array; /** * An array of subscribers that were successfully created. */ created: Array; /** * An array of failed operations with error messages and optional subscriber IDs. */ failed: Array; }; /** @internal */ export declare const BulkCreateSubscriberResponseDto$inboundSchema: z.ZodType; export declare function bulkCreateSubscriberResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=bulkcreatesubscriberresponsedto.d.ts.map