import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IdentityItem, IdentityItem$Outbound } from "./identityitem.js"; /** * Request body for the V3 Batch Enroll Identities API. */ export type V3BatchEnrollIdentitiesRequest = { /** * A client-generated unique ID for a specific session. This can be used to identify specific requests. The format of this ID is defined by the client - Prove recommends using a GUID, but any format can be accepted. Do not include Personally Identifiable Information (PII) in this field. */ clientRequestId?: string | undefined; items?: Array | undefined; }; /** @internal */ export declare const V3BatchEnrollIdentitiesRequest$inboundSchema: z.ZodType; /** @internal */ export type V3BatchEnrollIdentitiesRequest$Outbound = { clientRequestId?: string | undefined; items?: Array | undefined; }; /** @internal */ export declare const V3BatchEnrollIdentitiesRequest$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 V3BatchEnrollIdentitiesRequest$ { /** @deprecated use `V3BatchEnrollIdentitiesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3BatchEnrollIdentitiesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3BatchEnrollIdentitiesRequest$Outbound` instead. */ type Outbound = V3BatchEnrollIdentitiesRequest$Outbound; } export declare function v3BatchEnrollIdentitiesRequestToJSON(v3BatchEnrollIdentitiesRequest: V3BatchEnrollIdentitiesRequest): string; export declare function v3BatchEnrollIdentitiesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3batchenrollidentitiesrequest.d.ts.map