import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Custom response - returns identity verification documentIds added to investigation request */ export type LinkDocumentsResponse = { /** * Document IDs from identity verification result object */ identityVerificationDocumentIds?: Array | undefined; /** * Required: The ID of the investigation The format is "investigations/{investigation}" */ name?: string | undefined; }; /** @internal */ export declare const LinkDocumentsResponse$inboundSchema: z.ZodType; /** @internal */ export type LinkDocumentsResponse$Outbound = { identity_verification_document_ids?: Array | undefined; name?: string | undefined; }; /** @internal */ export declare const LinkDocumentsResponse$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 LinkDocumentsResponse$ { /** @deprecated use `LinkDocumentsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkDocumentsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkDocumentsResponse$Outbound` instead. */ type Outbound = LinkDocumentsResponse$Outbound; } export declare function linkDocumentsResponseToJSON(linkDocumentsResponse: LinkDocumentsResponse): string; export declare function linkDocumentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkdocumentsresponse.d.ts.map