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 AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequest = { /** * The asset id. */ assetId: string; /** * The alternativeInvestmentDocument id. */ alternativeInvestmentDocumentId: string; }; export type AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponse = { httpMeta: components.HTTPMetadata; /** * OK */ alternativeInvestmentDocument?: components.AlternativeInvestmentDocument | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequest$inboundSchema: z.ZodType; /** @internal */ export type AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequest$Outbound = { asset_id: string; alternativeInvestmentDocument_id: string; }; /** @internal */ export declare const AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequest$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 AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequest$ { /** @deprecated use `AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequest$Outbound` instead. */ type Outbound = AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequest$Outbound; } export declare function alternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequestToJSON(alternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequest: AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequest): string; export declare function alternativeInvestmentDocumentsGetAlternativeInvestmentDocumentRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponse$inboundSchema: z.ZodType; /** @internal */ export type AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; AlternativeInvestmentDocument?: components.AlternativeInvestmentDocument$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponse$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 AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponse$ { /** @deprecated use `AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponse$Outbound` instead. */ type Outbound = AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponse$Outbound; } export declare function alternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponseToJSON(alternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponse: AlternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponse): string; export declare function alternativeInvestmentDocumentsGetAlternativeInvestmentDocumentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=alternativeinvestmentdocumentsgetalternativeinvestmentdocument.d.ts.map