import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AlternativeInvestment, AlternativeInvestment$Outbound } from "./alternativeinvestment.js"; /** * Response to list alternative investments. */ export type ListAlternativeInvestmentsResponse = { /** * The array of alternative investment assets. */ alternativeInvestments?: 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 ListAlternativeInvestmentsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListAlternativeInvestmentsResponse$Outbound = { alternative_investments?: Array | undefined; next_page_token?: string | undefined; }; /** @internal */ export declare const ListAlternativeInvestmentsResponse$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 ListAlternativeInvestmentsResponse$ { /** @deprecated use `ListAlternativeInvestmentsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListAlternativeInvestmentsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListAlternativeInvestmentsResponse$Outbound` instead. */ type Outbound = ListAlternativeInvestmentsResponse$Outbound; } export declare function listAlternativeInvestmentsResponseToJSON(listAlternativeInvestmentsResponse: ListAlternativeInvestmentsResponse): string; export declare function listAlternativeInvestmentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listalternativeinvestmentsresponse.d.ts.map