import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IdentityLookupServiceVerifyIdentityLookupRequest = { /** * The correspondent id. */ correspondentId: string; /** * The identityLookup id. */ identityLookupId: string; verifyIdentityLookupRequestCreate: components.VerifyIdentityLookupRequestCreate; }; export type IdentityLookupServiceVerifyIdentityLookupResponse = { httpMeta: components.HTTPMetadata; /** * OK */ identityLookup?: components.IdentityLookup | undefined; /** * INVALID_ARGUMENT: The identity lookup name is malformed or verification code is invalid */ status?: components.Status | undefined; }; /** @internal */ export declare const IdentityLookupServiceVerifyIdentityLookupRequest$inboundSchema: z.ZodType; /** @internal */ export type IdentityLookupServiceVerifyIdentityLookupRequest$Outbound = { correspondent_id: string; identityLookup_id: string; VerifyIdentityLookupRequestCreate: components.VerifyIdentityLookupRequestCreate$Outbound; }; /** @internal */ export declare const IdentityLookupServiceVerifyIdentityLookupRequest$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 IdentityLookupServiceVerifyIdentityLookupRequest$ { /** @deprecated use `IdentityLookupServiceVerifyIdentityLookupRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IdentityLookupServiceVerifyIdentityLookupRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IdentityLookupServiceVerifyIdentityLookupRequest$Outbound` instead. */ type Outbound = IdentityLookupServiceVerifyIdentityLookupRequest$Outbound; } export declare function identityLookupServiceVerifyIdentityLookupRequestToJSON(identityLookupServiceVerifyIdentityLookupRequest: IdentityLookupServiceVerifyIdentityLookupRequest): string; export declare function identityLookupServiceVerifyIdentityLookupRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IdentityLookupServiceVerifyIdentityLookupResponse$inboundSchema: z.ZodType; /** @internal */ export type IdentityLookupServiceVerifyIdentityLookupResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; IdentityLookup?: components.IdentityLookup$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const IdentityLookupServiceVerifyIdentityLookupResponse$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 IdentityLookupServiceVerifyIdentityLookupResponse$ { /** @deprecated use `IdentityLookupServiceVerifyIdentityLookupResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IdentityLookupServiceVerifyIdentityLookupResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IdentityLookupServiceVerifyIdentityLookupResponse$Outbound` instead. */ type Outbound = IdentityLookupServiceVerifyIdentityLookupResponse$Outbound; } export declare function identityLookupServiceVerifyIdentityLookupResponseToJSON(identityLookupServiceVerifyIdentityLookupResponse: IdentityLookupServiceVerifyIdentityLookupResponse): string; export declare function identityLookupServiceVerifyIdentityLookupResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=identitylookupserviceverifyidentitylookup.d.ts.map