import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Represents a single identity item in the response. */ export type PostBatchResultItem = { /** * An error message that is returned if the identity cannot be successfully enrolled. */ error?: string | undefined; /** * A unique Prove-generated identifier for the enrolled identity. This is a UUID that can be used to reference the identity in future requests. */ proveId?: string | undefined; }; /** @internal */ export declare const PostBatchResultItem$inboundSchema: z.ZodType; /** @internal */ export type PostBatchResultItem$Outbound = { error?: string | undefined; proveId?: string | undefined; }; /** @internal */ export declare const PostBatchResultItem$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 PostBatchResultItem$ { /** @deprecated use `PostBatchResultItem$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostBatchResultItem$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostBatchResultItem$Outbound` instead. */ type Outbound = PostBatchResultItem$Outbound; } export declare function postBatchResultItemToJSON(postBatchResultItem: PostBatchResultItem): string; export declare function postBatchResultItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postbatchresultitem.d.ts.map