import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Response to download an investment document. */ export type DownloadAlternativeInvestmentDocumentResponse = { /** * The URI to download the investment document file. */ downloadUri?: string | undefined; }; /** @internal */ export declare const DownloadAlternativeInvestmentDocumentResponse$inboundSchema: z.ZodType; /** @internal */ export type DownloadAlternativeInvestmentDocumentResponse$Outbound = { download_uri?: string | undefined; }; /** @internal */ export declare const DownloadAlternativeInvestmentDocumentResponse$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 DownloadAlternativeInvestmentDocumentResponse$ { /** @deprecated use `DownloadAlternativeInvestmentDocumentResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DownloadAlternativeInvestmentDocumentResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DownloadAlternativeInvestmentDocumentResponse$Outbound` instead. */ type Outbound = DownloadAlternativeInvestmentDocumentResponse$Outbound; } export declare function downloadAlternativeInvestmentDocumentResponseToJSON(downloadAlternativeInvestmentDocumentResponse: DownloadAlternativeInvestmentDocumentResponse): string; export declare function downloadAlternativeInvestmentDocumentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=downloadalternativeinvestmentdocumentresponse.d.ts.map