import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request message for VerifyIdentityLookup method */ export type VerifyIdentityLookupRequestCreate = { /** * The name of the identity lookup to verify. */ name: string; /** * The verification code to complete the identity lookup. */ verificationCode: string; }; /** @internal */ export declare const VerifyIdentityLookupRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type VerifyIdentityLookupRequestCreate$Outbound = { name: string; verification_code: string; }; /** @internal */ export declare const VerifyIdentityLookupRequestCreate$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 VerifyIdentityLookupRequestCreate$ { /** @deprecated use `VerifyIdentityLookupRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VerifyIdentityLookupRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VerifyIdentityLookupRequestCreate$Outbound` instead. */ type Outbound = VerifyIdentityLookupRequestCreate$Outbound; } export declare function verifyIdentityLookupRequestCreateToJSON(verifyIdentityLookupRequestCreate: VerifyIdentityLookupRequestCreate): string; export declare function verifyIdentityLookupRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=verifyidentitylookuprequestcreate.d.ts.map