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 IdentityLookupServiceCreateIdentityLookupRequest = { /** * The correspondent id. */ correspondentId: string; identityLookupCreate: components.IdentityLookupCreate; }; export type IdentityLookupServiceCreateIdentityLookupResponse = { httpMeta: components.HTTPMetadata; /** * OK */ identityLookup?: components.IdentityLookup | undefined; /** * INVALID_ARGUMENT: The request contains invalid fields or formatting */ status?: components.Status | undefined; }; /** @internal */ export declare const IdentityLookupServiceCreateIdentityLookupRequest$inboundSchema: z.ZodType; /** @internal */ export type IdentityLookupServiceCreateIdentityLookupRequest$Outbound = { correspondent_id: string; IdentityLookupCreate: components.IdentityLookupCreate$Outbound; }; /** @internal */ export declare const IdentityLookupServiceCreateIdentityLookupRequest$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 IdentityLookupServiceCreateIdentityLookupRequest$ { /** @deprecated use `IdentityLookupServiceCreateIdentityLookupRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IdentityLookupServiceCreateIdentityLookupRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IdentityLookupServiceCreateIdentityLookupRequest$Outbound` instead. */ type Outbound = IdentityLookupServiceCreateIdentityLookupRequest$Outbound; } export declare function identityLookupServiceCreateIdentityLookupRequestToJSON(identityLookupServiceCreateIdentityLookupRequest: IdentityLookupServiceCreateIdentityLookupRequest): string; export declare function identityLookupServiceCreateIdentityLookupRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IdentityLookupServiceCreateIdentityLookupResponse$inboundSchema: z.ZodType; /** @internal */ export type IdentityLookupServiceCreateIdentityLookupResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; IdentityLookup?: components.IdentityLookup$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const IdentityLookupServiceCreateIdentityLookupResponse$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 IdentityLookupServiceCreateIdentityLookupResponse$ { /** @deprecated use `IdentityLookupServiceCreateIdentityLookupResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IdentityLookupServiceCreateIdentityLookupResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IdentityLookupServiceCreateIdentityLookupResponse$Outbound` instead. */ type Outbound = IdentityLookupServiceCreateIdentityLookupResponse$Outbound; } export declare function identityLookupServiceCreateIdentityLookupResponseToJSON(identityLookupServiceCreateIdentityLookupResponse: IdentityLookupServiceCreateIdentityLookupResponse): string; export declare function identityLookupServiceCreateIdentityLookupResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=identitylookupservicecreateidentitylookup.d.ts.map