import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Response body for the V3 Enroll Identity method. */ export type V3EnrollIdentityResponse = { /** * 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; /** * If true, the request was successful and the identity was created. */ success: boolean; }; /** @internal */ export declare const V3EnrollIdentityResponse$inboundSchema: z.ZodType; /** @internal */ export type V3EnrollIdentityResponse$Outbound = { proveId: string; success: boolean; }; /** @internal */ export declare const V3EnrollIdentityResponse$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 V3EnrollIdentityResponse$ { /** @deprecated use `V3EnrollIdentityResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3EnrollIdentityResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3EnrollIdentityResponse$Outbound` instead. */ type Outbound = V3EnrollIdentityResponse$Outbound; } export declare function v3EnrollIdentityResponseToJSON(v3EnrollIdentityResponse: V3EnrollIdentityResponse): string; export declare function v3EnrollIdentityResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3enrollidentityresponse.d.ts.map