import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PostBatchResultItem, PostBatchResultItem$Outbound } from "./postbatchresultitem.js"; /** * Response body for the V3 Batch Enroll Identities API. */ export type V3BatchEnrollIdentitiesResponse = { results?: Array | undefined; }; /** @internal */ export declare const V3BatchEnrollIdentitiesResponse$inboundSchema: z.ZodType; /** @internal */ export type V3BatchEnrollIdentitiesResponse$Outbound = { results?: Array | undefined; }; /** @internal */ export declare const V3BatchEnrollIdentitiesResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace V3BatchEnrollIdentitiesResponse$ { /** @deprecated use `V3BatchEnrollIdentitiesResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3BatchEnrollIdentitiesResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3BatchEnrollIdentitiesResponse$Outbound` instead. */ type Outbound = V3BatchEnrollIdentitiesResponse$Outbound; } export declare function v3BatchEnrollIdentitiesResponseToJSON(v3BatchEnrollIdentitiesResponse: V3BatchEnrollIdentitiesResponse): string; export declare function v3BatchEnrollIdentitiesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3batchenrollidentitiesresponse.d.ts.map