import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AlternativeInvestmentDocument, AlternativeInvestmentDocument$Outbound } from "./alternativeinvestmentdocument.js"; /** * Response to list alternative investment documents. */ export type ListAlternativeInvestmentDocumentsResponse = { /** * The array of investment documents for the asset. */ alternativeInvestmentDocuments?: Array | undefined; /** * A token that can be sent as the `page_token` query param value to retrieve the next page, when pagination is needed. If this field is omitted, there are no subsequent pages. */ nextPageToken?: string | undefined; }; /** @internal */ export declare const ListAlternativeInvestmentDocumentsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListAlternativeInvestmentDocumentsResponse$Outbound = { alternative_investment_documents?: Array | undefined; next_page_token?: string | undefined; }; /** @internal */ export declare const ListAlternativeInvestmentDocumentsResponse$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 ListAlternativeInvestmentDocumentsResponse$ { /** @deprecated use `ListAlternativeInvestmentDocumentsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListAlternativeInvestmentDocumentsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListAlternativeInvestmentDocumentsResponse$Outbound` instead. */ type Outbound = ListAlternativeInvestmentDocumentsResponse$Outbound; } export declare function listAlternativeInvestmentDocumentsResponseToJSON(listAlternativeInvestmentDocumentsResponse: ListAlternativeInvestmentDocumentsResponse): string; export declare function listAlternativeInvestmentDocumentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listalternativeinvestmentdocumentsresponse.d.ts.map